@media (min-width: 64rem) {
  .faqs-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.faqs-section h3 {
  font-weight: 600;
  flex: 1;
  max-width: 18.75rem;
}
@media (min-width: 64rem) {
  .faqs-section .faqs {
    max-width: 55%;
    width: 100%;
    flex-shrink: 0;
  }
}
.faqs-section .faqs .faq {
  border-bottom: 0.0625rem solid #e7e7e7;
  padding: 1.5rem 0;
}
.faqs-section .faqs .faq.open .question {
  margin-bottom: 1.5rem;
}
.faqs-section .faqs .faq.open .question .toggle {
  background: #090909;
}
.faqs-section .faqs .faq.open .question .toggle::before {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
  background: #ffffff;
}
.faqs-section .faqs .faq.open .question .toggle::after {
  background: #ffffff;
}
.faqs-section .faqs .faq.open .answer {
  opacity: 1;
  transform: translateY(0);
  max-height: 25rem;
}
.faqs-section .faqs .faq .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  border: none;
  background: transparent;
  color: inherit;
  appearance: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
  font-family: "Urbanist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  transition: background 0.2s ease, color 0.2s ease, margin 0.25s ease;
}
@supports selector(:focus-visible) {
  .faqs-section .faqs .faq .question:focus-visible {
    outline: 0.125rem solid #ff5500;
    outline-offset: 0.125rem;
  }
  .faqs-section .faqs .faq .question:focus:not(:focus-visible) {
    outline: none;
    outline-offset: 0;
  }
}
@supports not selector(:focus-visible) {
  .faqs-section .faqs .faq .question:focus {
    outline: 0.125rem solid #ff5500;
    outline-offset: 0.125rem;
  }
}
.faqs-section .faqs .faq .question:hover .toggle, .faqs-section .faqs .faq .question:focus-visible .toggle {
  background: #0c0c0c;
}
.faqs-section .faqs .faq .question:hover .toggle::before, .faqs-section .faqs .faq .question:hover .toggle::after, .faqs-section .faqs .faq .question:focus-visible .toggle::before, .faqs-section .faqs .faq .question:focus-visible .toggle::after {
  background: #ffffff;
}
.faqs-section .faqs .faq .question .toggle {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  background: #e7e7e7;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.faqs-section .faqs .faq .question .toggle::before, .faqs-section .faqs .faq .question .toggle::after {
  content: "";
  position: absolute;
  background: #090909;
  transition: transform 0.2s ease, background 0.2s ease;
}
.faqs-section .faqs .faq .question .toggle::after {
  width: 0.625rem;
  height: 0.125rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faqs-section .faqs .faq .question .toggle::before {
  width: 0.625rem;
  height: 0.125rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}
.faqs-section .faqs .faq .answer {
  color: #3d3d3d;
  font-size: 1rem;
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-0.25rem);
  transition: max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, transform 0.45s ease;
}

.review {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.review h3 {
  font-weight: 500;
  text-align: center;
}
@media (min-width: 64rem) {
  .review h3 {
    padding: 0 2rem;
  }
}
.review .title {
  font-size: 1.125rem;
  font-weight: 500;
}
.review .position {
  color: #5c5c5c;
}

.block-shape {
  background: #f5f5f5;
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  border: 0.0625rem solid #e7e7e7;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 1rem;
  cursor: pointer;
}
.block-shape:hover .btn {
  box-shadow: none;
}
.block-shape .shape-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}
.block-shape .shape-wrapper .shape-grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.75rem;
  align-items: center;
  justify-items: center;
}
.block-shape .shape-wrapper .shape {
  background: #ff5500;
  border: 0.25rem solid #0b0b0b;
  box-shadow: 0.4375rem 0.625rem 0 0 #0b0b0b;
}
.block-shape .shape-wrapper .shape.square {
  width: clamp(5.5rem, 12vw, 8rem);
  height: clamp(5.5rem, 12vw, 8rem);
}
.block-shape .shape-wrapper .shape.rectangle {
  width: clamp(8rem, 16vw, 11rem);
  height: clamp(5.5rem, 11vw, 7.5rem);
  border-radius: 1.875rem;
}
.block-shape .shape-wrapper .shape.oval {
  width: clamp(9rem, 18vw, 12.5rem);
  height: clamp(5.25rem, 10vw, 7rem);
  border-radius: 4.375rem;
}
.block-shape .shape-wrapper .shape.circle {
  width: clamp(6rem, 12vw, 8.5rem);
  height: clamp(6rem, 12vw, 8.5rem);
  border-radius: 50%;
}
.block-shape .shape-wrapper .shape.mini {
  border-width: 0.1875rem;
  box-shadow: 0.25rem 0.375rem 0 0 #0b0b0b;
}
.block-shape .shape-wrapper .shape.mini.square {
  width: 3rem;
  height: 3rem;
}
.block-shape .shape-wrapper .shape.mini.circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
.block-shape .shape-wrapper .shape.mini.oval {
  width: 4rem;
  height: 3rem;
  border-radius: 4.375rem;
}
.block-shape .shape-wrapper .shape.mini.rectangle {
  width: 4rem;
  height: 3rem;
  border-radius: 1.125rem;
}
.block-shape .low-wrapper {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem;
  border-top: 0.0625rem solid #b4b4b4;
  align-content: start;
}
.block-shape .low-wrapper .text {
  text-align: center;
}
.block-shape .low-wrapper .text .title {
  font-weight: 700;
  font-size: 1.25rem;
}
.block-shape .low-wrapper .price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (min-width: 48rem) {
  .block-shape .low-wrapper .price {
    justify-content: space-between;
  }
}

.detail-description {
  background: #f5f5f5;
}
.detail-description .wrapper-detail {
  display: grid;
  gap: 2rem;
}
@media (min-width: 80rem) {
  .detail-description .section {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
  }
}
.detail-description .section-header {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.detail-description .section-header .toggle {
  border: none;
  background: none;
  padding: 0;
  line-height: 0;
  cursor: pointer;
}
@supports selector(:focus-visible) {
  .detail-description .section-header .toggle:focus-visible {
    outline: 0.125rem solid #ff5500;
    outline-offset: 0.125rem;
  }
  .detail-description .section-header .toggle:focus:not(:focus-visible) {
    outline: none;
    outline-offset: 0;
  }
}
@supports not selector(:focus-visible) {
  .detail-description .section-header .toggle:focus {
    outline: 0.125rem solid #ff5500;
    outline-offset: 0.125rem;
  }
}
@media (min-width: 80rem) {
  .detail-description .section-header .toggle {
    display: none;
  }
}
.detail-description .section-header .toggle .icon {
  transition: transform 0.2s ease;
}
.detail-description .section-header .toggle .icon.is-collapsed {
  transform: rotate(180deg);
}
@media (min-width: 80rem) {
  .detail-description .section-body {
    max-width: 31.25rem;
  }
}
.detail-description .section-body .description {
  color: #5c5c5c;
}
.detail-description .section-body .parameters-list {
  display: grid;
  gap: 2rem;
}
.detail-description .section-body .parameters-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 0.5rem;
  border-bottom: 0.0625rem solid #e7e7e7;
}
.detail-description .section-body .parameters-info .info {
  font-weight: 600;
}

.feature-highlights .container-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 48rem) {
  .feature-highlights .container-wrapper {
    flex-direction: row;
    justify-content: space-evenly;
  }
}
.feature-highlights .wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 23.75rem;
}
@media (min-width: 48rem) {
  .feature-highlights .wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.feature-highlights .icon {
  padding: 0.75rem;
  color: #ff5500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.feature-highlights .icon svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}
.feature-highlights .content h6 {
  font-weight: 700;
}
.feature-highlights .content .desc {
  color: #5c5c5c;
}
.feature-highlights .content .link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
@supports selector(:focus-visible) {
  .feature-highlights .content .link:focus-visible {
    outline: 0.125rem solid #ff5500;
    outline-offset: 0.125rem;
  }
  .feature-highlights .content .link:focus:not(:focus-visible) {
    outline: none;
    outline-offset: 0;
  }
}
@supports not selector(:focus-visible) {
  .feature-highlights .content .link:focus {
    outline: 0.125rem solid #ff5500;
    outline-offset: 0.125rem;
  }
}
.feature-highlights .content .link img {
  transition: transform 0.2s ease;
}
.feature-highlights .content .link:hover {
  text-decoration: underline;
}
.feature-highlights .content .link:hover img {
  transform: translateX(0.125rem);
}
@media (min-width: 48rem) {
  .feature-highlights .content {
    text-align: center;
  }
}

.products-also-like .wrapper-text {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.products-also-like .wrapper-text h4 {
  font-weight: 600;
}
.products-also-like .wrapper-text .link {
  text-decoration: underline;
}
@supports selector(:focus-visible) {
  .products-also-like .wrapper-text .link:focus-visible {
    outline: 0.125rem solid #ff5500;
    outline-offset: 0.125rem;
  }
  .products-also-like .wrapper-text .link:focus:not(:focus-visible) {
    outline: none;
    outline-offset: 0;
  }
}
@supports not selector(:focus-visible) {
  .products-also-like .wrapper-text .link:focus {
    outline: 0.125rem solid #ff5500;
    outline-offset: 0.125rem;
  }
}
.products-also-like .wrapper-text .link:hover {
  text-decoration: none;
}
.products-also-like .wrapper-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 48rem) {
  .products-also-like .wrapper-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.detail-wrapper {
  display: grid;
  gap: 3rem;
}
@media (min-width: 64rem) {
  .detail-wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.detail-wrapper .wrapper-gallery {
  margin: 0;
  padding: 0 1.5rem 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.detail-wrapper .wrapper-gallery .gallery {
  display: inline-flex;
  gap: 0.75rem;
  min-width: max-content;
}
.detail-wrapper .wrapper-gallery .gallery .gallery-item {
  flex: 0 0 13.75rem;
  background: #b4b4b4;
  border-radius: 1rem;
  scroll-snap-align: start;
}
.detail-wrapper .wrapper-gallery .gallery .gallery-item--large {
  aspect-ratio: 16/11;
}
.detail-wrapper .wrapper-gallery .gallery .gallery-item--square {
  aspect-ratio: 1/1;
}
@media (min-width: 48rem) {
  .detail-wrapper .wrapper-gallery {
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 64rem) {
  .detail-wrapper .wrapper-gallery {
    overflow: visible;
    scroll-snap-type: none;
  }
  .detail-wrapper .wrapper-gallery .gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    min-width: auto;
  }
  .detail-wrapper .wrapper-gallery .gallery .gallery-item {
    flex: initial;
  }
  .detail-wrapper .wrapper-gallery .gallery .gallery-item--large {
    grid-column: 1/-1;
  }
}
.detail-wrapper section h5 {
  font-weight: 700;
}
.detail-wrapper .label {
  background: #070707;
  width: fit-content;
  padding: 0.375rem 0.75rem;
  border-radius: 1.25rem;
}
.detail-wrapper .label span {
  color: #ffffff;
}
.detail-wrapper section .product-description {
  color: #3d3d3d;
}
.detail-wrapper section .selection-wrapper {
  display: grid;
  gap: 2rem;
}
.detail-wrapper section .selection-wrapper .selection .selection-title {
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.detail-wrapper section .selection-wrapper .selection .selection-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (min-width: 90rem) {
  .detail-wrapper section .selection-wrapper .selection .selection-btn {
    flex-wrap: nowrap;
  }
}
.detail-wrapper section .selection-wrapper .lower-wrapper {
  display: grid;
  gap: 1rem;
}
.detail-wrapper section .selection-wrapper .lower-wrapper .wrapper-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.detail-wrapper section .selection-wrapper .lower-wrapper .wrapper-price .text-price {
  font-weight: 600;
}
.detail-wrapper section .selection-wrapper .lower-wrapper .wrapper-price .price {
  font-weight: 700;
  font-size: 2.375rem;
}
.detail-wrapper section .selection-wrapper .lower-wrapper .wrapper-btn {
  width: 100%;
}
.detail-wrapper section .selection-wrapper .lower-wrapper .wrapper-btn span {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.detail-wrapper section .selection-wrapper .lower-wrapper .description {
  text-align: center;
  font-weight: 600;
  color: #8f8f8f;
}
.quantity {
  border: 0.0625rem solid #e7e7e7;
  border-radius: 1.5rem;
  overflow: hidden;
}
.quantity .price-item {
  font-weight: 600;
}
.quantity .unit-item {
  color: #5c5c5c;
  font-size: 0.875rem;
}
.quantity .sale-item {
  font-size: 0.75rem;
  background: #ecfdf3;
  border-radius: 1.5rem;
  display: inline-flex;
  padding: 0.25rem 0.5rem;
  color: #027a48;
  font-weight: 500;
}
.quantity .wrapper-quantity {
  border-bottom: 0.0625rem solid #e7e7e7;
  padding: 0.5rem 1rem;
  display: grid;
  grid-template-columns: minmax(4.375rem, 1fr) minmax(3.125rem, 1fr) minmax(5rem, 1fr) auto;
  align-items: center;
  cursor: pointer;
}
@media (min-width: 80rem) {
  .quantity .wrapper-quantity {
    padding: 0.5rem 1.5rem;
  }
}
.quantity .wrapper-quantity:hover {
  background: #f5f5f5;
}
.quantity .wrapper-quantity.is-active {
  background: #cff7d3;
}
.quantity .wrapper-quantity .quantity-item {
  font-weight: 600;
}
.quantity .wrapper-quantity .quantity-item {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-left: 1.5rem;
}
.quantity .wrapper-quantity .quantity-item img {
  position: absolute;
  left: 0;
  width: 1rem;
  height: 1rem;
  opacity: 0;
  visibility: hidden;
}
.quantity .wrapper-quantity.is-active .quantity-item img {
  opacity: 1;
  visibility: visible;
}
.quantity .wrapper-custom-quantity .title {
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: none;
  background: none;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.quantity .wrapper-custom-quantity .title .icon {
  transition: transform 0.2s ease;
}
.quantity .wrapper-custom-quantity .title .icon.is-collapsed {
  transform: rotate(180deg);
}
@media (min-width: 80rem) {
  .quantity .wrapper-custom-quantity .title {
    padding: 0.5rem 1.5rem;
  }
}
.quantity .wrapper-custom-quantity .custom-quantity {
  padding: 0.5rem 1rem;
  border-top: 0.0625rem solid #e7e7e7;
  display: grid;
  grid-template-columns: minmax(4.375rem, 1fr) minmax(3.125rem, 1fr) minmax(5rem, 1fr) auto;
  align-items: center;
  cursor: pointer;
}
@media (min-width: 80rem) {
  .quantity .wrapper-custom-quantity .custom-quantity {
    padding: 0.5rem 1.5rem;
  }
}
.quantity .wrapper-custom-quantity .custom-quantity.is-active {
  background: #cff7d3;
}
.quantity .wrapper-custom-quantity .custom-quantity[hidden] {
  display: none;
}
.quantity .wrapper-custom-quantity .custom-quantity .quantity-input {
  width: 80%;
  border: 0.0625rem solid #e7e7e7;
  border-radius: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: #fff;
  font: inherit;
  font-weight: 600;
  color: inherit;
  cursor: text;
}
.quantity .wrapper-custom-quantity .custom-quantity .quantity-input::placeholder {
  color: #5c5c5c;
}
.notification {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: #5c5c5c;
}
.notification a {
  color: inherit;
  text-decoration: underline;
}
.notification a:hover {
  text-decoration: none;
}
.upload-guidelines .wrapper {
  padding: 1rem;
  background: #f5f5f5;
  border-radius: 1.5rem;
  border: 0.0625rem solid #b4b4b4;
  display: grid;
}
.upload-guidelines .guidelines-wrapper {
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  border: none;
  background: none;
  padding: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
@supports selector(:focus-visible) {
  .upload-guidelines .guidelines-wrapper:focus-visible {
    outline: 0.125rem solid #ff5500;
    outline-offset: 0.125rem;
  }
  .upload-guidelines .guidelines-wrapper:focus:not(:focus-visible) {
    outline: none;
    outline-offset: 0;
  }
}
@supports not selector(:focus-visible) {
  .upload-guidelines .guidelines-wrapper:focus {
    outline: 0.125rem solid #ff5500;
    outline-offset: 0.125rem;
  }
}
.upload-guidelines .guidelines-wrapper .guidelines {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
}
.upload-guidelines .guidelines-wrapper .icon {
  transition: transform 0.2s ease;
}
.upload-guidelines .guidelines-wrapper .icon.is-collapsed {
  transform: rotate(180deg);
}
.upload-guidelines .content {
  display: grid;
  gap: 0.75rem;
  padding-top: 1rem;
  font-weight: 500;
}
.upload-guidelines .content[hidden] {
  display: none;
}
.upload-guidelines .content-info {
  display: flex;
  justify-content: space-between;
}
.upload-guidelines .content-info span {
  max-width: 8.125rem;
}
.upload-guidelines .content-info span:last-child {
  text-align: right;
}
.upload-guidelines .delivery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 80rem) {
  .upload-guidelines .delivery {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.upload-guidelines .delivery-item {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  text-decoration: underline;
  color: #5c5c5c;
}
.upload-guidelines .delivery-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.upload-guidelines .delivery-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}
.upload-guidelines .footnote {
  font-size: 0.75rem;
  color: #8f8f8f;
}
.upload-guidelines .footnote-link {
  text-decoration: underline;
}
.upload-guidelines .footnote-link:hover {
  text-decoration: none;
}

.stickers-page .hero {
  text-align: center;
}
.stickers-page .hero h2 {
  font-weight: 700;
}
.stickers-page .hero h2 span {
  color: #ff5500;
}
.stickers-page .hero .description {
  font-size: 1.25rem;
  color: #5c5c5c;
}
.stickers-page .wrapper-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 48rem) {
  .stickers-page .wrapper-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
