/** Shopify CDN: Minification failed

Line 2123:62 Unexpected "\"&nbsp;\""

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:about (INDEX:1, SCOPED:FALSE) */
.about-section {
    width: 100%;
    height: 100vh;
  }

  .about-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .about-wrapper {
    width: 47%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
  }

  .about-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
  }

  .about-image-wrapper {
    width: 47%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .section-list {
    list-style: none;
    padding: 0 1rem;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .section-list li {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.4;
    font-weight: 400;
    color: var(--color-negro);
    position: relative;
    padding-left: 1.5rem;
  }

  .section-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-madera-dorada);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
  }

  /* Responsive - Tablet */
  @media screen and (max-width: 991px) {
    /* Estilos para tablet */
    .about-section {
      height: auto;
    }

    .about-container {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 3rem;
    }

    .about-wrapper {
      width: 100%;
    }

    .about-image-wrapper {
      width: 100%;
    }

    .about-image {
      height: 400px;
    }

    .about-content {
      width: 100%;
    }

    .section-list {
      margin-top: 0;
      margin-bottom: 0;
    }
  }

  /* Responsive - Mobile */
  @media screen and (max-width: 479px) {
    /* Estilos para mobile */
    .about-section {
      height: auto;
    }

    .about-container {
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .about-wrapper {
      width: 100%;
      gap: 1.5rem;
    }

    .about-image-wrapper {
      width: 100%;
    }

    .about-image {
      height: 300px;
    }

    .about-content {
      gap: 1rem;
    }
  }
/* END_SECTION:about */

/* START_SECTION:brand-detail (INDEX:4, SCOPED:FALSE) */
.brand-detail-section {
    width: 100%;
  }

  .detail-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }

  .detail-container .heading-wrapper {
    text-align: center;
  }

  .detail-wrapper {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .detail-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .detail-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  /* Botones interactivos sobre la imagen */
  .detail-trigger {
    position: absolute;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .detail-trigger:hover {
    transform: scale(1.2);
  }

  .detail-trigger__dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-rojo-arabe);
    border: 3px solid var(--color-blanco);
    box-shadow: 0 2px 8px rgba(var(--color-negro-rgb), 0.3);
    transition: all 0.3s ease;
    position: relative;
  }

  .detail-trigger__dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-blanco);
  }

  .detail-trigger:hover .detail-trigger__dot {
    transform: scale(1.3);
    box-shadow: 0 4px 12px rgba(var(--color-rojo-arabe-rgb), 0.5);
  }

  /* Posiciones de los botones */
  .detail-trigger--1 {
    top: 15%;
    left: 20%;
  }

  .detail-trigger--2 {
    top: 15%;
    right: 20%;
  }

  .detail-trigger--3 {
    bottom: 20%;
    left: 20%;
  }

  .detail-trigger--4 {
    bottom: 20%;
    right: 20%;
  }

  /* Información de los puntos (oculta por defecto) */
  .detail-point {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    max-width: 300px;
    background-color: var(--color-blanco);
    border: 2px solid var(--color-rojo-arabe);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(var(--color-negro-rgb), 0.15);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: 20;
  }

  .detail-point__title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-rojo-arabe);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 0.75rem 0;
  }

  .detail-point__description {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-negro);
    margin: 0;
  }

  /* Posiciones de la información - cerca de sus triggers */
  .detail-point--1 {
    top: 10%;
    left: 10%;
    transform-origin: top left;
  }

  .detail-point--2 {
    top: 10%;
    right: 10%;
    transform-origin: top right;
  }

  .detail-point--3 {
    bottom: 15%;
    left: 10%;
    transform-origin: bottom left;
  }

  .detail-point--4 {
    bottom: 15%;
    right: 10%;
    transform-origin: bottom right;
  }

  .detail-point.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  .brand-detail-section .button-group {
    justify-content: center;
  }

  /* Responsive */
  @media screen and (max-width: 991px) {
    .detail-wrapper {
      min-height: 400px;
    }

    .detail-image-container {
      max-width: 400px;
    }

    .detail-trigger {
      width: 36px;
      height: 36px;
    }

    .detail-trigger__dot {
      width: 18px;
      height: 18px;
    }

    .detail-point {
      max-width: 280px;
      padding: 1.25rem;
    }

    /* Ajustar posiciones de los puntos para evitar superposición con triggers */
    .detail-point--1 {
      top: 5%;
      left: 5%;
    }

    .detail-point--2 {
      top: 5%;
      right: 5%;
    }

    .detail-point--3 {
      bottom: 10%;
      left: 5%;
    }

    .detail-point--4 {
      bottom: 10%;
      right: 5%;
    }
  }

  @media screen and (max-width: 479px) {
    .detail-wrapper {
      max-width: 100%;
      min-height: 300px;
    }

    .detail-image-container {
      max-width: 100%;
    }

    .detail-point {
      width: 80%;
      height: auto;
    }

    .detail-trigger {
      width: 32px;
      height: 32px;
    }

    .detail-trigger__dot {
      width: 16px;
      height: 16px;
      border-width: 2px;
    }

    .detail-trigger--1 {
      top: 5%;
      left: 15%;
    }

    .detail-trigger--2 {
      top: 10%;
      right: 15%;
    }

    .detail-trigger--3 {
      bottom: 15%;
      left: 15%;
    }

    .detail-trigger--4 {
      bottom: 15%;
      right: 15%;
    }

    .detail-point {
      max-width: calc(100% - 2rem);
      padding: 1rem;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.8);
      z-index: 1000;
    }

    .detail-point.active {
      transform: translate(-50%, -50%) scale(1);
    }
  }
/* END_SECTION:brand-detail */

/* START_SECTION:collection (INDEX:6, SCOPED:FALSE) */
.collection-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:7, SCOPED:FALSE) */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
/* END_SECTION:collections */

/* START_SECTION:cta (INDEX:8, SCOPED:FALSE) */
.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
  }

  .cta-section .heading-wrapper {
    max-width: 48rem;
    text-align: center;
  }

  .cta-image-wrapper {
    width: 100%;
  }

  .cta-image {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
  }

  /* Responsive - Tablet */
  @media screen and (max-width: 991px) {

    .cta-section .heading-wrapper {
      max-width: 75%;
    }

    .cta-container {
      gap: 3rem;
    }


    .cta-image {
      height: 400px;
    }
  }

  /* Responsive - Mobile */
  @media screen and (max-width: 479px) {
    .cta-section .heading-wrapper {
      max-width: 100%;
    }

    .cta-image {
      height: 300px;
    }
  }
/* END_SECTION:cta */

/* START_SECTION:custom-section (INDEX:9, SCOPED:FALSE) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:faqs (INDEX:10, SCOPED:FALSE) */
.faq-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .faq-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
  }

  .faq-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    text-align: center;
  }

  .faq-icon {
    color: var(--color-madera-dorada);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .faq-icon svg {
    width: 41px;
    height: 42px;
  }

  .faq-question {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-negro);
    margin: 0;
  }

  .faq-answer {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-negro);
    margin: 0;
  }

  /* Responsive - Tablet */
  @media screen and (max-width: 991px) {
    .faq-wrapper {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-template-rows: repeat(3, auto);
      gap: 1rem;
    }

    .faq-card {
      padding: 1rem;
    }
  }

  /* Responsive - Mobile */
  @media screen and (max-width: 479px) {
    .faq-wrapper {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(6, auto);
    }

  }
/* END_SECTION:faqs */

/* START_SECTION:footer (INDEX:11, SCOPED:FALSE) */
.footer-container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
  }

  .footer-wrapper {
    display: flex;
    gap: 3rem;
  }

  .footer-logo-wrapper {
    width: 35%;
    height: 67px;
    display: flex;
    justify-content: left;
    align-items: top;
  }

  .footer-logo {
    width: 250px;
    object-fit: cover;
    object-position: center;
  }

  .footer-links-wrapper {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-links-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-negro);
    margin: 0;
  }

  .footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-link {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-negro);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-link:hover {
    color: var(--color-rojo-arabe);
  }

  .subscribe-container {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .subscribe-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-negro);
    margin: 0;
  }

  .subscribe-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-negro);
    margin: 0;
  }

  .subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .subscribe-input-group {
    display: flex;
    gap: 0.5rem;
  }

  .subscribe-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--color-negro);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--color-blanco);
    color: var(--color-negro);
  }

  .subscribe-input:focus {
    outline: none;
    border-color: var(--color-rojo-arabe);
  }

  .subscribe-button {
    padding: 12px 24px;
    background-color: var(--color-rojo-arabe);
    color: var(--color-blanco);
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .subscribe-button:hover {
    background-color: var(--color-madera-dorada);
  }

  .subscribe-disclaimer {
    font-family: var(--font-body);
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--color-negro);
    margin: 0;
  }

  .subscribe-link {
    color: var(--color-rojo-arabe);
    text-decoration: underline;
  }

  

  .footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-negro);
  }

  .footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .footer-copyright {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-negro);
    margin: 0;
  }

  .footer-bottom-link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-negro);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-bottom-link:hover {
    color: var(--color-rojo-arabe);
  }

  .social-links-wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .social-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-negro);
    transition: color 0.3s ease;
    text-decoration: none;
  }

  .social-link-icon:hover {
    color: var(--color-rojo-arabe);
  }

  .social-link-icon svg {
    width: 24px;
    height: 24px;
  }

  .footer-bottom-wrapper .social-link-icon:first-child svg {
    width: 18px;
    height: 18px;
  }

  /* Responsive - Tablet */
  @media screen and (max-width: 991px) {
    .footer-wrapper {
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: auto 1fr;
    }

    .footer-logo-wrapper {
      width: 200px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .footer-logo {
      min-width: 260px;
      object-fit: cover;
    }

    .footer-links-wrapper {
      grid-row: 2;
      grid-column: 1;
      justify-self: start;
      display: flex;
      flex-direction: column;
      width: auto;
      max-width: 48%;
    }

    .subscribe-container {
      grid-row: 2;
      grid-column: 1;
      justify-self: end;
      display: flex;
      flex-direction: column;
      width: auto;
      max-width: 65%;
    }

    .footer-bottom-left {
      align-items: flex-start;
      gap: 1rem;
    }

    .footer-copyright {
      max-width: 50%;
    }

  }

  /* Responsive - Mobile */
  @media screen and (max-width: 479px) {

    .footer-container {
      gap: 3rem;
    }

    .footer-wrapper {
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    .footer-logo-wrapper {
      width: 200px;
    }

    .footer-logo {
      width: 300px;
    }

    .footer-links-wrapper {
      max-width: 100%;
    }

    .subscribe-container {
      max-width: 100%;
    }

    .subscribe-input-group {
      flex-direction: column;
    }

    .subscribe-button {
      width: 100%;
    }

    .footer-bottom-wrapper {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }

    .footer-bottom-wrapper > .social-links-wrapper {
      order: -1;
    }

    .footer-bottom-wrapper > .footer-bottom-left {
      order: 1;
    }

    .footer-bottom-left {
      flex-direction: column;
      gap: 1.5rem;
    }

    .footer-bottom-left > .footer-copyright {
      order: 999;
    }

    .footer-bottom-left > .footer-bottom-link {
      order: 0;
    }

    .footer-copyright {
      max-width: 100%;
    }

    .footer-bottom-link {
      text-decoration: underline;
    }
  }
/* END_SECTION:footer */

/* START_SECTION:gallery (INDEX:12, SCOPED:FALSE) */
.gallery-section {
    overflow: hidden;
  }
  .gallery-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .gallery-section .heading-wrapper {
    max-width: 40rem;
  }

  .gallery-wrapper {
    height: 380px;
    position: relative;
    overflow: visible;
  }

  .gallery-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.6s ease;
    will-change: transform;
  }

  .gallery-slide {
    flex: 0 0 calc(100% / 4.25);
  }

  .gallery-slide__image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
  }

  .gallery-slide__placeholder {
    width: 100%;
    height: 520px;
  }

  .gallery-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    pointer-events: none;
  }

  .gallery-dots {
    display: flex;
    gap: 0.5rem;
    pointer-events: all;
  }

  .gallery-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    max-width: 8px;
    max-height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    margin: 0;
    background-color: rgba(139, 8, 43, 0.2);
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-sizing: border-box;
    flex-shrink: 0;
  }

  .gallery-dot.is-active {
    background-color: var(--color-rojo-arabe);
  }

  .gallery-arrows {
    display: flex;
    gap: 0.5rem;
    pointer-events: all;
  }

  .gallery-arrow {
    background-color: rgba(var(--color-blanco-rgb), 0.9);
    border: 1px solid var(--color-rojo-arabe);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    cursor: pointer;
  }

  .gallery-arrow:hover {
    background-color: rgba(var(--color-marfil-calido-rgb), 0.9);
  }

  @media screen and (max-width: 1024px) {
    .gallery-slide {
      flex: 0 0 calc(100% / 2.25);
    }
  }

  @media screen and (max-width: 991px) {
    .gallery-wrapper {
      height: 380px;
      overflow: visible;
    }

    .gallery-section .heading-wrapper {
      max-width: 75%;
    }

    .gallery-track {
      align-items: center;
    }

    .gallery-slide {
      flex: 0 0 85%;
      max-width: 85%;
    }

    .gallery-slide__image,
    .gallery-slide__placeholder {
      height: 300px;
    }

    .gallery-controls {
      gap: 1rem;
      bottom: 1rem;
    }

    .gallery-arrows {
      align-self: flex-end;
    }
  }

  @media screen and (max-width: 479px) {
    .gallery-section .heading-wrapper {
      max-width: 100%;
    }
  }
/* END_SECTION:gallery */

/* START_SECTION:header (INDEX:13, SCOPED:FALSE) */
header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    background-color: var(--color-marfil-calido);
  }

  /* En index: header arriba (-100%) durante animación del hero, luego cae a su posición */
  header.header--hero-animation {
    transform: translateY(-100%);
    animation: header-drop 0.3s ease-out 1.8s forwards;
  }

  @keyframes header-drop {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    max-width: var(--container-large);
    width: 100%;
  }

  .nav-logo-wrapper {
    display: flex;
    justify-content: left;
    align-items: top;
  }

  .nav-menu-wrapper {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
  }

  .nav-logo-image {
    height: auto;
    max-height: 90px;
    width: auto;
  }

  .custom-header__nav-link {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-negro);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
  }

  .custom-header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-rojo-arabe);
    transition: width 0.3s ease;
  }

  .custom-header__nav-link:hover {
    color: var(--color-rojo-arabe);
  }

  .custom-header__nav-link:hover::after {
    width: 100%;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-cart {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav-cart__trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0.5rem;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
  }

  .nav-cart__trigger:hover {
    color: var(--color-rojo-arabe);
  }

  .nav-cart__count {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-blanco);
    background: var(--color-rojo-arabe);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-cart-icon {
    color: var(--color-negro);
    transition: color 0.3s ease;
  }

  .nav-hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--color-negro);
    cursor: pointer;
  }

  .nav-hamburger:hover {
    color: var(--color-rojo-arabe, #8B082B);
  }

  /* Icono hamburger: 3 líneas */
  .nav-hamburger__lines {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 24px;
    height: 24px;
  }

  .nav-hamburger__line {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }

  .nav-hamburger__line--top { transform: translateY(0) rotate(0); }
  .nav-hamburger__line--mid { opacity: 1; }
  .nav-hamburger__line--bot { transform: translateY(0) rotate(0); }

  /* Estado X: centro oculto, arriba y abajo rotan a X */
  .nav-hamburger.is-active .nav-hamburger__line--top {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-hamburger.is-active .nav-hamburger__line--mid {
    opacity: 0;
  }

  .nav-hamburger.is-active .nav-hamburger__line--bot {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Menú móvil: full screen, header (z-index 999) queda encima */
  .nav-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 998;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.25s, opacity 0.25s;
  }

  .nav-mobile-menu.is-open {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
  }

  .nav-mobile-menu__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
  }

  .nav-mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100%;
    background: var(--color-marfil-calido, #FBECC3);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem 1.5rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav-mobile-menu.is-open .nav-mobile-menu__panel {
    transform: translateX(0);
  }

  .nav-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 4rem;
    padding-top: 1rem;
  }

  .nav-mobile-menu__link {
    padding: 0.75rem 0;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-negro);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: color 0.25s ease;
  }

  .nav-mobile-menu__link:hover {
    color: var(--color-rojo-arabe, #8B082B);
  }

  /* Responsive ≤991px */
  @media (max-width: 991px) {
    .nav-menu-wrapper {
      display: none;
    }

    .nav-hamburger {
      display: flex;
    }
  }

  @media (max-width: 479px) {

    .nav-mobile-menu__panel {
      max-width: 250px;
    }


    .nav-mobile-menu__link {
      font-size: 1.15rem;
    }
  }
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:14, SCOPED:FALSE) */
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
/* END_SECTION:hello-world */

/* START_SECTION:hero-collection (INDEX:15, SCOPED:FALSE) */
.img-slider__thumb {
  pointer-events: auto;
  cursor: pointer;
  background: transparent;
  border: none;
  border-bottom: 2px solid white;
  padding: 0.75rem 1.5rem;
  transition: border-bottom-color 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-slider__thumb:hover {
  border-bottom-color: rgba(255, 255, 255, 0.8);
}

.img-slider__thumb.is--current {
  border-bottom-color: #8B082B;
}

.slider-thumb__text {
  color: white;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.img-slider {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-radius: .5em;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
}

.img-slide__inner {
  object-fit: cover;
  will-change: transform;
  width: 100%;
  height: 100%;
  position: absolute;
}

.img-slider__nav {
  z-index: 2;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  pointer-events: none;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  max-width: 95vw;
  display: flex;
  position: absolute;
  bottom: 2rem;
}


.img-slide {
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  grid-area: 1 / 1 / -1 / -1;
  place-items: center;
  width: 100%;
  height: 100%;
  display: grid;
  position: relative;
  overflow: hidden;
}

.img-slide.is--current {
  opacity: 1;
  pointer-events: auto;
}

.img-slider__list {
  grid-template-rows: 100%;
  grid-template-columns: 100%;
  place-items: center;
  width: 100%;
  height: 100%;
  display: grid;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .img-slider__nav {
    gap: 1.5rem;
    bottom: 2rem;
    flex-flow: row;
  }

  .img-slider__thumb {
    width: 150px;
    height: 55px;
  }

  .slider-thumb__text {
    font-size: 0.875rem;
    break-word: break-all;
    white-space: normal;
    text-align: center;
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 1;
    height: auto;
  }
}

@media screen and (max-width: 479px) {
  .img-slider__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    bottom: 1.5rem;
  }
}
/* END_SECTION:hero-collection */

/* START_SECTION:hero (INDEX:16, SCOPED:FALSE) */
.hero-container {
    width: 100%;
    height: 100%;
  }

  .hero-wrapper {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
  }

  .hero-heading {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-blanco);
    line-height: 1.2;
  }

  .hero-text {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--color-blanco);
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
  }


  .hero-image-wrapper {
    width: 100%;
    margin-top: 2rem;
  }

  .hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
  }

  /* Responsive - Tablet */
  @media screen and (max-width: 991px) {
    /* Estilos para tablet */
    .hero-wrapper {
      width: 75%;
    }

    .hero-heading {
      font-size: 2.5rem;
    }
  }

  /* Responsive - Mobile */
  @media screen and (max-width: 479px) {
    .hero-section {
      height: auto;
      min-height: 100vh;
    }

    .hero-wrapper {
      width: 100%;
    }

    .hero-heading {
      font-size: 2rem;
    }
  }
/* END_SECTION:hero */

/* START_SECTION:inspiraton (INDEX:17, SCOPED:FALSE) */
.inspiration-section {
    width: 100%;
  }

  .inspiration-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }

  .inspiration-heading-wrapper {
    max-width: 48rem;
    gap: 1.5rem;
    align-items: flex-start;
    text-align: left;
  }

  .inspiration-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }

  .inspiration-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .inspiration-card__image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
  }

  .inspiration-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-negro);
    text-align: center;
    margin: 0;
  }

  .inspiration-card__text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-negro);
    text-align: center;
    margin: 0;
  }

  /* Responsive - Tablet */
  @media screen and (max-width: 991px) {
    .inspiration-wrapper {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  /* Responsive - Mobile */
  @media screen and (max-width: 479px) {
    .inspiration-wrapper {
      grid-template-columns: 1fr;
    }

    .inspiration-card {
      gap: 1rem;
    }
    
  }
/* END_SECTION:inspiraton */

/* START_SECTION:main-collection (INDEX:18, SCOPED:FALSE) */
.collection-section {
    width: 100%;
  }

  .collection-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }

  /* Filtros por género (metafield custom.genero) */
  .collection-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
  }

  .collection-filter__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-negro);
    text-decoration: none;
    border: 1px solid rgba(var(--color-negro-rgb, 0 0 0), 0.2);
    border-radius: 999px;
    background: transparent;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  }

  .collection-filter__link:hover {
    color: var(--color-rojo-arabe);
    border-color: var(--color-rojo-arabe);
    background: rgba(var(--color-rojo-arabe-rgb, 139 8 43), 0.06);
  }

  .collection-filter__link.is-active {
    color: var(--color-blanco);
    background: var(--color-rojo-arabe);
    border-color: var(--color-rojo-arabe);
  }

  .collection-filter__link.is-active:hover {
    color: var(--color-blanco);
    background: var(--color-rojo-arabe);
    border-color: var(--color-rojo-arabe);
    opacity: 0.95;
  }

  /* Ocultar producto cuando no coincide con el filtro (JS añade esta clase) */
  .collection-item[data-collection-item].is-hidden-by-filter {
    display: none !important;
  }

  .collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
    align-items: stretch;
  }

  .collection-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    height: 100%;
  }

  .collection-item__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
  }

  .collection-item__image-wrapper {
    width: 100%;
    display: block;
    overflow: hidden;
    border-radius: 8px;
  }

  .collection-item__image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }

  .collection-item__image-wrapper:hover .collection-item__image {
    transform: scale(1.05);
  }

  .collection-item__image--placeholder {
    background-color: #f5f5f5;
    padding: 2rem;
  }

  .collection-item__info {
    display: flex;
    justify-content: space-between;
    align-items: top;
    gap: 1rem;
  }

  .collection-item__name-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
  }

  .collection-item__name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-rojo-arabe);
    text-decoration: none;
    transition: color 0.3s ease;
  }


  .collection-item__aroma {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-negro);
    line-height: 1.4;
  }

  .collection-item__price {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-madera-dorada);
    white-space: nowrap;
  }

  .collection-item__form {
    width: 100%;
  }

  .collection-item__button {
    width: 100%;
  }

  .collection-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
  }

  .collection-pagination .pagination,
  .collection-pagination ul,
  .collection-pagination nav {
    display: flex !important;
    gap: 1rem !important;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .collection-pagination .pagination__item,
  .collection-pagination li {
    list-style: none;
    margin: 0 !important;
  }

  .collection-pagination .pagination__link,
  .collection-pagination .pagination__item a,
  .collection-pagination a,
  .collection-pagination li a {
    border-radius: 12px !important;
    padding: 12px 24px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-decoration: none !important;
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    background-color: var(--color-rojo-arabe) !important;
    color: var(--color-blanco) !important;
    border: none !important;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    margin: 0 !important;
  }

  .collection-pagination .pagination__link:hover,
  .collection-pagination .pagination__item a:hover,
  .collection-pagination a:hover,
  .collection-pagination li a:hover {
    background-color: var(--color-madera-dorada) !important;
    color: var(--color-blanco) !important;
  }

  .collection-pagination .pagination__link[aria-current="page"],
  .collection-pagination .pagination__item.is-active a,
  .collection-pagination .pagination__item.current a,
  .collection-pagination .pagination__item[aria-current="page"] a,
  .collection-pagination li[aria-current="page"] a,
  .collection-pagination li.current a,
  .collection-pagination .pagination__item.current .pagination__link {
    background-color: var(--color-rojo-arabe) !important;
    color: var(--color-blanco) !important;
  }

  .collection-pagination .pagination__link[aria-disabled="true"],
  .collection-pagination .pagination__item.disabled a,
  .collection-pagination li.disabled a,
  .collection-pagination .pagination__link--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
  }

  .collection-pagination .pagination__link--prev,
  .collection-pagination .pagination__link--next {
    background-color: var(--color-rojo-arabe) !important;
    color: var(--color-blanco) !important;
  }

  /* Responsive */
  @media screen and (max-width: 989px) {
    .collection-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
  }

  @media screen and (max-width: 768px) {
    .collection-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
  }

  @media screen and (max-width: 480px) {
    .collection-grid {
      grid-template-columns: 1fr;
    }
  }
/* END_SECTION:main-collection */

/* START_SECTION:product-information (INDEX:21, SCOPED:FALSE) */
.product-section {
    width: 100%;
  }

  .product-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
  }

  /* Grid de imágenes: 4 columnas, 2 filas */
  .product-images-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 300px 300px;
    gap: 1rem;
    width: 100%;
  }

  @media screen and (max-width: 991px) {
    .product-images-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(2, 1fr);
      gap: 1rem;
    }

    /* Todas las imágenes tienen el mismo tamaño en mobile */
    .product-image--main,
    .product-image--secondary {
      grid-column: auto !important;
      grid-row: auto !important;
    }

    /* Ocultar la quinta imagen y siguientes en mobile */
    .product-image:nth-child(n+5) {
      display: none !important;
    }
  }

  .product-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
  }

  .product-image--main {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }

  .product-image--secondary:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
  }

  .product-image--secondary:nth-child(3) {
    grid-column: 4;
    grid-row: 1;
  }

  .product-image--secondary:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
  }

  .product-image--secondary:nth-child(5) {
    grid-column: 4;
    grid-row: 2;
  }

  .product-image__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Información del producto */
  .product-info {
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    width: 100%;
  }

  .product-info__left {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .product-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-negro);
    margin: 0;
  }

  .product-description {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-negro);
  }

  /* Ocultar elementos vacíos generados por el editor RTE */
  .product-description p[data-path-to-node]:empty,
  .product-description p[data-path-to-node]:has(only-child:empty),
  .product-description p:empty:not(:has(img, video, iframe)),
  .product-description p:has(only-child:empty) {
    display: none !important;
  }

  /* Ocultar párrafos que solo contienen espacios o &nbsp; */
  .product-description p:has(only-child:has-text("&nbsp;")),
  .product-description p:has-text("&nbsp;"):not(:has-text:not("&nbsp;")) {
    display: none !important;
  }

  .product-info__right {
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .product-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-negro);
  }

  .product-rating {
    display: flex;
    gap: 0.25rem;
  }

  .product-variants,
  .product-quantity {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .product-variants__label,
  .product-quantity__label {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-negro);
  }

  .product-variants__select,
  .product-quantity__input {
    padding: 0.75rem;
    border: 1px solid var(--color-madera-dorada);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-negro);
    background: var(--color-blanco);
  }

  .product-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .product-form {
    width: 100%;
  }

  .product-button {
    width: 100%;
  }

  /* Responsive */
  @media screen and (max-width: 991px) {
    .product-info {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .product-container {
      padding-top: 4rem;
    }

    .product-container {
      gap: 2rem;
    }

    .product-title {
      font-size: 2rem;
    }

    .product-price {
      font-size: 1.5rem;
    }
  }

  @media screen and (max-width: 479px) {

    .product-info {
      width: 100%;
      flex-flow: column;
      gap: 1rem;
    }

    .product-info__left {
      width: 100%;
    }

    .product-info__right {
      width: 100%;
    }

  }
/* END_SECTION:product-information */

/* START_SECTION:product-recomendation (INDEX:22, SCOPED:FALSE) */
.product-recommendations-section {
    width: 100%;
  }

  .recommendation-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }

  /* Grid de productos */
  .recommendation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  /* Item de producto */
  .recommendation-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  /* Imagen del producto */
  .recommendation-item__image-wrapper {
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 8px;
    display: block;
    position: relative;
  }

  .recommendation-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .recommendation-item__image--placeholder {
    background-color: #f0f0f0;
  }

  /* Contenido del producto */
  .recommendation-item__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    flex: 1;
    min-height: 0;
  }

  /* Contenedor para header y descripción */
  .recommendation-item__info {
    display: flex;
    flex-direction: column;
    justify-content: top;
    height: 125px;
    gap: 0.75rem;
  }

  /* Header: Nombre y precio */
  .recommendation-item__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
  }

  .recommendation-item__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-rojo-arabe);
    text-decoration: none;
    line-height: 1.4;
    flex: 1;
  }

  .recommendation-item__title:hover {
    text-decoration: underline;
  }

  .recommendation-item__price {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-negro);
    flex-shrink: 0;
  }

  /* Descripción */
  .recommendation-item__description {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--color-negro);
    opacity: 0.8;
    margin: 0;
  }

  /* Botón agregar al carrito */
  .recommendation-item__form {
    margin: 0;
    width: 100%;
  }

  .recommendation-item__button {
    width: 100%;
    padding: 12px 24px;
    background-color: var(--color-rojo-arabe);
    color: var(--color-blanco);
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .recommendation-item__button:hover {
    background-color: var(--color-madera-dorada);
    transform: translateY(-2px);
  }

  .recommendation-item__button:disabled,
  .recommendation-item__button--disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
  }

  .recommendation-item__button:disabled:hover,
  .recommendation-item__button--disabled:hover {
    transform: none;
  }

  /* Estado vacío */
  .recommendation-empty {
    text-align: center;
    padding: 3rem 0;
    color: var(--color-negro);
    opacity: 0.6;
  }

  /* Skeleton loading */
  .recommendation-item--loading .recommendation-item__image-wrapper--skeleton {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: #e0e0e0;
    border-radius: 8px;
    animation: pulse 1.5s ease-in-out infinite;
  }

  .recommendation-item__title--skeleton,
  .recommendation-item__price--skeleton,
  .recommendation-item__description--skeleton,
  .recommendation-item__button--skeleton {
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 4px;
    animation: pulse 1.5s ease-in-out infinite;
  }

  .recommendation-item__title--skeleton {
    width: 70%;
  }

  .recommendation-item__price--skeleton {
    width: 25%;
  }

  .recommendation-item__description--skeleton {
    width: 100%;
    height: 60px;
  }

  .recommendation-item__button--skeleton {
    width: 100%;
    height: 44px;
  }

  @keyframes pulse {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
  }

  /* Responsive */
  @media screen and (max-width: 991px) {
    .recommendation-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media screen and (max-width: 479px) {
    .recommendation-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Ocultar si no hay recomendaciones */
  product-recommendations:has([data-has-recommendations='false']) {
    display: none;
  }
/* END_SECTION:product-recomendation */

/* START_SECTION:search (INDEX:24, SCOPED:FALSE) */
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
/* END_SECTION:search */

/* START_SECTION:social (INDEX:25, SCOPED:FALSE) */
.social-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .social-section .heading-wrapper {
    text-align: center;
  }

  .social-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }

  .social-link {
    width: 65px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background-color: var(--color-marfil-calido);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .social-link-icon {
    height: 100%;
  }

  .social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .social-link svg {
    display: block;
  }

  /* Responsive - Mobile */
  @media screen and (max-width: 479px) {
  
  }
/* END_SECTION:social */

/* START_SECTION:testimonials (INDEX:26, SCOPED:FALSE) */
.testimonial-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .testimonial-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }

  .testimonial-card {
    display: flex;
    flex-direction: column;
    padding: 2rem 0rem;
    gap: 2rem;
  }

  .testimonial-stars {
    display: flex;
    gap: 0.5rem;
  }

  .testimonial-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-negro);
    margin: 0;
  }

  .testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .testimonial-name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-negro);
    margin: 0;
  }

  .testimonial-years {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-madera-dorada);
    margin: 0;
  }

  /* Responsive - Tablet */
  @media screen and (max-width: 991px) {
    .testimonial-wrapper {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  /* Responsive - Mobile */
  @media screen and (max-width: 479px) {

  .testimonials-section .heading-wrapper {
    width: 100%;
  }

    .testimonial-wrapper {
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    .testimonial-card {
      padding: 0rem;
      gap: 1rem;
    }
  }
/* END_SECTION:testimonials */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:27, SCOPED:FALSE) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:28, SCOPED:FALSE) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:image (INDEX:32, SCOPED:FALSE) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */