/** Shopify CDN: Minification failed

Line 130:28 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:cart (INDEX:3) */
/* ═══ Base ═══ */
  .xo-cart {
    background: transparent;
    padding: 0 0 100px;
    border-top: 1px solid var(--xo-rule);
  }
  .xo-cart.is-busy { opacity: .82; pointer-events: none; }

  /* ═══ Hero título ═══ */
  .xo-cart-hero {
    display: flex; align-items: center; justify-content: center; gap: 18px;
    padding: 36px 40px 32px;
    border-bottom: 1px solid var(--xo-rule);
    margin-bottom: 48px;
  }
  .xo-cart-hero-title {
    font-family: 'Montserrat', var(--font-primary--family), sans-serif;
    font-size: clamp(1.05rem, 2.5vw, 1.35rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .38em;
    color: var(--xo-olive);
    white-space: nowrap;
    margin: 0;
  }
  .xo-cart-hero-ferns {
    display: flex; align-items: center; gap: 6px;
  }
  .xo-cart-hero-ferns .xo-strip-fern {
    width: 20px; height: auto;
    color: var(--xo-gold); opacity: .8;
    flex-shrink: 0;
  }
  .xo-cart-hero-ferns--flip .xo-strip-fern {
    transform: scaleX(-1);
  }
  @media (max-width: 600px) {
    .xo-cart-hero { padding: 24px 20px 20px; gap: 12px; margin-bottom: 28px; }
    .xo-cart-hero-ferns .xo-strip-fern { width: 16px; }
    .xo-cart-hero-ferns { gap: 4px; }
  }

  /* ═══ Wrapper ═══ */
  .xo-cart-wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
  @media (max-width: 600px) { .xo-cart-wrap { padding: 0 16px; } }

  /* ═══ Vacío ═══ */
  .xo-cart-empty { text-align: center; padding: 40px 0 80px; }
  .xo-cart-empty-text {
    font-family: var(--font-primary--family);
    font-size: 1rem; color: var(--xo-muted); margin: 0 0 28px;
  }

  /* ═══ Botón outline reutilizable ═══ */
  .xo-btn-outline {
    display: inline-block;
    font-family: var(--font-primary--family);
    font-size: 9px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .3em;
    color: var(--xo-olive); background: #fff;
    border: 1px solid var(--xo-olive); border-radius: 999px;
    padding: 13px 28px; cursor: pointer; text-decoration: none;
    transition: background .22s, color .22s;
  }
  .xo-btn-outline:hover { background: var(--xo-olive); color: #fff; }

  /* ═══ Layout dos columnas ═══ */
  .xo-cart-cols {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
  }
  @media (max-width: 860px) {
    .xo-cart-cols { grid-template-columns: 1fr; gap: 32px; }
  }

  /* ═══ Columna items ═══ */
  .xo-cart-items-col {}

  .xo-cart-list { list-style: none; padding: 0; margin: 0; }

  .xo-cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "media info right";
    gap: 0 18px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--xo-rule);
  }
  .xo-cart-item:first-child { border-top: 1px solid var(--xo-rule); }

  /* Fila qty + basura */
  .xo-cart-qty-row {
    display: flex; align-items: center; gap: 10px;
  }

  /* Botón bote de basura */
  .xo-cart-remove-trash {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    color: var(--xo-muted); background: none;
    border: 1px solid rgba(107,82,48,.22); border-radius: 50%;
    cursor: pointer; flex-shrink: 0;
    transition: background .18s, color .18s, border-color .18s;
    padding: 0;
  }
  .xo-cart-remove-trash:hover { background: #fdf0ee; color: #b5523f; border-color: #b5523f; }

  /* Imagen cuadrada con bordes redondeados */
  .xo-cart-item-media {
    grid-area: media;
    display: block; width: 90px; height: 90px;
    border-radius: 12px; overflow: hidden;
    background: var(--xo-cream2); flex-shrink: 0;
  }
  .xo-cart-item-media img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    background-color: #fff;z
  }

  .xo-cart-item-info {
    grid-area: info;
  }
  .xo-cart-item-name {
    font-family: var(--font-primary--family);
    font-size: 0.9rem; font-weight: 600; line-height: 1.4;
    color: var(--xo-brown); text-decoration: none; display: block;
  }
  .xo-cart-item-name:hover { color: var(--xo-olive); }
  .xo-cart-item-variant,
  .xo-cart-item-prop {
    font-family: var(--font-primary--family);
    font-size: 0.75rem; color: var(--xo-muted); margin: 4px 0 0;
  }
  .xo-cart-item-unit {
    font-family: var(--font-primary--family);
    font-size: 0.78rem; color: var(--xo-muted); margin: 8px 0 0;
  }

  /* Columna derecha del item: qty + subtotal */
  .xo-cart-item-right {
    grid-area: right;
    display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
  }

  /* Selector cantidad */
  .xo-cart-qty {
    display: flex; align-items: center;
    border: 1px solid rgba(107,82,48,.28);
    border-radius: 999px; overflow: hidden; background: #fff;
  }
  .xo-cart-qty-btn {
    width: 34px; height: 36px;
    font-size: 1rem; color: var(--xo-olive);
    background: none; border: none; cursor: pointer;
    transition: background .18s;
  }
  .xo-cart-qty-btn:hover { background: var(--xo-cream2); }
  .xo-cart-qty-input {
    width: 38px; text-align: center; border: none;
    font-family: var(--font-primary--family);
    font-size: 0.88rem; color: var(--xo-brown); background: none;
    -moz-appearance: textfield;
  }
  .xo-cart-qty-input::-webkit-outer-spin-button,
  .xo-cart-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

  .xo-cart-item-subtotal {
    display: flex; flex-direction: column; align-items: flex-end; gap: 2px;
    margin: 0;
  }
  .xo-cart-item-subtotal-label {
    font-family: var(--font-primary--family);
    font-size: 0.68rem; text-transform: uppercase; letter-spacing: .1em;
    color: var(--xo-muted);
  }
  .xo-cart-item-subtotal-value {
    font-family: var(--font-primary--family);
    font-size: 1rem; font-weight: 700; color: var(--xo-brown);
  }

  /* Nota */
  .xo-cart-note { margin-top: 28px; }
  .xo-cart-note-label {
    display: block;
    font-family: var(--font-primary--family);
    font-size: 8px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .28em;
    color: var(--xo-olive); margin-bottom: 8px;
  }
  .xo-cart-note-input {
    width: 100%; resize: vertical;
    font-family: var(--font-primary--family);
    font-size: 0.88rem; color: var(--xo-brown);
    border: 1px solid rgba(107,82,48,.28); border-radius: 10px;
    padding: 11px 14px; background: #fff; box-sizing: border-box;
  }
  .xo-cart-note-input:focus { outline: none; border-color: var(--xo-olive); }

  /* ═══ Resumen (sidebar) ═══ */
  .xo-cart-summary {
    background: #fff;
    border: 1px solid var(--xo-rule);
    border-radius: 14px;
    padding: 28px 24px 24px;
    position: sticky; top: 100px;
  }

  .xo-cart-summary-title {
    font-family: var(--font-primary--family);
    font-size: 1rem; font-weight: 700;
    color: var(--xo-brown); margin: 0 0 20px;
  }

  .xo-cart-summary-row {
    display: flex; justify-content: space-between; align-items: baseline;
    font-family: var(--font-primary--family);
    font-size: 0.9rem; color: var(--xo-brown);
    margin-bottom: 16px;
  }

  /* Descuento */
  .xo-cart-discount { margin-bottom: 18px; }
  .xo-cart-discount-row { display: flex; gap: 8px; margin-top: 6px; }
  .xo-cart-discount-input {
    flex: 1; min-width: 0;
    font-family: var(--font-primary--family);
    font-size: 0.85rem; color: var(--xo-brown);
    border: 1px solid rgba(107,82,48,.28); border-radius: 8px;
    padding: 10px 12px; background: #fff;
  }
  .xo-cart-discount-input:focus { outline: none; border-color: var(--xo-olive); }
  .xo-cart-discount-input::placeholder { color: var(--xo-muted); }
  .xo-cart-discount-btn {
    font-family: var(--font-primary--family);
    font-size: 8.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .22em;
    color: #fff; background: var(--xo-olive);
    border: 1px solid var(--xo-olive); border-radius: 8px;
    padding: 10px 14px; cursor: pointer; white-space: nowrap;
    transition: background .2s, color .2s;
  }
  .xo-cart-discount-btn:hover { background: var(--xo-olive2); }

  .xo-cart-discount-msg {
    font-family: var(--font-primary--family);
    font-size: 0.75rem; color: var(--xo-olive);
    margin: 8px 0 0; line-height: 1.4;
  }

  .xo-cart-summary-divider { height: 1px; background: var(--xo-rule); margin: 6px 0 16px; }

  .xo-cart-total-row {
    font-size: 1.05rem; font-weight: 700;
    color: var(--xo-olive);
    margin-bottom: 6px;
  }

  .xo-cart-taxes {
    font-family: var(--font-primary--family);
    font-size: 0.7rem; color: var(--xo-muted);
    margin: 0 0 22px; line-height: 1.5;
  }

  .xo-cart-checkout {
    display: block; width: 100%;
    font-family: var(--font-primary--family);
    font-size: 9px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .3em;
    color: #fff; background: var(--xo-olive);
    border: 1px solid var(--xo-olive); border-radius: 999px;
    padding: 16px 20px; cursor: pointer; margin-bottom: 12px;
    text-align: center;
    transition: background .22s, color .22s;
  }
  .xo-cart-checkout:hover { background: var(--xo-olive2); border-color: var(--xo-olive2); }

  .xo-cart-keep {
    display: block; width: 100%;
    text-align: center; padding: 12px 20px;
    box-sizing: border-box;
  }

  /* ═══ Spinner ═══ */
  .xo-cart-loading {
    position: fixed; top: 16px; right: 16px; z-index: 50;
    width: 22px; height: 22px; border-radius: 50%;
    border: 2px solid rgba(107,124,62,.25); border-top-color: var(--xo-olive);
    animation: xoCartSpin .7s linear infinite;
  }
  @keyframes xoCartSpin { to { transform: rotate(360deg); } }

  /* ═══ Móvil ═══ */
  @media (max-width: 540px) {
    .xo-cart-wrap { padding: 0 12px; }

    .xo-cart-item {
      grid-template-columns: 76px 1fr;
      grid-template-areas:
        "media info"
        "right right";
      gap: 10px 14px;
      align-items: start;
    }
    .xo-cart-item-media { width: 76px; height: 76px; border-radius: 10px; }

    .xo-cart-item-right {
      grid-area: right;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      margin-top: 0;
      gap: 12px;
    }

    .xo-cart-qty-row {
      flex-shrink: 0;
    }

    .xo-cart-item-subtotal {
      align-items: flex-end;
      margin-left: auto;
    }

    .xo-cart-summary { position: static; }
    .xo-cart-cols { gap: 24px; }

    .xo-cart-discount-row { flex-wrap: wrap; }
    .xo-cart-discount-input { min-width: 0; flex: 1 1 120px; }
    .xo-cart-discount-btn { flex-shrink: 0; }
  }
/* END_SECTION:cart */

/* START_SECTION:catalogo-categorias (INDEX:4) */
.xo-categorias {
    padding: 0 0 80px;
    background: #fff;
    border-top: 1px solid var(--xo-rule);
  }
  .xo-cat-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }
  @media (max-width: 600px) {
    .xo-cat-wrap { padding: 0; }
  }

  .xo-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  @media (max-width: 767px) {
    .xo-categorias { padding: 0; background: transparent; margin-bottom: 0; }
    .xo-cat-wrap { padding: 0; }
    .xo-cat-grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      gap: 12px;
      padding: 0 16px 8px;
      scrollbar-width: none;
      align-items: flex-start;
    }
    .xo-cat-grid::-webkit-scrollbar { display: none; }
    .xo-cat-grid .cat-card-link {
      flex: 0 0 78vw;
      max-width: 320px;
      scroll-snap-align: start;
      height: auto;
    }
  }

  .cat-card-link {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 16px;
    overflow: hidden;
  }
  @media (min-width: 768px) {
    .cat-card-link { aspect-ratio: 4/5; }
  }
  .cat-card-img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 1.1s ease;
  }
  .cat-card-shade {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.18);
    transition: background .5s;
  }

  .cat-pill-btn {
    position: absolute;
    bottom: 24px; left: 28px;
    display: flex; align-items: center;
    height: 44px; border-radius: 22px;
    background: #fff;
    box-shadow: 0 2px 14px rgba(0,0,0,.14);
    overflow: hidden; width: 44px;
    transition: width .42s cubic-bezier(.4,0,.2,1), background .3s, box-shadow .3s;
    cursor: pointer; z-index: 2;
  }
  .cat-pill-icon {
    display: flex; align-items: center; justify-content: center;
    min-width: 44px; width: 44px; height: 44px; flex-shrink: 0;
  }
  .cat-pill-icon svg {
    width: 15px; height: 15px;
    stroke: #111; stroke-width: 2.5; fill: none;
    transition: stroke .3s;
  }
  .cat-pill-text {
    white-space: nowrap;
    font-family: var(--font-primary--family);
    font-size: 10px; font-weight: 700;
    letter-spacing: .13em; text-transform: uppercase;
    color: #111; padding-right: 20px;
    opacity: 0; transform: translateX(-8px);
    transition: opacity .28s ease .1s, transform .28s ease .1s, color .3s;
  }
  .cat-pill-btn.expanded {
    width: var(--pill-width);
    background: var(--xo-olive);
    box-shadow: 0 4px 18px rgba(107,124,62,.32);
  }
  .cat-pill-btn.expanded .cat-pill-text { opacity: 1; transform: translateX(0); color: #fff; }
  .cat-pill-btn.expanded .cat-pill-icon svg { stroke: #fff; }

  @media (max-width: 768px) {
    .cat-pill-btn { bottom: 16px; left: 16px; height: 40px; border-radius: 20px; width: 40px; }
    .cat-pill-icon { min-width: 40px; width: 40px; height: 40px; }
    .cat-pill-text { font-size: 10px; padding-right: 14px; }
  }

  .cat-label-top {
    position: absolute; top: 0; left: 0; right: 0;
    padding: 28px 28px 0;
    z-index: 2;
  }
  .cat-label-top h3 {
    font-family: var(--font-primary--family);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700; color: #fff;
    text-transform: uppercase; letter-spacing: .14em; margin: 0;
  }
/* END_SECTION:catalogo-categorias */

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

/* START_SECTION:collections (INDEX:7) */
.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:custom-section (INDEX:8) */
.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:familias-olfativas (INDEX:13) */
.xo-familias {
    padding: 96px 0 108px;
    background: var(--xo-cream);
    border-top: 1px solid var(--xo-rule);
  }
  .xo-fam-wrap { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
  @media (max-width: 600px) { .xo-fam-wrap { padding: 0 20px; } }

  .xo-fam-head { text-align: center; margin-bottom: 64px; }
  .xo-fam-eyebrow {
    font-family: var(--font-primary--family);
    font-size: 9px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .42em;
    color: var(--xo-olive); margin: 0 0 14px; display: block;
  }
  .xo-fam-title {
    font-family: var(--font-heading--family);
    font-size: clamp(24px, 3.4vw, 38px);
    font-weight: 300; color: var(--xo-brown);
    margin: 0 0 18px; letter-spacing: -.01em; text-transform: uppercase;
  }
  .xo-fam-rule { width: 36px; height: 1px; background: var(--xo-gold); margin: 0 auto 18px; }

  .xo-fam-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px;
  }
  @media (max-width: 900px) { .xo-fam-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
  @media (max-width: 540px) { .xo-fam-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }

  .xo-fam-item { text-align: center; text-decoration: none; display: block; }
  .xo-fam-img-wrap {
    display: flex; align-items: center; justify-content: center;
    width: 110px; height: 110px; border-radius: 50%;
    margin: 0 auto 18px;
    border: 1px solid rgba(107, 82, 48, 0.15);
    background-color: rgba(255, 255, 255, 0.4);
    transition: all .45s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .xo-fam-item:hover .xo-fam-img-wrap {
    border-color: var(--xo-gold); background-color: #fff;
    box-shadow: 0 10px 25px rgba(107, 82, 48, 0.12); transform: translateY(-5px);
  }
  .xo-fam-img-wrap img { width: 70%; height: auto; object-fit: contain; transition: transform .5s ease; }
  .xo-fam-item:hover .xo-fam-img-wrap img { transform: scale(1.1); }

  .xo-fam-name {
    font-family: var(--font-primary--family);
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .18em;
    color: var(--xo-brown); margin: 0 0 5px;
  }
  .xo-fam-desc-item {
    font-family: var(--font-heading--family);
    font-size: 13px; font-weight: 400; font-style: italic;
    color: #9a8a6a; margin: 0;
  }
/* END_SECTION:familias-olfativas */

/* START_SECTION:footer (INDEX:14) */
.xo-footer {
    background-color: #ffffff;
    color: #6b7c3e;
    font-family: var(--font-primary--family);
    padding: 4rem 0 0;
    margin-top: 4rem;
    border-top: 1px solid #dde5c8;
  }

  .xo-footer__inner {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #dde5c8;
  }

  .xo-footer__site-name {
    display: block;
    font-family: var(--font-heading--family);
    font-size: 1.5rem;
    font-weight: var(--font-heading--weight);
    color: #55642f;
    text-decoration: none;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
  }

  .xo-footer__logo-link {
    display: inline-block;
    margin-bottom: 1rem;
  }

  .xo-footer__tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #8a9a56;
    max-width: 30ch;
    margin: 0;
  }

  .xo-footer__heading {
    font-family: var(--font-heading--family);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #55642f;
    margin: 0 0 1.25rem;
  }

  .xo-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  .xo-footer__link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    font-size: 0.9rem;
    color: #6b7c3e;
    transition: color 0.2s ease;
  }

  .xo-footer__link:hover {
    color: #55642f;
  }

  .xo-footer__icon {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
    opacity: 0.8;
    transition: opacity 0.2s ease;
  }

  .xo-footer__link:hover .xo-footer__icon {
    opacity: 1;
  }

  /* ── Social icons (uiverse style) ── */
  .xo-social-wrapper {
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
  }

  .xo-social-icon {
    position: relative;
    margin: 6px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 6px 12px rgba(107, 124, 62, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .xo-social-icon a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    color: #6b7c3e;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .xo-social-tooltip {
    position: absolute;
    top: 0;
    font-size: 13px;
    font-family: var(--font-primary--family);
    background: #fff;
    color: #fff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .xo-social-tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #fff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .xo-social-icon:hover .xo-social-tooltip {
    top: -44px;
    opacity: 1;
    pointer-events: auto;
  }

  .xo-social-icon--whatsapp:hover,
  .xo-social-icon--whatsapp:hover a {
    background: #25d366;
    color: #fff;
  }
  .xo-social-icon--whatsapp:hover .xo-social-tooltip,
  .xo-social-icon--whatsapp:hover .xo-social-tooltip::before {
    background: #25d366;
    color: #fff;
  }

  .xo-social-icon--instagram:hover,
  .xo-social-icon--instagram:hover a {
    background: #e4405f;
    color: #fff;
  }
  .xo-social-icon--instagram:hover .xo-social-tooltip,
  .xo-social-icon--instagram:hover .xo-social-tooltip::before {
    background: #e4405f;
    color: #fff;
  }

  .xo-social-icon--facebook:hover,
  .xo-social-icon--facebook:hover a {
    background: #1877f2;
    color: #fff;
  }
  .xo-social-icon--facebook:hover .xo-social-tooltip,
  .xo-social-icon--facebook:hover .xo-social-tooltip::before {
    background: #1877f2;
    color: #fff;
  }

  .xo-footer__bottom {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 1.25rem var(--page-margin);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .xo-footer__copy {
    font-size: 0.8rem;
    color: #a8b87a;
  }

  .xo-footer__payments {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
  }

  .xo-footer__payment-icon {
    height: 2rem;
    width: auto;
    opacity: 0.7;
    filter: none;
  }

  @media (max-width: 768px) {
    .xo-footer__inner {
      grid-template-columns: 1fr;
      gap: 2.5rem;
      padding-left: 1.25rem;
      padding-right: 1.25rem;
      text-align: center;
    }
    .xo-footer__col {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .xo-footer__tagline {
      text-align: center;
    }
    .xo-footer__list {
      align-items: center;
    }
    .xo-footer__link {
      justify-content: center;
    }
    .xo-footer__bottom {
      flex-direction: column;
      align-items: center;
      padding-left: 1.25rem;
      padding-right: 1.25rem;
      text-align: center;
    }
    .xo-footer__payments {
      justify-content: center;
    }
  }
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:15) */
/* ───────────────────────────────────────────────
   VARIABLES (aplicadas a los 3 contenedores raíz:
   nav, menú móvil fullscreen y búsqueda móvil — el
   menú móvil vive fuera de .xo-nav)
─────────────────────────────────────────────── */
.xo-nav,
.xo-fullmenu,
#xo-mob-search {
    --xo-bg:          #f8f8f2;
    --xo-cream:       #f3f3ea;
    --xo-dark:        #1e2212;
    --xo-olive:       #6b7c3e;
    --xo-olive-mid:   #8a9e50;
    --xo-olive-light: #b5c278;
    --xo-olive-pale:  #e8edcf;
    --xo-border:      #ced6a8;
    --xo-muted:       #7a8660;
    --xo-radius:      999px;
    --xo-nav-h:       76px;
    --xo-mob-h:       64px;
    --font-head:      'Cormorant Garamond', Georgia, serif;
    --font-body:      'Jost', system-ui, sans-serif;
}

/* ───────────────────────────────────────────────
   NAV PRINCIPAL
─────────────────────────────────────────────── */
.xo-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    width: 100%;
    background: #f8f8f2;
    border-bottom: 1px solid rgba(206, 214, 168, 0.6);
    box-shadow: 0 2px 16px rgba(30,34,18,0.06);
    font-family: var(--font-body);
    overflow: visible;
}
.xo-nav.is-scrolled {
    box-shadow: 0 4px 24px rgba(30,34,18,0.10);
}

/* ── LOGO ── */
.xo-logo img { transition: opacity .2s; }
.xo-logo-text { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--xo-dark); letter-spacing: .04em; }

/* ───────────────────────────────────────────────
   BARRA DESKTOP — logo | links | acciones
─────────────────────────────────────────────── */
.xo-bar {
    display: flex;
    align-items: center;
    height: var(--xo-nav-h);
    padding: 0 2.5rem;
    gap: 0;
}

/* Logo — izquierda */
.xo-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-right: auto;
}
.xo-logo a { display: flex; align-items: center; text-decoration: none; }
.xo-logo img { width: var(--xo-logo-w, 160px); height: auto; max-height: 64px; object-fit: contain; }

/* Links — centro */
.xo-nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.xo-nav-item { position: relative; }

.xo-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 18px;
    height: var(--xo-nav-h);
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--xo-dark);
    white-space: nowrap;
    cursor: pointer;
    background: transparent;
    border: none;
    -webkit-appearance: none;
    position: relative;
    transition: color .18s;
}

.xo-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 18px; right: 18px;
    height: 2px;
    background: var(--xo-olive);
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .22s cubic-bezier(.4,0,.2,1);
}
.xo-nav-link:hover::after,
.xo-nav-item.is-open > .xo-nav-link::after { transform: scaleX(1); }
.xo-nav-link:hover,
.xo-nav-item.is-open > .xo-nav-link { color: var(--xo-olive); }

.xo-nav-arrow {
    width: 11px; height: 11px;
    transition: transform .25s cubic-bezier(.4,0,.2,1);
    flex-shrink: 0;
    opacity: .6;
}
.xo-nav-item.is-open > .xo-nav-link .xo-nav-arrow { transform: rotate(180deg); opacity: 1; }

.xo-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

/* ───────────────────────────────────────────────
   BUSCADOR
─────────────────────────────────────────────── */
.xo-search-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 38px;
    padding: 0 14px;
    border: 1.5px solid rgba(30,34,18,.18);
    border-radius: var(--xo-radius);
    background: rgba(255,255,255,.7);
    transition: border-color .2s, background .2s;
    position: relative;
}
.xo-search-wrap { border-color: var(--xo-border); background: rgba(255,255,255,.7); }
.xo-search-wrap svg { color: var(--xo-muted); }
.xo-search-wrap input { color: var(--xo-dark); }
.xo-search-wrap input::placeholder { color: var(--xo-muted); }
.xo-search-wrap:focus-within { border-color: var(--xo-olive-mid) !important; background: #fff; }
.xo-search-wrap svg { width: 14px; height: 14px; color: var(--xo-muted); flex-shrink: 0; }
.xo-search-wrap input {
    border: none; outline: none; background: transparent;
    font-family: var(--font-body); font-size: .8rem;
    color: var(--xo-dark); width: 120px;
}
.xo-search-wrap input::placeholder { color: var(--xo-muted); }

/* ───────────────────────────────────────────────
   ICONO CIRCULAR
─────────────────────────────────────────────── */
.xo-icon-btn {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1.5px solid rgba(30,34,18,.18);
    color: var(--xo-dark);
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    transition: background .18s, border-color .18s, color .18s;
    -webkit-appearance: none;
    flex-shrink: 0;
}
.xo-icon-btn:hover, .xo-icon-btn.is-open { background: rgba(107,124,62,.12); border-color: var(--xo-olive-mid); color: var(--xo-olive) !important; }
.xo-icon-btn svg { width: 18px; height: 18px; }

/* ───────────────────────────────────────────────
   MEGAMENU DROPDOWN
─────────────────────────────────────────────── */
.xo-mega-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid var(--xo-olive-pale);
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(30,34,18,.13), 0 4px 16px rgba(107,124,62,.07);
    z-index: 200;
    animation: megaIn .2s ease;
    overflow: hidden;
}
.xo-nav-item.is-open > .xo-mega-panel { display: block; }

@keyframes megaIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.xo-mega-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 680px;
}
.xo-mega-col { padding: 24px 20px 20px; }
.xo-mega-col + .xo-mega-col {
    border-left: 1px solid var(--xo-olive-pale);
    background: var(--xo-cream);
}
.xo-mega-col-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--xo-dark);
    letter-spacing: .03em;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--xo-olive-pale);
    display: flex;
    align-items: center;
    gap: 8px;
}
.xo-mega-col-title svg { width: 16px; height: 16px; color: var(--xo-olive); }

.xo-mega-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--xo-dark);
    transition: background .14s, transform .1s;
    margin-bottom: 2px;
}
.xo-mega-link:hover { background: var(--xo-olive-pale); transform: translateX(2px); }
.xo-mega-link-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--xo-olive-pale), #d8e0a8);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--xo-border);
}
.xo-mega-link-icon svg { width: 18px; height: 18px; color: var(--xo-olive); }
.xo-mega-link-body { flex: 1; }
.xo-mega-link-name { font-size: .82rem; font-weight: 600; color: var(--xo-dark); display: block; line-height: 1.2; }
.xo-mega-link-desc { font-size: .67rem; color: var(--xo-muted); margin-top: 2px; display: block; }

.xo-mega-footer {
    grid-column: 1 / -1;
    padding: 14px 20px;
    background: linear-gradient(90deg, var(--xo-olive-pale) 0%, #f0f4df 100%);
    border-top: 1px solid var(--xo-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.xo-mega-footer-text {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    color: var(--xo-dark);
}
.xo-mega-footer-text span { color: var(--xo-olive); }
.xo-mega-footer-link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 18px;
    border-radius: var(--xo-radius);
    background: var(--xo-olive);
    color: #fff;
    font-family: var(--font-body);
    font-size: .7rem; font-weight: 700; letter-spacing: .09em;
    text-transform: uppercase; text-decoration: none;
    transition: background .15s;
    white-space: nowrap;
}
.xo-mega-footer-link:hover { background: var(--xo-olive-mid); }
.xo-mega-footer-link svg { width: 13px; height: 13px; }

/* ── Card Laboratorio (megamenu) ── */
.xo-mega-lab {
    position: relative;
    overflow: hidden;
    border-left: 1px solid var(--xo-olive-pale);
    background: #1a2010;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}
.xo-mega-lab::before {
    content: '';
    position: absolute;
    right: -60px; bottom: -60px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107,124,62,.22) 0%, transparent 70%);
    pointer-events: none;
}
.xo-mega-lab::after {
    content: '';
    position: absolute;
    right: -20px; bottom: -20px;
    width: 160px; height: 160px;
    border-radius: 50%;
    border: 1px solid rgba(181,194,120,.18);
    pointer-events: none;
}
.xo-mega-lab-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(107,124,62,.3);
    border: 1px solid rgba(181,194,120,.3);
    border-radius: 999px;
    padding: 4px 12px 4px 8px;
    font-family: var(--font-body);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #b5c278;
    margin-bottom: 18px;
    width: fit-content;
}
.xo-mega-lab-badge svg { width: 12px; height: 12px; color: #b5c278; }
.xo-mega-lab-title {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 400;
    font-style: italic;
    color: #f3f3ea;
    line-height: 1.18;
    letter-spacing: .01em;
    margin-bottom: 10px;
}
.xo-mega-lab-title strong {
    display: block;
    font-style: normal;
    font-weight: 700;
    color: #c8d484;
    font-size: 1.55rem;
}
.xo-mega-lab-desc {
    font-family: var(--font-body);
    font-size: .71rem;
    color: rgba(243,243,234,.55);
    line-height: 1.65;
    margin-bottom: 22px;
    max-width: 200px;
}
.xo-mega-lab-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
}
.xo-mega-lab-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: .7rem;
    color: rgba(243,243,234,.7);
}
.xo-mega-lab-step-num {
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(181,194,120,.35);
    display: flex; align-items: center; justify-content: center;
    font-size: .58rem; font-weight: 700;
    color: #b5c278;
    flex-shrink: 0;
}
.xo-mega-lab-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: var(--xo-radius);
    background: linear-gradient(135deg, #7a9044 0%, #5a6e2e 100%);
    color: #f3f3ea;
    font-family: var(--font-body);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(181,194,120,.25);
    box-shadow: 0 4px 18px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.08);
    transition: background .2s, box-shadow .2s, transform .15s;
    white-space: nowrap;
    width: fit-content;
}
.xo-mega-lab-cta:hover {
    background: linear-gradient(135deg, #8aaa52 0%, #6a8036 100%);
    box-shadow: 0 6px 24px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.12);
    transform: translateY(-1px);
}
.xo-mega-lab-cta svg { width: 14px; height: 14px; }

/* ───────────────────────────────────────────────
   DROPDOWN CUENTA
─────────────────────────────────────────────── */
.xo-dropdown-panel {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: #fff;
    border: 1px solid var(--xo-olive-pale);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(30,34,18,.14), 0 4px 16px rgba(107,124,62,.08);
    z-index: 200;
    animation: xoFadeIn .18s ease;
    overflow: hidden;
}
.xo-nav-item.is-open > .xo-dropdown-panel { display: block; }
@keyframes xoFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.xo-cuenta-panel { width: 280px; padding: 0; }
.xo-cuenta-header {
    padding: 24px 22px 20px; text-align: center;
    background: linear-gradient(160deg, var(--xo-olive-pale) 0%, #f3f3ea 100%);
    border-bottom: 1px solid var(--xo-border);
}
.xo-cuenta-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--xo-olive); color: #fff;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 10px;
    font-family: var(--font-head); font-size: 1.3rem; font-weight: 700;
    border: 2.5px solid #fff; box-shadow: 0 2px 8px rgba(107,124,62,.18);
}
.xo-cuenta-avatar svg { width: 24px; height: 24px; }
.xo-cuenta-name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--xo-dark); line-height: 1.2; }
.xo-cuenta-email { font-size: .72rem; color: var(--xo-muted); margin-top: 2px; }
.xo-cuenta-guest-title { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--xo-dark); margin-bottom: 4px; }
.xo-cuenta-guest-desc { font-size: .74rem; color: var(--xo-muted); line-height: 1.3; }
.xo-cuenta-links { padding: 8px 10px; }
.xo-cuenta-link {
    display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 12px;
    text-decoration: none; color: var(--xo-dark); font-family: var(--font-body); font-size: .82rem; font-weight: 500;
    transition: background .15s, color .15s, transform .1s;
}
.xo-cuenta-link:hover { background: var(--xo-cream); color: var(--xo-olive); transform: translateX(2px); }
.xo-cuenta-link svg { width: 18px; height: 18px; color: var(--xo-muted); flex-shrink: 0; transition: color .15s; }
.xo-cuenta-link:hover svg { color: var(--xo-olive); }
.xo-cuenta-link span { flex: 1; }
.xo-cuenta-sep { border: none; border-top: 1px solid var(--xo-olive-pale); margin: 4px 16px; }
.xo-cuenta-link--logout { color: #b45050; }
.xo-cuenta-link--logout svg { color: #c06060; }
.xo-cuenta-link--logout:hover { background: #fef2f2; color: #991b1b; transform: translateX(2px); }
.xo-cuenta-link--logout:hover svg { color: #991b1b; }
.xo-cuenta-footer { padding: 16px; border-top: 1px solid var(--xo-olive-pale); background: var(--xo-cream); display: flex; flex-direction: column; gap: 8px; }
.xo-cuenta-cta {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 11px 16px; border-radius: 12px; text-decoration: none;
    font-family: var(--font-body); font-size: .74rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase; text-align: center;
    transition: background .18s, color .18s, box-shadow .18s;
}
.xo-cuenta-cta svg { width: 15px; height: 15px; flex-shrink: 0; }
.xo-cuenta-cta--primary { background: var(--xo-olive); color: #fff; box-shadow: 0 2px 8px rgba(107,124,62,.22); }
.xo-cuenta-cta--primary:hover { background: var(--xo-olive-mid); box-shadow: 0 4px 14px rgba(107,124,62,.3); }
.xo-cuenta-cta--secondary { background: #fff; color: var(--xo-olive); border: 1.5px solid var(--xo-border); }
.xo-cuenta-cta--secondary:hover { border-color: var(--xo-olive); background: rgba(107,124,62,.06); }

/* ───────────────────────────────────────────────
   ICONO CARRITO — badge dinámico
─────────────────────────────────────────────── */
.xo-cart-btn { position: relative; }
.xo-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--xo-olive);
    color: #fff;
    font-family: var(--font-body);
    font-size: .58rem;
    font-weight: 700;
    line-height: 17px;
    text-align: center;
    pointer-events: none;
    border: 1.5px solid var(--xo-bg);
    transition: transform .2s cubic-bezier(.34,1.56,.64,1), opacity .15s;
    display: none;
}
.xo-cart-count.has-items { display: block; }
.xo-cart-count.bump { animation: xoCartBump .3s cubic-bezier(.34,1.56,.64,1); }
@keyframes xoCartBump {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.45); }
    100% { transform: scale(1); }
}

/* ───────────────────────────────────────────────
   BARRA MÓVIL
─────────────────────────────────────────────── */
.xo-mob-bar {
    display: none;
    direction: ltr;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: var(--xo-mob-h);
    padding: 0 1.25rem;
}
.xo-mob-left  { display: flex; align-items: center; order: 1; }
.xo-mob-right { display: flex; align-items: center; gap: 6px; order: 2; }
.xo-mob-logo { display: flex; align-items: center; text-decoration: none; }
.xo-mob-logo img { width: var(--xo-logo-w-mob, 120px); height: auto; max-height: 44px; object-fit: contain; }

/* ───────────────────────────────────────────────
   MENÚ MÓVIL PANTALLA COMPLETA
─────────────────────────────────────────────── */
.xo-fullmenu {
    position: fixed; inset: 0;
    width: 100%; height: 100dvh;
    background: #f5f2e8; z-index: 500;
    display: flex; flex-direction: column;
    overflow-y: auto; overscroll-behavior: contain;
    transform: translateY(-100%);
    transition: transform .38s cubic-bezier(.4,0,.2,1);
    will-change: transform; -webkit-overflow-scrolling: touch;
}
.xo-fullmenu.is-open { transform: translateY(0); }

.xo-fm-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; border-bottom: 1px solid var(--xo-olive-pale);
    flex-shrink: 0; position: sticky; top: 0; background: #f5f2e8; z-index: 10;
}
.xo-fm-head img { height: 30px; width: auto; }
.xo-fm-close {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1.5px solid var(--xo-border); background: transparent;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: var(--xo-olive); transition: background .15s, border-color .15s;
}
.xo-fm-close:hover { background: var(--xo-olive-pale); border-color: var(--xo-olive-mid); }
.xo-fm-close svg { width: 16px; height: 16px; }

.xo-fm-search {
    margin: 16px 22px; display: flex; align-items: center; gap: 8px;
    padding: 0 16px; height: 48px; border: 1.5px solid var(--xo-border);
    border-radius: var(--xo-radius); background: #fff; flex-shrink: 0; position: relative;
}
.xo-fm-search:focus-within { border-color: var(--xo-olive-mid); }
.xo-fm-search svg { width: 15px; height: 15px; color: var(--xo-muted); flex-shrink: 0; }
.xo-fm-search input { border: none; outline: none; background: transparent; font-family: var(--font-body); font-size: .86rem; color: var(--xo-olive); flex: 1; }
.xo-fm-search input::placeholder { color: var(--xo-muted); }

.xo-fm-nav { flex: 1; padding: 8px 0 16px; }
.xo-fm-section { font-size: .56rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--xo-olive-mid); padding: 20px 22px 10px; font-family: var(--font-body); display: flex; align-items: center; gap: 10px; }
.xo-fm-section::after { content: ''; flex: 1; height: 1px; background: var(--xo-olive-pale); }

.xo-fm-cards { padding: 0 18px; display: flex; flex-direction: column; gap: 8px; }

.xo-fm-item {
    display: flex; align-items: center; gap: 16px; padding: 14px 16px; border-radius: 16px;
    text-decoration: none; color: var(--xo-dark); font-family: var(--font-body); font-size: .9rem; font-weight: 500;
    transition: background .15s, transform .12s, box-shadow .15s;
    cursor: pointer; background: #fff; border: 1px solid var(--xo-olive-pale);
    width: 100%; text-align: left; box-shadow: 0 1px 4px rgba(107,124,62,.06);
}
.xo-fm-item:hover, .xo-fm-item:active { background: var(--xo-olive-pale); border-color: var(--xo-border); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(107,124,62,.12); }
.xo-fm-item.is-open { background: var(--xo-olive-pale); border-color: var(--xo-border); }
.xo-fm-item-icon { width: 46px; height: 46px; border-radius: 13px; background: linear-gradient(135deg, var(--xo-olive-pale) 0%, #d8e0a8 100%); display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--xo-border); }
.xo-fm-item-icon svg { width: 21px; height: 21px; color: var(--xo-olive); }
.xo-fm-item-text { flex: 1; min-width: 0; }
.xo-fm-item-label { display: block; font-size: .9rem; font-weight: 600; color: var(--xo-dark); line-height: 1.2; }
.xo-fm-item-desc { display: block; font-size: .7rem; color: var(--xo-muted); margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.xo-fm-chevron { display: flex; align-items: center; justify-content: center; transition: transform .25s cubic-bezier(.4,0,.2,1); flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--xo-cream); border: 1px solid var(--xo-olive-pale); }
.xo-fm-chevron svg { width: 13px; height: 13px; color: var(--xo-muted); }
.xo-fm-item.is-open .xo-fm-chevron { transform: rotate(180deg); background: var(--xo-olive); border-color: var(--xo-olive); }
.xo-fm-item.is-open .xo-fm-chevron svg { color: #fff; }
.xo-fm-sub { display: none; margin: 2px 0 4px; border-radius: 14px; overflow: hidden; border: 1px solid var(--xo-olive-pale); background: #fff; }
.xo-fm-sub.is-open { display: block; }
.xo-fm-sub-item { display: flex; align-items: center; gap: 10px; padding: 13px 18px; font-family: var(--font-body); font-size: .84rem; font-weight: 500; color: var(--xo-muted); text-decoration: none; border-bottom: 1px solid var(--xo-olive-pale); transition: color .15s, background .15s, padding-left .15s; }
.xo-fm-sub-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--xo-border); flex-shrink: 0; transition: background .15s; }
.xo-fm-sub-item:last-child { border-bottom: none; }
.xo-fm-sub-item:hover { color: var(--xo-olive); background: var(--xo-olive-pale); padding-left: 22px; }
.xo-fm-sub-item:hover::before { background: var(--xo-olive-mid); }

/* ── Card Laboratorio móvil ── */
.xo-fm-lab-card {
    margin: 8px 18px;
    border-radius: 16px;
    overflow: hidden;
    background: #1a2010;
    border: 1px solid rgba(107,124,62,.3);
    padding: 20px 18px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
}
.xo-fm-lab-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.3); }
.xo-fm-lab-card::before {
    content: '';
    position: absolute; right: -30px; top: -30px;
    width: 120px; height: 120px; border-radius: 50%;
    background: radial-gradient(circle, rgba(107,124,62,.25) 0%, transparent 70%);
    pointer-events: none;
}
.xo-fm-lab-icon {
    width: 46px; height: 46px; border-radius: 13px;
    background: rgba(107,124,62,.25);
    border: 1px solid rgba(181,194,120,.25);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.xo-fm-lab-icon svg { width: 22px; height: 22px; color: #b5c278; }
.xo-fm-lab-text { flex: 1; }
.xo-fm-lab-label { display: block; font-size: .82rem; font-weight: 700; color: #c8d484; font-family: var(--font-body); line-height: 1.2; }
.xo-fm-lab-desc { display: block; font-size: .68rem; color: rgba(243,243,234,.5); margin-top: 3px; font-family: var(--font-body); }
.xo-fm-lab-arrow { color: rgba(181,194,120,.5); flex-shrink: 0; }
.xo-fm-lab-arrow svg { width: 16px; height: 16px; }

.xo-fm-footer { padding: 20px 18px 36px; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--xo-olive-pale); flex-shrink: 0; background: linear-gradient(to bottom, #f5f2e8 0%, #ede9d8 100%); position: sticky; bottom: 0; }
.xo-fm-cta { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 20px; border-radius: 16px; text-align: center; text-decoration: none; font-family: var(--font-body); font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: background .2s, color .2s, box-shadow .2s, transform .15s; }
.xo-fm-cta:active { transform: scale(.98); }
.xo-fm-cta-outline { border: 1.5px solid var(--xo-olive); color: var(--xo-olive); background: #fff; box-shadow: 0 1px 4px rgba(107,124,62,.08); }
.xo-fm-cta-outline:hover { background: var(--xo-olive); color: #fff !important; }
.xo-fm-cta-solid { background: var(--xo-olive); color: #fff; border: 1.5px solid var(--xo-olive); box-shadow: 0 4px 20px rgba(107,124,62,.32); }
.xo-fm-cta-solid:hover { background: var(--xo-olive-mid); border-color: var(--xo-olive-mid); }

/* ── Búsqueda móvil flotante ── */
#xo-mob-search { display: none; position: fixed; top: 0; left: 0; right: 0; background: var(--xo-cream); padding: 14px 18px; box-shadow: 0 4px 24px rgba(30,34,18,.1); z-index: 600; border-bottom: 1px solid var(--xo-border); }
#xo-mob-search.is-open { display: block; }
#xo-mob-search .xo-fm-search { margin: 0; }

/* ───────────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────────── */
@media (max-width: 960px) {
    .xo-bar     { display: none; }
    .xo-mob-bar { display: flex; }
}
@media (min-width: 961px) {
    .xo-mob-bar  { display: none; }
    .xo-fullmenu { display: none !important; }
}
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:16) */
.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-slider (INDEX:17) */
.hero {
    position: relative;
    overflow: hidden;
    background-color: #1a1a1a;
    margin-top: 76px;
  }
  @media (max-width: 960px) {
    .hero { margin-top: 64px; }
  }

  .hero__track {
    display: flex;
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  }

  .hero__slide {
    position: relative;
    flex: 0 0 100%;
    min-height: clamp(520px, 88vh, 900px);
    display: grid;
    place-items: center;
  }

  .hero__image,
  .hero__placeholder-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero__image--placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background-color: #2a2a2a;
  }

  .hero__overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55)),
      rgba(0, 0, 0, var(--hero-overlay, 0.35));
  }

  /* Esquinas decorativas */
  .hero__corner {
    position: absolute;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    z-index: 2;
    pointer-events: none;
  }
  .hero__corner--tl {
    top: 4%;
    left: 3%;
    border-right: 0;
    border-bottom: 0;
  }
  .hero__corner--tr {
    top: 4%;
    right: 3%;
    border-left: 0;
    border-bottom: 0;
  }
  .hero__corner--bl {
    bottom: 4%;
    left: 3%;
    border-right: 0;
    border-top: 0;
  }
  .hero__corner--br {
    bottom: 4%;
    right: 3%;
    border-left: 0;
    border-top: 0;
  }

  .hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 760px;
    padding: 2rem clamp(1.5rem, 5vw, 4rem);
  }

  .hero__subheading {
    font-family: var(--font-primary--family);
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #c9a227;
    margin-block-end: 1.25rem;
  }

  .hero__heading {
    color: #fff;
    margin: 0;
    line-height: 1.05;
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 400;
  }
  .hero__heading--italic {
    font-style: italic;
    color: #b5c25f;
  }

  .hero__divider {
    display: block;
    width: 60px;
    height: 1px;
    background-color: #c9a227;
    margin: 1.75rem auto;
  }

  .hero__text {
    font-family: var(--font-primary--family);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.7;
    margin-block-end: 2rem;
    opacity: 0.95;
  }

  .hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-primary--family);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    padding: 1rem 2.4rem;
    background-color: var(--color-cta-bg);
    border: 1px solid var(--color-cta);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }
  .hero__btn:hover {
    background-color: var(--color-cta-bg-hover);
    border-color: var(--color-cta);
  }

  /* Flechas */
  .hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.15);
    color: #fff;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease;
  }
  .hero__arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
  }
  .hero__arrow--prev {
    left: clamp(1rem, 3vw, 3rem);
  }
  .hero__arrow--next {
    right: clamp(1rem, 3vw, 3rem);
  }

  /* Contador + progreso */
  .hero__counter {
    position: absolute;
    inset-block-end: clamp(1.5rem, 4vh, 3rem);
    inset-inline: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    color: #fff;
  }
  .hero__progress {
    display: block;
    width: 90px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    overflow: hidden;
  }
  .hero__progress-bar {
    display: block;
    width: 0;
    height: 100%;
    background: #c9a227;
    transition: width 0.4s ease;
  }
  .hero__count {
    font-family: var(--font-primary--family);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
  }
  .hero__count-total {
    opacity: 0.6;
  }

  @media (max-width: 700px) {
    .hero__arrow {
      width: 42px;
      height: 42px;
    }
    .hero__corner {
      width: 18px;
      height: 18px;
    }
  }
/* END_SECTION:hero-slider */

/* START_SECTION:inspiraciones (INDEX:18) */
.inspiraciones {
    --insp-olive: #6b7c3e;
    --insp-olive-mid: #8a9e50;
    --insp-pale: #e8edcf;
    --insp-dark: #1e2212;
    --insp-muted: #7a8660;
  }

  /* ── Encabezado centrado con adornos ── */
  .inspiraciones__heading {
    text-align: center;
    margin-block-end: clamp(2.5rem, 5vw, 4rem);
  }
  .inspiraciones__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--insp-olive-mid);
    margin-block-end: 1rem;
  }
  .inspiraciones__eyebrow::before,
  .inspiraciones__eyebrow::after {
    content: '';
    width: clamp(40px, 12vw, 130px);
    height: 1px;
    background: linear-gradient(to var(--_dir, right), transparent, var(--insp-pale));
  }
  .inspiraciones__eyebrow::before { --_dir: left; }
  .inspiraciones__eyebrow-mark {
    color: var(--insp-olive);
    font-size: 0.9rem;
    line-height: 1;
  }
  .inspiraciones__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin: 0;
    color: var(--insp-dark);
  }

  /* ── Grid: 4 desktop (4x1) / 2 móvil (2x2) ── */
  .inspiraciones__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1.5rem, 4vw, 3.5rem) clamp(1rem, 3vw, 2.5rem);
    max-width: 1280px;
    margin-inline: auto;
  }

  .inspiracion-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
  }

  /* ── Imagen cuadrada sin fondo (ligeramente más alta) ── */
  .inspiracion-card__media {
    width: 100%;
    aspect-ratio: 1 / 1.04;
    border-radius: 8px;
    overflow: hidden;
    background-color: transparent;
    margin-block-end: 1.5rem;
    transition: transform 0.4s ease;
  }
  .inspiracion-card:hover .inspiracion-card__media {
    transform: translateY(-4px);
  }
  .inspiracion-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .inspiracion-card:hover .inspiracion-card__image {
    transform: scale(1.06);
  }

  .inspiracion-card__title {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.3;
    margin: 0 0 0.6rem;
    color: var(--insp-dark);
    max-width: 26ch;
  }
  .inspiracion-card__price {
    font-family: var(--font-primary--family);
    font-size: 1rem;
    font-weight: 600;
    color: var(--insp-olive);
    margin: 0;
  }
  .inspiracion-card__currency {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--insp-muted);
    margin-inline-start: 0.2rem;
    letter-spacing: 0.05em;
  }

  .inspiraciones__cta {
    text-align: center;
    margin-block-start: clamp(2.5rem, 5vw, 4rem);
  }

  /* ── Móvil: 2 columnas ── */
  @media (max-width: 749px) {
    .inspiraciones__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem 1rem;
    }
    .inspiracion-card__media { margin-block-end: 1rem; }
    .inspiracion-card__title { font-size: 0.85rem; }
    .inspiracion-card__price { font-size: 0.9rem; }
  }
/* END_SECTION:inspiraciones */

/* START_SECTION:manifiesto (INDEX:19) */
.xo-manifesto {
    background: var(--xo-bone);
    padding: 96px 0 104px;
    position: relative; overflow: hidden;
    border-top: 1px solid var(--xo-rule);
  }
  .xo-fern-bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    pointer-events: none; opacity: .07;
  }
  .xo-manifesto-inner {
    max-width: 1100px; margin: 0 auto; padding: 0 40px;
    position: relative; z-index: 1;
  }
  @media (max-width: 600px) {
    .xo-manifesto { padding: 64px 0 72px; }
    .xo-manifesto-inner { padding: 0 20px; }
  }

  .xo-manifesto-head { text-align: center; margin-bottom: 56px; }
  .xo-manifesto-eyebrow {
    font-family: var(--font-primary--family);
    font-size: 9px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .42em;
    color: var(--xo-caramel); display: block; margin-bottom: 16px;
  }
  .xo-manifesto-title {
    font-family: var(--font-heading--family);
    font-size: clamp(26px, 3.8vw, 42px);
    font-weight: 300; color: var(--xo-brown);
    margin: 0 0 20px; line-height: 1.1; letter-spacing: -.015em;
  }
  .xo-manifesto-rule { width: 36px; height: 1px; background: var(--xo-gold); margin: 0 auto; }

  .xo-pilares-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  @media (max-width: 720px) { .xo-pilares-grid { grid-template-columns: 1fr; gap: 16px; } }

  .xo-pilar-card {
    background: rgba(250,247,242,.9);
    padding: 48px 32px 44px;
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    gap: 20px; border-radius: 6px;
    position: relative; transition: background .3s, box-shadow .3s;
  }
  .xo-pilar-card:hover { background: #fff; box-shadow: 0 8px 32px rgba(107,124,62,.08); }
  @media (max-width: 720px) {
    .xo-pilar-card {
      flex-direction: row; align-items: flex-start;
      text-align: left; padding: 28px 24px; gap: 20px;
    }
  }

  .xo-pilar-num {
    font-family: var(--font-heading--family);
    font-size: 12px; letter-spacing: .2em; color: #c9b898;
    position: absolute; top: 18px; right: 22px;
  }
  .xo-pilar-icon {
    width: 72px; height: 72px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .xo-pilar-icon img {
    width: 64px; height: 64px; object-fit: contain;
    filter: sepia(55%) saturate(55%) hue-rotate(8deg) brightness(.72);
    transition: filter .35s, transform .35s;
  }
  .xo-pilar-card:hover .xo-pilar-icon img {
    filter: sepia(75%) saturate(75%) hue-rotate(8deg) brightness(.58);
    transform: scale(1.1);
  }
  @media (max-width: 720px) {
    .xo-pilar-icon { width: 56px; height: 56px; }
    .xo-pilar-icon img { width: 48px; height: 48px; }
  }

  .xo-pilar-body { display: flex; flex-direction: column; gap: 8px; }
  .xo-pilar-label {
    font-family: var(--font-primary--family);
    font-size: 9.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .2em;
    color: var(--xo-brown2); margin: 0;
  }
  .xo-pilar-desc {
    font-family: var(--font-heading--family);
    font-size: 17.5px; font-weight: 300;
    color: var(--xo-muted); margin: 0; line-height: 1.72;
  }
  @media (max-width: 720px) { .xo-pilar-desc { font-size: 16px; } }
/* END_SECTION:manifiesto */

/* START_SECTION:moleculas-aceites (INDEX:20) */
.xo-moleculas {
    padding: 0 0 100px;
    background: var(--xo-cream);
    border-top: 1px solid var(--xo-rule);
  }

  .xo-mol-strip {
    display: flex; align-items: center; gap: 20px;
    padding: 22px 40px;
    background: var(--xo-cream);
    border-bottom: 1px solid var(--xo-rule);
    margin-bottom: 44px;
  }
  .xo-mol-strip-line { flex: 1; height: 1px; background: rgba(107,82,48,.15); }
  .xo-mol-strip-label {
    font-family: var(--font-primary--family);
    font-size: 8.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .48em;
    color: var(--xo-olive); white-space: nowrap;
  }
  .xo-mol-strip .xo-strip-fern { width: 22px; height: auto; color: var(--xo-gold); flex-shrink: 0; display: block; opacity: .85; }
  @media (max-width: 600px) { .xo-mol-strip { padding: 18px 20px; gap: 14px; } }

  .xo-mol-wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

  .xo-mol-tabs {
    display: flex; align-items: center; justify-content: center;
    gap: 6px; margin-bottom: 40px; flex-wrap: wrap;
  }
  .xo-mol-tab {
    font-family: var(--font-primary--family);
    font-size: 8.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .3em;
    color: var(--xo-olive);
    background: none;
    border: 1px solid rgba(107,82,48,.28);
    padding: 10px 28px; cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
    border-radius: 2px;
  }
  .xo-mol-tab.active, .xo-mol-tab:hover {
    background: var(--xo-olive); color: #fff; border-color: var(--xo-olive);
  }

  .xo-mol-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px; margin-bottom: 60px;
  }
  @media (min-width: 768px) { .xo-mol-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }

  .xo-mol-group { display: none; }
  .xo-mol-group.active { display: contents; }

  .xo-mol-card { position: relative; }
  .xo-mol-img-wrap {
    overflow: hidden; border-radius: 10px;
    aspect-ratio: 1 / 1; background: transparent; position: relative;
  }
  .xo-mol-img-wrap img {
    width: 100%; height: 100%;
    object-fit: contain; display: block;
    transition: transform .42s ease;
  }
  .xo-mol-card:hover .xo-mol-img-wrap img { transform: scale(1.05); }

  .xo-mol-cat-badge {
    position: absolute; top: 12px; left: 12px; z-index: 3;
    font-family: var(--font-primary--family);
    font-size: 7.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .25em;
    color: #fff;
    background: rgba(107,82,48,.72);
    backdrop-filter: blur(4px);
    padding: 4px 10px; border-radius: 2px;
  }

  .xo-mol-info { text-align: center; padding: 16px 6px 6px; }
  .xo-mol-name {
    font-family: var(--font-primary--family);
    font-size: 0.82rem; line-height: 1.4;
    letter-spacing: .07em; text-transform: uppercase;
    font-weight: 700; color: var(--xo-olive2); margin-bottom: 7px;
  }
  .xo-mol-desc {
    font-family: var(--font-primary--family);
    font-size: 0.74rem; line-height: 1.55;
    color: #999; letter-spacing: .01em; margin-bottom: 10px;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
  }
  .xo-mol-price {
    font-family: var(--font-primary--family);
    font-size: 1rem; font-weight: 700;
    color: var(--xo-olive); letter-spacing: .03em;
  }
  .xo-mol-price .xo-mol-note {
    font-size: 0.62rem; letter-spacing: .1em;
    color: #bbb; font-weight: 400;
    text-transform: uppercase; margin-left: 2px;
  }
  @media (max-width: 480px) {
    .xo-mol-name { font-size: 0.78rem; }
    .xo-mol-price { font-size: 0.92rem; }
  }

  .xo-mol-cta {
    display: flex; align-items: center; justify-content: center;
    gap: 20px; padding: 0 4px;
  }
  .xo-mol-cta-line { flex: 1; max-width: 110px; height: 1px; background: rgba(107,82,48,.18); }
  .xo-mol-ver-todo {
    font-family: var(--font-primary--family);
    font-size: 8.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .42em;
    color: var(--xo-olive);
    text-decoration: none; white-space: nowrap;
    display: inline-block; padding: 10px 26px 10px 28px;
    position: relative; transition: color .22s;
  }
  .xo-mol-ver-todo::before {
    content: ''; position: absolute; inset: 0;
    border: 1px solid rgba(107,82,48,.45);
  }
  .xo-mol-ver-todo::after {
    content: ''; position: absolute; inset: 3px;
    border: 0.5px solid rgba(107,82,48,.22);
    transition: border-color .22s;
  }
  .xo-mol-ver-todo:hover { color: #fff; }
  .xo-mol-ver-todo:hover::before { background: var(--xo-olive); border-color: var(--xo-olive); }
  .xo-mol-ver-todo:hover::after { border-color: rgba(255,255,255,.3); }
  .xo-mol-ver-todo span { position: relative; z-index: 1; }
/* END_SECTION:moleculas-aceites */

/* START_SECTION:nuestra-historia (INDEX:21) */
.xo-historia {
    background: var(--xo-cream);
    padding: 0; position: relative; overflow: hidden;
  }

  .xo-hist-strip {
    display: flex; align-items: center; gap: 20px;
    padding: 22px 40px;
    background: var(--xo-cream);
    border-bottom: 1px solid var(--xo-rule);
  }
  .xo-hist-strip-line { flex: 1; height: 1px; background: rgba(107,82,48,.15); }
  .xo-hist-strip-label {
    font-family: var(--font-primary--family);
    font-size: 8.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .48em;
    color: var(--xo-olive); white-space: nowrap;
  }
  .xo-hist-strip .xo-strip-fern { width: 22px; height: auto; color: var(--xo-gold); flex-shrink: 0; display: block; opacity: .85; }
  @media (max-width: 600px) { .xo-hist-strip { padding: 18px 20px; gap: 14px; } }

  .xo-hist-grid {
    display: grid; grid-template-columns: 1fr 1fr; min-height: 520px;
  }
  @media (max-width: 768px) {
    .xo-hist-grid { grid-template-columns: 1fr; min-height: auto; }
    .xo-hist-col-deco { order: 1; min-height: 260px; }
    .xo-hist-col-content { order: 2; }
  }

  .xo-hist-col-deco { position: relative; overflow: hidden; min-height: 320px; }

  .xo-img-slide {
    position: absolute; inset: 0; opacity: 0;
    transition: opacity 1s ease; z-index: 1;
  }
  .xo-img-slide.active { opacity: 1; z-index: 2; }
  .xo-img-slide img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transform: scale(1.04); transition: transform 6s ease;
  }
  .xo-img-slide.active img { transform: scale(1); }
  .xo-img-slide::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(30,24,16,.22) 0%, rgba(30,24,16,.08) 40%, rgba(30,24,16,.55) 100%);
    z-index: 3;
  }

  .xo-deco-place {
    position: absolute; bottom: 28px; left: 36px; z-index: 10;
    display: flex; flex-direction: column; gap: 4px;
  }
  .xo-deco-place-name {
    font-family: var(--font-heading--family);
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 300; color: #fff;
    line-height: 1; letter-spacing: .04em;
    opacity: 0; transform: translateY(8px);
    transition: opacity .6s ease .3s, transform .6s ease .3s;
  }
  .xo-img-slide.active .xo-deco-place-name { opacity: 1; transform: translateY(0); }
  .xo-deco-place-label {
    font-family: var(--font-primary--family);
    font-size: 8px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .38em;
    color: rgba(255,255,255,.65);
    opacity: 0; transform: translateY(6px);
    transition: opacity .6s ease .45s, transform .6s ease .45s;
  }
  .xo-img-slide.active .xo-deco-place-label { opacity: 1; transform: translateY(0); }

  .xo-hist-deco-number {
    font-family: var(--font-heading--family);
    font-size: clamp(100px, 18vw, 200px);
    font-weight: 300; color: rgba(255,255,255,.06);
    line-height: 1; position: absolute; bottom: -20px; right: -10px;
    z-index: 9; pointer-events: none; user-select: none;
  }
  .xo-hist-deco-bar {
    width: 1px; background: var(--xo-gold); height: 80px;
    position: absolute; top: 36px; left: 36px; z-index: 10;
  }
  @media (max-width: 768px) {
    .xo-hist-deco-bar { top: 24px; left: 24px; height: 48px; }
    .xo-deco-place { bottom: 20px; left: 24px; }
  }

  .xo-hist-col-content {
    padding: 64px 56px 64px 52px;
    display: flex; flex-direction: column; justify-content: center;
    background: var(--xo-cream2);
  }
  @media (max-width: 768px) { .xo-hist-col-content { padding: 36px 24px 48px; } }

  .xo-hist-intro-line {
    display: flex; align-items: baseline; gap: 14px;
    flex-wrap: wrap; margin: 0 0 48px;
  }
  .xo-hist-eyebrow-inline {
    font-family: var(--font-primary--family);
    font-size: 9px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .4em;
    color: var(--xo-olive); white-space: nowrap; padding-bottom: 6px;
  }
  .xo-hist-brand-name {
    font-family: var(--font-heading--family);
    font-size: clamp(26px, 5.5vw, 32px);
    font-weight: 300; font-style: italic;
    color: var(--xo-olive); line-height: 1; letter-spacing: .04em;
    text-shadow: 0 2px 18px rgba(107,82,48,.12);
  }
  @media (max-width: 480px) {
    .xo-hist-intro-line { gap: 8px; }
    .xo-hist-brand-name { font-size: clamp(16px, 10vw, 24px); }
  }

  .xo-slides-wrap { position: relative; min-height: 180px; }
  .xo-slide { display: none; animation: xoSlideIn .5s ease forwards; }
  .xo-slide.active { display: block; }
  @keyframes xoSlideIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .xo-slide-num {
    font-family: var(--font-heading--family);
    font-size: 11px; letter-spacing: .22em;
    color: var(--xo-gold); display: block; margin-bottom: 12px;
  }
  .xo-slide-title {
    font-family: var(--font-heading--family);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 400; color: var(--xo-brown);
    margin: 0 0 14px; line-height: 1.25;
  }
  .xo-slide-text {
    font-family: var(--font-heading--family);
    font-size: clamp(16px, 1.8vw, 19px);
    font-weight: 300; color: var(--xo-muted);
    line-height: 1.78; margin: 0; max-width: 480px;
  }
  .xo-slide-text strong { font-weight: 600; color: var(--xo-brown2); }

  .xo-hist-nav {
    display: flex; align-items: center; gap: 24px;
    margin-top: 40px; padding-top: 28px;
    border-top: 1px solid rgba(107,82,48,.15);
  }
  .xo-nav-dots { display: flex; align-items: center; gap: 9px; }
  .xo-dot {
    width: 6px; height: 6px; border-radius: 999px;
    background: rgba(107,82,48,.2);
    cursor: pointer; border: none; padding: 0;
    transition: width .35s cubic-bezier(.4,0,.2,1), background .3s;
  }
  .xo-dot:hover { background: rgba(107,82,48,.4); }
  .xo-dot.active {
    width: 26px;
    background: linear-gradient(90deg, var(--xo-olive), var(--xo-gold));
  }

  .xo-hist-progress {
    flex: 1; height: 3px; border-radius: 999px;
    background: rgba(107,82,48,.16);
    position: relative; overflow: hidden;
  }
  .xo-hist-prog-fill {
    position: absolute; left: 0; top: 0; height: 100%; border-radius: 999px;
    background: linear-gradient(90deg, var(--xo-olive), var(--xo-gold));
    transition: width .55s cubic-bezier(.4,0,.2,1);
  }

  .xo-nav-btns { display: flex; gap: 12px; }
  .xo-historia .xo-nav-btn {
    width: 42px !important; height: 42px !important;
    min-width: 42px; min-height: 42px;
    border-radius: 50% !important;
    border: 1.5px solid var(--xo-olive);
    background: #fff;
    color: var(--xo-olive);
    padding: 0 !important;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
    -webkit-appearance: none; appearance: none;
    transition: border-color .3s, color .3s, box-shadow .3s, transform .3s, background .3s;
  }
  .xo-historia .xo-nav-btn:hover {
    border-color: var(--xo-olive);
    background: var(--xo-olive);
    color: #fff;
    box-shadow: 0 4px 14px rgba(107,124,62,.18);
    transform: translateY(-1px);
  }
  .xo-historia .xo-nav-btn:active { transform: translateY(0); }
  .xo-nav-btn .xo-nav-ico {
    width: 16px !important;
    height: 16px !important;
    flex: 0 0 auto;
    display: block;
    max-width: none;
  }
/* END_SECTION:nuestra-historia */

/* START_SECTION:product (INDEX:24) */
.xo-product {
    background: transparent;
    padding: 0 0 90px;
    border-top: 1px solid var(--xo-rule);
  }

  /* ── Strip superior ── */
  .xo-prod-strip {
    display: flex; align-items: center; gap: 20px;
    padding: 20px 40px;
    background: transparent;
    border-bottom: 1px solid var(--xo-rule);
    margin-bottom: 56px;
  }
  .xo-prod-strip-line { flex: 1; height: 1px; background: rgba(107,82,48,.15); }
  .xo-prod-strip-label {
    font-family: var(--font-primary--family);
    font-size: 8.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .48em;
    color: var(--xo-olive); white-space: nowrap;
  }
  .xo-prod-strip .xo-strip-fern { width: 22px; height: auto; color: var(--xo-gold); flex-shrink: 0; opacity: .85; }
  @media (max-width: 600px) { .xo-prod-strip { padding: 16px 20px; gap: 14px; margin-bottom: 36px; } }

  .xo-prod-wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
  @media (max-width: 600px) { .xo-prod-wrap { padding: 0 20px; } }

  .xo-prod-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  @media (max-width: 600px) { .xo-prod-layout { gap: 28px; } }
  @media (min-width: 900px) {
    .xo-prod-layout { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  }

  /* ── Galería ── */
  .xo-prod-gallery { position: relative; }
  @media (min-width: 900px) { .xo-prod-gallery { position: sticky; top: 32px; } }

  .xo-prod-main-media {
    border-radius: 10px;
    overflow: hidden;
    background: transparent;
    aspect-ratio: 1 / 1;
  }
  .xo-prod-main-img {
    width: 100%; height: 100%;
    object-fit: contain; display: block;
  }

  .xo-prod-thumbs {
    display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap;
  }
  .xo-prod-thumb {
    width: 64px; height: 64px; padding: 0;
    border: 1px solid var(--xo-rule); border-radius: 6px;
    background: transparent; cursor: pointer; overflow: hidden;
    transition: border-color .2s;
  }
  .xo-prod-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
  .xo-prod-thumb.active, .xo-prod-thumb:hover { border-color: var(--xo-olive); }

  /* ── Ficha ── */
  .xo-prod-familia {
    font-family: var(--font-primary--family);
    font-size: 8.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .35em;
    color: var(--xo-gold); margin-bottom: 14px;
  }

  .xo-prod-title {
    font-family: var(--font-heading--family);
    font-weight: var(--font-heading--weight);
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    line-height: 1.1; letter-spacing: .01em;
    color: var(--xo-brown); margin: 0 0 18px;
  }

  .xo-prod-price {
    display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px;
    margin-bottom: 6px;
  }
  .xo-prod-price-now {
    font-family: var(--font-primary--family);
    font-size: 1.5rem; font-weight: 700;
    color: var(--xo-olive); letter-spacing: .02em;
  }
  .xo-prod-price-was {
    font-family: var(--font-primary--family);
    font-size: 1rem; color: var(--xo-muted);
    text-decoration: line-through;
  }
  .xo-prod-currency {
    font-family: var(--font-primary--family);
    font-size: 0.62rem; letter-spacing: .14em;
    color: var(--xo-muted); text-transform: uppercase;
  }
  .xo-prod-badge {
    font-family: var(--font-primary--family);
    font-size: 7.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .2em;
    padding: 3px 9px; border-radius: 2px; color: #fff;
  }
  .xo-prod-badge--sale { background: var(--xo-gold); }

  .xo-prod-volumen {
    font-family: var(--font-primary--family);
    font-size: 0.78rem; letter-spacing: .08em;
    color: var(--xo-muted); margin-bottom: 26px;
  }

  /* ── Formulario ── */
  .xo-prod-form { margin: 28px 0 4px; }

  .xo-prod-variants { margin-bottom: 22px; }
  .xo-prod-option { margin-bottom: 16px; }
  .xo-prod-option-label {
    display: block;
    font-family: var(--font-primary--family);
    font-size: 8px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .28em;
    color: var(--xo-olive); margin-bottom: 9px;
  }
  .xo-prod-swatches { display: flex; gap: 8px; flex-wrap: wrap; }
  .xo-prod-swatch {
    font-family: var(--font-primary--family);
    font-size: 0.78rem; letter-spacing: .04em;
    color: var(--xo-brown);
    background: #fff;
    border: 1px solid rgba(107,82,48,.28);
    padding: 9px 18px; cursor: pointer; border-radius: 999px;
    transition: background .2s, color .2s, border-color .2s;
  }
  .xo-prod-swatch.active, .xo-prod-swatch:hover {
    background: var(--xo-olive); color: #fff; border-color: var(--xo-olive);
  }

  .xo-prod-buy-row {
    display: flex; gap: 12px; align-items: stretch; margin-bottom: 14px;
  }

  .xo-prod-qty {
    display: flex; align-items: center;
    border: 1px solid rgba(107,82,48,.28);
    border-radius: 999px; overflow: hidden; background: #fff;
  }
  .xo-prod-qty-btn {
    width: 40px; align-self: stretch;
    font-size: 1.1rem; color: var(--xo-olive);
    background: none; border: none; cursor: pointer;
    transition: background .2s;
  }
  .xo-prod-qty-btn:hover { background: var(--xo-cream2); }
  .xo-prod-qty-input {
    width: 46px; text-align: center; border: none;
    font-family: var(--font-primary--family);
    font-size: 0.9rem; color: var(--xo-brown); background: none;
    -moz-appearance: textfield;
  }
  .xo-prod-qty-input::-webkit-outer-spin-button,
  .xo-prod-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

  .xo-prod-add {
    flex: 1;
    font-family: var(--font-primary--family);
    font-size: 9px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .3em;
    color: var(--xo-olive); background: #fff;
    border: 1px solid var(--xo-olive); border-radius: 999px;
    padding: 14px 20px; cursor: pointer;
    transition: background .22s, border-color .22s, color .22s;
  }
  .xo-prod-add:hover:not(:disabled) { background: var(--xo-olive); color: #fff; }
  .xo-prod-add:disabled { background: var(--xo-muted); border-color: var(--xo-muted); color: #fff; cursor: not-allowed; opacity: .7; }

  .xo-prod-buy-now {
    width: 100%;
    font-family: var(--font-primary--family);
    font-size: 9px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .3em;
    color: #fff; background: var(--xo-olive);
    border: 1px solid var(--xo-olive); border-radius: 999px;
    padding: 14px 20px; cursor: pointer; margin-bottom: 14px;
    transition: background .22s, border-color .22s, color .22s;
  }
  .xo-prod-buy-now:hover:not(:disabled) { background: #fff; color: var(--xo-olive); }
  .xo-prod-buy-now:disabled { background: var(--xo-muted); border-color: var(--xo-muted); color: #fff; cursor: not-allowed; opacity: .7; }

  .xo-prod-stock {
    display: flex; align-items: center; gap: 7px;
    font-family: var(--font-primary--family);
    font-size: 0.72rem; letter-spacing: .04em;
    color: var(--xo-muted); margin-bottom: 30px;
  }
  .xo-prod-stock-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--xo-olive); display: inline-block;
  }
  .xo-prod-stock-dot--out { background: #b5523f; }

  /* ── Nota olfativa ── */
  .xo-prod-nota {
    border-top: 1px solid var(--xo-rule);
    border-bottom: 1px solid var(--xo-rule);
    padding: 24px 0; margin-bottom: 28px;
  }
  .xo-prod-nota-head {
    display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
  }
  .xo-prod-nota-head .xo-strip-fern { width: 20px; height: auto; color: var(--xo-gold); flex-shrink: 0; }
  .xo-prod-nota-head span {
    font-family: var(--font-primary--family);
    font-size: 8.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .35em;
    color: var(--xo-olive);
  }
  .xo-prod-nota-text {
    font-family: var(--font-primary--family);
    font-size: 0.92rem; line-height: 1.7;
    color: var(--xo-brown); font-style: italic;
  }

  /* ── Descripción ── */
  .xo-prod-desc {
    font-family: var(--font-primary--family);
    font-size: 0.92rem; line-height: 1.75;
    color: var(--xo-brown2); margin-bottom: 30px;
  }
  .xo-prod-desc p { margin: 0 0 1em; }
  .xo-prod-desc p:last-child { margin-bottom: 0; }

  /* ── Garantías ── */
  .xo-prod-trust {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 12px;
    border-top: 1px solid var(--xo-rule); padding-top: 24px;
  }
  .xo-prod-trust-item { display: flex; align-items: center; gap: 12px; }
  .xo-prod-trust-mark .xo-strip-fern { width: 18px; height: auto; color: var(--xo-gold); }
  .xo-prod-trust-text {
    font-family: var(--font-primary--family);
    font-size: 0.78rem; letter-spacing: .03em;
    color: var(--xo-muted);
  }

  /* ── Sugerencias ── */
  .xo-prod-recs { max-width: 1100px; margin: 80px auto 0; padding: 0 24px; }
  .xo-prod-recs-strip {
    display: flex; align-items: center; gap: 20px; margin-bottom: 40px;
  }
  .xo-prod-recs-strip .xo-prod-strip-line { flex: 1; height: 1px; background: rgba(107,82,48,.15); }
  .xo-prod-recs-strip .xo-prod-strip-label {
    font-family: var(--font-primary--family);
    font-size: 8.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .48em;
    color: var(--xo-olive); white-space: nowrap;
  }
  .xo-prod-recs-strip .xo-strip-fern { width: 22px; height: auto; color: var(--xo-gold); flex-shrink: 0; opacity: .85; }

  .xo-prod-recs-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem 1.5rem;
  }

  .xo-rec-card { display: flex; flex-direction: column; min-width: 0; }

  .xo-rec-card-link {
    display: block; text-decoration: none; color: inherit; flex: 1;
  }
  .xo-rec-card-media {
    position: relative; aspect-ratio: 1 / 1; overflow: hidden;
    background: transparent; border-radius: 4px; margin-bottom: 0.6rem;
    border: 2px solid transparent; padding: 2px;
  }
  .xo-rec-card-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s ease;
  }
  .xo-rec-card-link:hover .xo-rec-card-img { transform: scale(1.04); }

  .xo-rec-card-info { text-align: center; padding: 0 0.25rem; }
  .xo-rec-card-type {
    font-size: 0.65rem; letter-spacing: .1em;
    color: var(--xo-muted); margin: 0 0 0.25rem;
    text-transform: uppercase;
  }
  .xo-rec-card-title {
    font-family: 'Montserrat', var(--font-heading--family), sans-serif;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: .05em; color: var(--xo-olive);
    margin: 0 0 0.4rem; line-height: 1.3;
  }
  .xo-rec-card-price {
    font-family: 'Montserrat', var(--font-primary--family), sans-serif;
    font-size: 0.78rem; font-weight: 500;
    color: var(--xo-brown); margin: 0 0 0.65rem;
  }
  .xo-rec-card-btn {
    display: block; width: 100%; margin-top: 0.5rem;
    border: 1px solid var(--xo-olive); background: transparent;
    color: var(--xo-olive);
    font-family: 'Montserrat', var(--font-primary--family), sans-serif;
    font-size: 0.62rem; font-weight: 500;
    letter-spacing: .1em; padding: 0.45rem 1rem;
    border-radius: 6px; cursor: pointer;
    transition: background .2s, color .2s;
  }
  .xo-rec-card-btn:hover { background: var(--xo-olive); color: #fff; }

  /* En móvil: el JS recorta a N tarjetas; mostramos una rejilla de 2 columnas limpia */
  @media (max-width: 767px) {
    .xo-prod-recs { margin-top: 56px; padding: 0 20px; }
    .xo-prod-recs-strip { gap: 12px; margin-bottom: 28px; }
    .xo-prod-recs-strip .xo-prod-strip-label { letter-spacing: .3em; font-size: 8px; }
    .xo-prod-recs-grid {
      grid-template-columns: repeat(var(--recs-mobile-cols, 2), 1fr);
      gap: 1.5rem 0.75rem;
    }
    .xo-rec-card-media { aspect-ratio: 1 / 1; }
    .xo-rec-card-btn { font-size: 0.55rem; padding: 0.3rem 0.4rem; letter-spacing: .05em; }
    .xo-rec-card-title { font-size: 0.62rem; }
    .xo-rec-card-price { font-size: 0.68rem; }
  }

  /* ── Drawer Quick-Add ── */
  .xo-qa-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.45); z-index: 900;
  }
  .xo-qa-overlay.open { display: block; }
  .xo-qa-drawer {
    position: fixed; top: 0; right: 0;
    width: min(480px, 100vw); height: 100%;
    background: #fff; z-index: 901;
    display: flex; flex-direction: column;
    transform: translateX(100%); transition: transform .3s ease; overflow: hidden;
  }
  .xo-qa-drawer.open { transform: translateX(0); }
  .xo-qa-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 1.5rem; border-bottom: 1px solid #e8e8e8; flex-shrink: 0;
  }
  .xo-qa-title {
    font-family: 'Montserrat', sans-serif; font-size: .8rem; font-weight: 700;
    letter-spacing: .12em; color: #222;
  }
  .xo-qa-close {
    background: none; border: none; font-size: 1.1rem;
    cursor: pointer; color: #666; padding: .25rem; line-height: 1;
  }
  .xo-qa-close:hover { color: #000; }
  .xo-qa-body { flex: 1; overflow-y: auto; padding: 1.5rem; }
  .xo-qa-img-wrap {
    width: 100%; aspect-ratio: 1 / 1; overflow: hidden;
    border-radius: 6px; margin-bottom: 1.5rem;
    background: var(--xo-cream2, #efeee4);
  }
  .xo-qa-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
  .xo-qa-option-label {
    font-family: 'Montserrat', sans-serif; font-size: .72rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase; color: #333; margin: 0 0 .6rem;
  }
  .xo-qa-option-label span { color: #c00; }
  .xo-qa-variants { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.25rem; }
  .xo-qa-variant-btn {
    border: 1px solid #ccc; background: #fff; padding: .45rem 1rem;
    font-family: 'Montserrat', sans-serif; font-size: .7rem; font-weight: 500;
    letter-spacing: .06em; border-radius: 4px; cursor: pointer;
    transition: border-color .2s, background .2s, color .2s;
  }
  .xo-qa-variant-btn:hover, .xo-qa-variant-btn.selected {
    border-color: var(--xo-olive); background: var(--xo-olive); color: #fff;
  }
  .xo-qa-variant-btn:disabled { opacity: .35; cursor: not-allowed; }
  .xo-qa-row {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 1rem; margin-bottom: 1.25rem;
  }
  .xo-qa-price-wrap { display: flex; flex-direction: column; gap: .15rem; }
  .xo-qa-price-label {
    font-family: 'Montserrat', sans-serif; font-size: .65rem; font-weight: 700;
    letter-spacing: .1em; color: #888; text-transform: uppercase;
  }
  .xo-qa-price { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--xo-olive); }
  .xo-qa-qty-wrap { display: flex; flex-direction: column; gap: .15rem; align-items: flex-end; }
  .xo-qa-qty-label {
    font-family: 'Montserrat', sans-serif; font-size: .65rem; font-weight: 700;
    letter-spacing: .1em; color: #888; text-transform: uppercase;
  }
  .xo-qa-qty { display: flex; align-items: center; border: 1px solid #ddd; border-radius: 4px; overflow: hidden; }
  .xo-qa-qty button {
    width: 2rem; height: 2rem; background: none; border: none;
    font-size: 1rem; cursor: pointer; color: #444; transition: background .15s;
  }
  .xo-qa-qty button:hover { background: #f0f0f0; }
  .xo-qa-qty input {
    width: 2.5rem; text-align: center; border: none;
    border-left: 1px solid #ddd; border-right: 1px solid #ddd;
    font-family: 'Montserrat', sans-serif; font-size: .85rem; font-weight: 500;
    padding: 0; height: 2rem; outline: none;
  }
  .xo-qa-stock {
    font-family: 'Montserrat', sans-serif; font-size: .72rem; font-weight: 500;
    color: var(--xo-olive); margin-bottom: 1rem;
  }
  .xo-qa-stock.out { color: #c00; }
  .xo-qa-add-btn {
    display: block; width: 100%; padding: 1rem;
    background: var(--xo-olive); color: #fff; border: none; border-radius: 4px;
    font-family: 'Montserrat', sans-serif; font-size: .78rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase; cursor: pointer; transition: background .2s;
  }
  .xo-qa-add-btn:hover { background: var(--xo-olive2, #55642f); }
  .xo-qa-add-btn:disabled { opacity: .5; cursor: not-allowed; }
  .xo-qa-loading { text-align: center; padding: 3rem 0; color: #999; font-family: 'Montserrat', sans-serif; font-size: .8rem; }
  .xo-qa-error { text-align: center; padding: 2rem 0; color: #c00; font-family: 'Montserrat', sans-serif; font-size: .8rem; }

  /* ── Ajustes generales para móvil del cuerpo del producto ── */
  @media (max-width: 600px) {
    .xo-product { padding-bottom: 60px; }

    /* Galería: limita la altura para que la imagen no domine la pantalla */
    .xo-prod-main-media {
      aspect-ratio: auto;
      height: 46vh;
      max-height: 420px;
      margin: 0 auto;
    }
    .xo-prod-main-img { object-fit: contain; }
    .xo-prod-thumbs { gap: 8px; justify-content: center; }
    .xo-prod-thumb { width: 56px; height: 56px; }

    /* Ficha */
    .xo-prod-title { font-size: clamp(1.6rem, 7vw, 2rem); margin-bottom: 14px; }
    .xo-prod-price-now { font-size: 1.35rem; }
    .xo-prod-volumen { margin-bottom: 22px; }
    .xo-prod-form { margin-top: 22px; }

    /* Fila de compra: que el botón nunca quede comprimido junto al qty */
    .xo-prod-buy-row { flex-wrap: wrap; }
    .xo-prod-qty { flex: 0 0 auto; }
    .xo-prod-add { flex: 1 1 60%; min-width: 160px; }

    .xo-prod-swatch { padding: 9px 16px; }
  }
/* END_SECTION:product */

/* START_SECTION:search (INDEX:25) */
.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 */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:26) */
.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:27) */
.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:29) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */