
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
font-family: "organetto-variable", sans-serif;
font-variation-settings: "wght" 30, "wdth" 80;
letter-spacing: 2px;
font-size:10px;
}

/* Evita overflow horizontal por medios embebidos en vistas */
img, video, iframe {
  max-width: 100%;
}
img, video {
  height: auto;
}
:root {
        --paper: #f3f3f1;
      }

      .navbar-dirtea {
        background: #f1f0ed;
        border-bottom: 1px solid #eee;
      }
      .navbar-dirtea .nav-link {
        font-weight: 600;
        letter-spacing: 0.02em;
      }

      /* Mega */
      .dropdown-mega {
        position: static;
        margin-left:25px;
      }
      .dropdown-menu-mega {
        left: 0;
        right: 0;
        top: 100%;
        border: 0;
        border-radius: 0;
        padding: 0;
        margin-top: 0;
        background: #d9c9bc;
        box-shadow: 0 22px 60px rgba(0, 0, 0, 0.15);
      }
      .mega-wrap {
        display: flex;
        gap: 24px;
        padding: 22px;
      }
      .mega-aside {
        width: 200px;
        min-width: 200px;
      }
      .mega-group {
        background: #e9e1de;

        border-radius:5px;
       
        overflow: hidden;
      }
      .mega-title {

        align-items: center;
        padding: 15px 26px;
        font-weight: 800;
        cursor: pointer;
        user-select: none;
      }
      .mega-title:hover {
        background: #f7f7f7;
      }
      .mega-title.active {
        background: #d9c9bc;
        color: #fff;
      }
      .mega-cta {
        display: block;
        margin-top: 12px;
        padding: 0.9rem 1.2rem;
        text-align: center;
        font-weight: 800;
        background: #e9e1de;
        color: #625042;
        text-decoration: none;
      }
      .mega-cta:hover {
        color: #e9e1de;
        background: #625042;
        filter: brightness(1.05);
      }

      .mega-panel {
        flex: 1;
        min-width: 0;
      }
      .mega-card {
        background: #e9e1de;
        border-radius: 12px;
        overflow: hidden;
        height: 100%;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        border: 0;
      }
      .mega-card img {
        width: 100%;
        aspect-ratio: 16/12;
        object-fit: cover;
      }
      .mega-card .card-title {
        font-weight: 800;
        margin-bottom: 0.25rem;
      }
      .mega-card .card-text {
        color: #6c757d;
        font-size: 0.925rem;
      }

      /* Hover abre en desktop */
      @media (min-width: 992px) {
        .dropdown-mega:hover > .dropdown-menu-mega {
          display: block;
        }
      }
      /* Top bar */
      .topbar {
        background: var(--accent);
        color: var(--brand-2);
        font-size: 0.875rem;
      }
      .topbar a {
        color: #fff;
        opacity: 0.9;
      }
      .topbar a:hover {
        opacity: 1;
      }
      /* ==== MOBILE MENU (tipo DIRTEA) ==== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #f5f3ee;
  z-index: 1050;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid #ddd;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mobile-menu-header .mobile-logo {
  font-size: 20px;
}

.mobile-menu-header button,
.mobile-menu-header a {
  background: none;
  border: 0;
  padding: 0;
  font-size: 22px;
  line-height: 1;
}

.mobile-menu-body {
  padding: 8px 0 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* items principales */
.mobile-menu-item,
.mobile-accordion-btn {
  width: 100%;
  padding: 14px 18px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #e0ded8;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* icono + / - / > */
.mobile-accordion-btn .icon {
  font-size: 18px;
}

/* panel interno acordeón */
.mobile-accordion-panel {
  display: none;
  padding: 10px 18px 18px;
  border-bottom: 1px solid #e0ded8;
  background: #f9f7f2;
}

/* grid interno como en mega */
.mobile-accordion-panel .card.mega-card {
  box-shadow: none;
  border: 0;
  border-radius: 0;
}
.mobile-accordion-panel .card.mega-card img {
  aspect-ratio: 4/3;
}

/* footer (login / refer a friend) */
.mobile-menu-footer {
  padding: 14px 18px 24px;
  border-top: 1px solid #ddd;
}
.mobile-menu-footer a {
  display: block;
  text-decoration: none;
  color: #111;
  margin-bottom: 6px;
}

/* Hamburguesa del nav (tres líneas) */
.navbar-toggler.custom-burger {
  border: 0;
  padding: 0.25rem 0;
}
.navbar-toggler.custom-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #111;
  margin-bottom: 4px;
}

/* Desktop: todo normal como ya lo tienes */
@media (min-width: 992px) {
  .mobile-menu {
    display: none;
  }
}

/* Ocultar el collapse en móvil: usaremos el panel custom */
@media (max-width: 991.98px) {
  #navMain {
    display: none !important;
  }
}


      .hero-video {
        position: relative;
        height: 100vh;
        width: 100%;
        overflow: hidden;
      }

      .hero-bg {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        z-index: 0;
        object-fit: cover;
      }

      .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(196, 184, 170, .40); /* oscurece el video */
        z-index: 1;
      }

      .hero-content {
        position: relative;
        z-index: 2;
        color: #fff;
        top: 50%;
        transform: translateY(-50%);
        padding: 0 20px;
      }

      /* Brands */
      .brand-logo {
        height: 28px;
        object-fit: contain;
        opacity: 0.9;
      }

      /* Big Offers */
      .big-offers {
        background: #f7f8fa;
      }
      .check-dot {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: inline-block;
        flex: 0 0 22px;
        background: #0d6efd; /* puedes cambiar por tu primario */
        position: relative;
      }
      .check-dot::after {
        content: "";
        position: absolute;
        inset: 0;
        background: conic-gradient(from 0turn, #0d6efd 0 100%);
        -webkit-mask: radial-gradient(
              circle at 30% 45%,
              transparent 55%,
              #000 56%
            )
            top left/50% 50% no-repeat,
          radial-gradient(circle at 70% 65%, #000 40%, transparent 41%) bottom
            right/50% 50% no-repeat;
        mask: radial-gradient(circle at 30% 45%, transparent 55%, #000 56%) top
            left/50% 50% no-repeat,
          radial-gradient(circle at 70% 65%, #000 40%, transparent 41%) bottom
            right/50% 50% no-repeat;
      }
      .stars {
        letter-spacing: 2px;
        color: #0a0a0a;
        font-size: 18px;
      }

      /* Product scroller */
      .product-scroller {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(260px, 1fr);
        gap: 18px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 6px;
      }
      .product-scroller::-webkit-scrollbar {
        height: 8px;
      }
      .product-scroller::-webkit-scrollbar-thumb {
        background: #d2d6dc;
        border-radius: 10px;
      }

      .product-card {
        position: relative;
        background: #fff;
        border-radius: 10px;
        border: 1px solid #e6e7ea;
        overflow: hidden;
        scroll-snap-align: start;
        transition: transform 0.15s ease, box-shadow 0.15s ease;
      }
      .product-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
      }

      .product-media {
        margin: 0;
        background: #efefef;
        aspect-ratio: 4/3;
        display: block;
        overflow: hidden;
      }
      .product-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .product-body {
        padding: 16px;
      }
      .prices .old {
        text-decoration: line-through;
        color: #8b8f99;
        margin-right: 8px;
      }
      .prices .new {
        font-weight: 700;
      }

      .badge-off {
        position: absolute;
        top: 14px;
        right: 14px;
        background: #ecff7a;
        color: #000;
        font-weight: 700;
        font-size: 0.85rem;
        padding: 0.25rem 0.6rem;
        border-radius: 20px;
      }

      /* Next arrow */
      .slider-next {
        position: absolute;
        right: -8px;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2;
      }

      /* Desktop layout: 3 cards visibles */
      @media (min-width: 992px) {
        .product-scroller {
          grid-template-columns: repeat(3, 1fr);
          grid-auto-flow: initial;
          grid-auto-columns: initial;
          overflow-x: visible;
        }
        .slider-next {
          display: none !important;
        }
      }

      /* --- Marquee infinito --- */
      .brands-strip {
        background: #fff;
      } /* cámbialo si lo prefieres */
      .brand-logo {
        height: 45px;
        object-fit: contain;
        margin: 0 32px;
        opacity: 0.9;
        flex: 0 0 auto;
      }

      .marquee {
        position: relative;
        overflow: hidden;
        width: 100%;
      }
      .marquee-track {
        display: flex;
        align-items: center;
        width: max-content; /* el track mide lo que sus hijos */
        animation: marquee-scroll var(--marquee-speed, 28s) linear infinite;
        will-change: transform;
      }
      .marquee:hover .marquee-track {
        animation-play-state: paused;
      } /* pausa al hover */

      /* Velocidad y separación responsive */
      @media (max-width: 992px) {
        .brand-logo {
          margin: 0 24px;
        }
        .marquee-track {
          animation-duration: var(--marquee-speed-md, 24s);
        }
      }
      @media (max-width: 576px) {
        .brand-logo {
          margin: 0 18px;
          height: 24px;
        }
        .marquee-track {
          animation-duration: var(--marquee-speed-sm, 20s);
        }
      }

      /* Respeta usuarios con reduce motion */
      @media (prefers-reduced-motion: reduce) {
        .marquee-track {
          animation: none;
        }
      }

      /* Animación: mueve todo el track hacia la izquierda 50% (porque duplicamos el contenido) */
      @keyframes marquee-scroll {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-50%);
        }
      }

      /* --- Cards base --- */
      .section-tiles {
        background: #fff;
      }
      .product-tile {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        background: #e9e1de;
        min-height: 460px; /* ajusta la altura */
      }
      .product-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
      }
      .product-bg img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.35s ease, transform 0.35s ease;
      }
      .product-bg img.primary {
        opacity: 1;
        transform: scale(1.02);
      }
      .product-bg img.hover {
        opacity: 0;
        transform: scale(1.06);
      }

      /* Texto encima */
      .product-overlay {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 18px;

        color: #000;
      }
      .product-info .prices .old {
        text-decoration: line-through;
        opacity: 0.7;
        margin-right: 8px;
      }
      .product-info .prices .new {
        font-weight: 700;
      }

      /* CTA oculto hasta hover */
      .product-actions {
        display: flex;
        justify-content: flex-end;
      }
      .product-actions .btn {
        opacity: 0;
        transform: translateY(8px) scale(0.98);
        transition: all 0.25s ease;
      }

      /* Badge */
      .badge-off {
        position: absolute;
        top: 14px;
        right: 14px;
        z-index: 3;
        background: #ecff7a;
        color: #000;
        font-weight: 700;
        font-size: 0.85rem;
        padding: 0.25rem 0.6rem;
        border-radius: 20px;
        border: 1px solid rgba(0, 0, 0, 0.05);
      }

      /* Hover: swap imagen y muestra CTA */
      .product-tile:hover .product-bg img.primary {
        opacity: 0;
        transform: scale(1.02);
      }
      .product-tile:hover .product-bg img.hover {
        opacity: 1;
        transform: scale(1);
      }
      .product-tile:hover .product-actions .btn {
        opacity: 1;
        transform: translateY(0) scale(1);
      }

      /* Accesibilidad en teclado */
      .product-tile:focus-within .product-bg img.primary {
        opacity: 0;
      }
      .product-tile:focus-within .product-bg img.hover {
        opacity: 1;
      }
      .product-tile:focus-within .product-actions .btn {
        opacity: 1;
        transform: none;
      }

      /* Responsive */
      @media (max-width: 576px) {
        .product-tile {
          min-height: 380px;
        }
      }

      .product-tile.is-touch-hover .product-bg img.primary {
        opacity: 0;
      }
      .product-tile.is-touch-hover .product-bg img.hover {
        opacity: 1;
      }
      .product-tile.is-touch-hover .product-actions .btn {
        opacity: 1;
        transform: none;
      }
      /* Fondo oscuro de la sección (como en la referencia) */
      .four-pillars {
        background: #e9e1de;
      }

      /* Card base */
      .pillar-card {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        min-height: 420px;
        background: #111;
        isolation: isolate;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
      }
      .pillar-card img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.03);
        filter: brightness(0.9);
        transition: transform 0.5s ease, filter 0.5s ease;
      }

      /* Overlay con gradiente inferior para leer textos */
      .pillar-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        z-index: 1;
        color: #fff;
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.55) 0%,
          rgba(0, 0, 0, 0.25) 35%,
          rgba(0, 0, 0, 0) 60%
        );
      }
      .pillar-title {
        font-size: clamp(26px, 3.2vw, 40px);
        font-weight: 800;
        letter-spacing: 0.5px;
      }

      /* Botón circular (›) */
      .pillar-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
        font-size: 28px;
        line-height: 1;
        border: 1px solid rgba(255, 255, 255, 0.35);
        transition: background 0.25s ease, transform 0.25s ease;
      }
      .pillar-cta:focus {
        outline: 2px solid #fff;
        outline-offset: 2px;
      }

      /* Hover / Focus: zoom + brillo + CTA resalta */
      .pillar-card:hover img,
      .pillar-card:focus-within img {
        transform: scale(1.07);
        filter: brightness(1);
      }
      .pillar-card:hover .pillar-cta,
      .pillar-card:focus-within .pillar-cta {
        background: #fff;
        color: #000;
        transform: translateY(-2px);
      }

      /* Responsive alturas */
      @media (max-width: 576px) {
        .pillar-card {
          min-height: 360px;
        }
      }

      /* Strong weight for mega logo */
      .fw-900 {
        font-weight: 900;
      }

      /* Mega logo size responsive (similar a la referencia) */
      .footer-brand {
        font-size: clamp(72px, 14vw, 240px);
        letter-spacing: 0.5px;
      }

      /* Subscribe pill */
      .subscribe-pill {
        border: 2px solid #fff;
        border-radius: 999px;
        overflow: hidden;
        background: #fff;
      }
      .subscribe-pill .form-control {
        border: 0;
        border-radius: 999px 0 0 999px;
        padding-left: 1.25rem;
      }
      .subscribe-pill .form-control:focus {
        box-shadow: none;
      }
      .subscribe-pill .btn {
        border-radius: 999px;
        background: #000;
        color: #fff;
        border: 2px solid #fff;
      }
      .subscribe-pill .btn:hover {
        background: #111;
        color: #fff;
      }

      /* Rows estilo “línea + plus” */
      .footer-rows {
        max-width: 880px;
      }
      .footer-row {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      }
      .footer-row:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.15);
      }
      .row-toggle {
        width: 100%;
        background: transparent;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 0;
        border: 0;
        text-align: left;
        font-size: 1.05rem;
      }
      .row-toggle i {
        transition: transform 0.2s ease;
      }
      .collapse.show ~ .row-toggle i,
      .row-toggle[aria-expanded="true"] i {
        transform: rotate(45deg);
      } /* + -> x */

      /* Socials */
      .social {
        color: #fff;
        opacity: 0.9;
        font-size: 1.25rem;
      }
      .social:hover {
        opacity: 1;
        color: #fff;
      }

      /* Utilities */
      .border-white-10 {
        border-color: rgba(255, 255, 255, 0.1) !important;
      }

      /* Small polishing on dark bg */
      .site-footer a.footer-link {
        color: #625042;
        text-decoration: none;
      }
      .site-footer a.footer-link:hover {
        color: #fff;
        text-decoration: underline;
      }

      /* Spacing on small screens */
      @media (max-width: 576px) {
        .footer-rows {
          max-width: 100%;
        }
      }

      .transparent-nav {
        background: transparent !important;
        box-shadow: none;
        transition: background 0.25s ease, box-shadow 0.25s ease;
        z-index: 1000;
        padding: 0px 30px;
        margin-top: 50px;
      }

      /* Estado sólido al salir del hero */
      .nav-solid {
        background: #e9e1de !important; /* negro */
        color: #000;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25); /* opcional */
        margin-top: 0px;
        padding: 20px 30px;
      }

      .nav-solid a{
        color: #000 !important;
      }

      /* --- Layout --- */
      .promo-wrap {
        background: #0b0b0b;
      } /* como la ref */
      .promo-card {
        position: relative;
        display: block;
        overflow: hidden;
        border-radius: 24px;
        min-height: 280px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
        isolation: isolate;
      }
      .promo-card:hover {
        transform: translateY(-2px);
        transition: transform 0.25s ease;
      }

      /* Fondo */
      .promo-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 65% 50%;
        filter: brightness(0.85);
        transform: scale(1.02);
        transition: transform 0.6s ease, filter 0.6s ease;
      }
      .promo-card:hover .promo-bg {
        transform: scale(1.05);
        filter: brightness(0.95);
      }

      /* Overlay: oscurece a izquierda y base */
      .promo-overlay {
        position: absolute;
        inset: 0;
        z-index: 0;
        background: radial-gradient(
            120% 140% at 10% 40%,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.15) 55%,
            rgba(0, 0, 0, 0) 70%
          ),
          linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0) 50%);
      }

      /* Contenido */
      .promo-content {
        position: relative;
        z-index: 1;
        color: #fff;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 24px;
        padding: 28px clamp(18px, 4vw, 48px);
      }

      /* Izquierda */
      .promo-badge {
        display: inline-block;
        padding: 8px 16px;
        border: 1.5px solid rgba(255, 255, 255, 0.75);
        border-radius: 999px;
        font-weight: 600;
        font-size: 0.95rem;
        margin-bottom: 16px;
        background: rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(4px);
      }
      .promo-title {
        font-size: clamp(28px, 5vw, 56px);
        font-weight: 800;
        line-height: 1.05;
        margin: 0;
      }
      .promo-underline {
        position: relative;
        white-space: nowrap;
      }
      .promo-underline::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -6px;
        height: 3px;
        background: #fff;
        border-radius: 2px;
        opacity: 0.95;
      }

      /* Derecha */
      .promo-right {
        text-align: right;
        display: flex;
        flex-direction: column;
        gap: 18px;
      }
      .promo-subtitle {
        font-size: clamp(18px, 2.5vw, 36px);
        margin: 0;
        font-weight: 600;
      }
      .promo-btn {
        align-self: flex-end;
        border: 0;
        background: #fff;
        color: #000;
        font-weight: 600;
        padding: 10px 18px;
        border-radius: 999px;
        cursor: pointer;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
      }
      .promo-btn:hover {
        transform: translateY(-1px);
      }

      /* Responsive */
      @media (max-width: 768px) {
        .promo-content {
          grid-template-columns: 1fr;
          align-items: flex-start;
        }
        .promo-right {
          text-align: left;
          align-items: flex-start;
        }
        .promo-btn {
          align-self: flex-start;
        }
        .promo-card {
          min-height: 360px;
        }
      }

      .gummies-section {
        background: #fff;
      }
      .left-pane {
        background: #b09a8f;
        padding: 18px 18px 28px;
        height: 100%;
      }
      .thumbs {
        display: flex;
        gap: 18px;
        overflow-x: auto;
        padding-right: 6px;
        margin-bottom: 18px;
      }
      .thumb {
        border: 2px solid transparent;
        border-radius: 4px;
        background: #fff;
        padding: 0;
        line-height: 0;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        flex: 0 0 180px;
        aspect-ratio: 4 / 3;
        overflow: hidden;
      }
      .thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .thumb.active {
        border-color: #111;
      }

      .copy .lead {
        margin: 12px 0 16px;
      }
      .prod-list {
        list-style: none;
        padding: 0;
        margin: 0 0 18px;
      }
      .prod-item {
        font-size: clamp(18px, 2.2vw, 34px);
        font-weight: 700;
        color: #7d8086;
        cursor: pointer;
        line-height: 1.2;
      }
      .prod-item.active {
        color: #0a0a0a;
      }
      .prod-item + .prod-item {
        margin-top: 0.35rem;
      }

      .cta-row {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
      }

      .hero-visual {
        position: relative;
        max-height: 720px;
        background: #ddd;
        overflow: hidden;
        border-left: 8px solid #ffffff; /* divisor como en la referencia */
      }
      .hero-visual img {
        
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transform: scale(1.01);
        transition: transform 0.5s ease;
      }
      .hero-visual:hover img {
        transform: scale(1.03);
      }

      .nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 0;
        background: #ffffff;
        color: #000;
        font-size: 28px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        z-index: 2;
      }
      .nav.prev {
        left: 12px;
      }
      .nav.next {
        right: 12px;
      }
      .pager {
        position: absolute;
        right: 16px;
        bottom: 12px;
        z-index: 2;
        color: #0a0a0a;
        background: rgba(255, 255, 255, 0.9);
        padding: 4px 8px;
        border-radius: 12px;
        font-size: 12px;
      }
      .caption {
        position: absolute;
        left: 16px;
        bottom: 12px;
        padding: 8px 10px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.9);
        max-width: min(80%, 520px);
      }
      @media (max-width: 992px) {
        .hero-visual {
          min-height: 420px;
          border-left-width: 0;
          margin-top: 8px;
        }
      }

      /* Barra superior BF */
.bf-bar {
  background: #ada68e;
  padding: 10px 16px;
  font-size: 14px;
}
.bf-text {
  text-transform: uppercase;
}
.bf-strong {
  font-weight: 700;
}
.bf-close {
  border: none;
  background: transparent;
  font-size: 18px;
}

/* Contenedor general */
.product-box {
  max-width: 420px;
  margin: 0 auto;
}

/* Título y reviews */
.reviews-row {
  font-size: 13px;
  margin-top: 16px;
}
.reviews-count {
  margin-left: 6px;
}
.product-title {
  font-size: 26px;
  font-weight: 700;
  margin: 8px 0 8px;
}
.product-desc {
  font-size: 14px;
  color: #555;
}

/* Card de compra */
.purchase-card {
  margin-top: 20px;
  border-radius: 22px;
  border: 1px solid #ddd;
  overflow: hidden;
  background: #fff;
}

/* Header interno */
.purchase-header {
  background: #ada68e;
  text-align: center;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Opciones */
.purchase-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-top: 1px solid #ddd;
  cursor: pointer;
  background: #fff;
}
.purchase-option.active {
  background: #f5f8ff;
}
.po-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.po-left input[type="radio"] {
  accent-color: #000; /* navegadores modernos */
}
.po-label {
  font-size: 14px;
  font-weight: 600;
}
.po-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.badge-off {
  background: #ffd94a;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
}
.po-old {
  text-decoration: line-through;
  color: #999;
}
.po-new,
.po-price-only {
  font-weight: 700;
}

/* Detalles (solo se muestra el activo) */
.plan-details {
  display: none;
  padding: 16px 18px 18px;
  border-top: 1px solid #ddd;
}
.plan-details.active {
  display: block;
}

/* Cantidad */
.qty-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.qty-label {
  font-size: 13px;
}
.qty-control {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #ddd;
  overflow: hidden;
}
.qty-btn {
  border: none;
  background: #f5f5f5;
  width: 32px;
  height: 32px;
  font-size: 18px;
  line-height: 1;
}
.qty-input {
  width: 40px;
  border: none;
  text-align: center;
  font-size: 14px;
}

/* Botones */
.btn-add-cart {
  width: 100%;
  margin-bottom: 8px;
  border-radius: 999px;
  background: #020826;
  color: #fff;
  font-weight: 600;
  padding: 10px 16px;
  border: none;
}
.btn-shop-pay {
  width: 100%;
  border-radius: 999px;
  background: #5c3efc;
  color: #fff;
  padding: 10px 16px;
  border: none;
  margin-bottom: 8px;
}
.more-payments {
  display: block;
  text-align: center;
  font-size: 12px;
  text-decoration: underline;
}
/* --- MODAL COMO PANEL DERECHO --- */

/* el overlay sigue siendo el de Bootstrap (.modal-backdrop) */

.right-modal .modal-dialog {
    position: fixed;
    top: 0;
    right: 0;
    margin: 0;
    height: 100vh;
    transform: translateX(100%);   /* inicia fuera de la pantalla */
    transition: transform .3s ease-out;
    max-width: 480px;              /* ancho del panel */
    width: 100%;
}

.right-modal.show .modal-dialog {
    transform: translateX(0);      /* entra desde la derecha */
}

/* contenido blanco del panel */
.cart-content {
    height: 100vh;
    border-radius: 0;
    border: none;
    padding: 10px 0px;
    display: flex;
    align-items: center;           /* centra verticalmente el texto */
    justify-content: center;
}

.cart-inner {
    width: 100%;
    text-align: left;
}

.cart-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #020826;                /* azul casi negro */
}

.btn-cart-cta {
    padding: 14px 32px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 999px;
    border: none;
    background-color: #020826;
    color: #fff;
}

/* Botón de cerrar tipo cuadro arriba a la derecha */
.cart-close {
    position: absolute;
    right: 24px;
    top: 24px;
    font-size: 28px;
    font-weight: 300;
    color: #000;
    opacity: .7;
}

.cart-close:hover {
    opacity: 1;
}
/* Modal tipo panel derecho para PHI.IA */
.phiia-modal .phiia-dialog {
  margin: 0;
  margin-left: auto;          /* pega a la derecha */
  height: 100%;
  max-width: 420px;           /* ancho del panel */
}

.phiia-modal .phiia-content {
  height: 100%;
  border-radius: 0;
  display: flex;
  flex-direction: column;
}

.phiia-header {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.phiia-body {
  padding: 0;
  flex: 1;
  background: #f7f7f7;
}

.phiia-messages {
  padding: 1rem;
  height: 100%;
  overflow-y: auto;
}

/* Mensajes */
.phiia-msg {
  display: flex;
  margin-bottom: 0.75rem;
}

.phiia-msg-bot {
  justify-content: flex-start;
}

.phiia-msg-user {
  justify-content: flex-end;
}

.phiia-bubble {
  max-width: 85%;
  padding: 0.6rem 0.8rem;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Bot */
.phiia-msg-bot .phiia-bubble {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
}

/* Usuario */
.phiia-msg-user .phiia-bubble {
  background: #000;
  color: #fff;
}

/* Footer */
.phiia-footer {
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* Loading puntitos */
.phiia-typing {
  width: 40px;
  display: inline-flex;
  justify-content: space-between;
}

.phiia-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #999;
  animation: phiia-bounce 1s infinite ease-in-out;
}

.phiia-dot:nth-child(2) { animation-delay: 0.15s; }
.phiia-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes phiia-bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* Responsive: en móvil que sea pantalla completa */
@media (max-width: 576px) {
  .phiia-modal .phiia-dialog {
    max-width: 100%;
  }
}
/* Tarjetas tipo "Stacks" */
.stack-card {
  background-color: #e9e1de;
  border-radius: 15px;
  border: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.stack-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 75%; /* proporción 4:3 aprox */
  background-color: #fff;
}

.stack-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* estado base: se ve solo la main */
.stack-img-main {
  opacity: 1;
}

.stack-img-hover {
  opacity: 0;
}

/* texto inferior */
.stack-body {
  padding: 1.25rem 0.5rem 1.5rem;
}

.stack-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.stack-sub {
  margin: 0;
  color: #5a6477;
  font-size: 0.9rem;
}

.stack-prices {
  margin-top: 0.6rem;
  font-size: 0.95rem;
}

.stack-prices .old {
  text-decoration: line-through;
  color: #8a8f9c;
  margin-right: 0.4rem;
}

.stack-prices .new {
  font-weight: 700;
}

/* Badge 40% OFF */
.stack-pill {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background-color: #e5f075;
  color: #000;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
}

/* Overlay que aparece encima con el botón */
.stack-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 80%);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Botón redondo con icono */
.stack-eye-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background-color: #000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* HOVER: cambiar imagen + mostrar overlay */
.stack-card:hover .stack-img-main {
  opacity: 0;
  transform: scale(1.03);
}

.stack-card:hover .stack-img-hover {
  opacity: 1;
  transform: scale(1.03);
}

.stack-card:hover .stack-overlay {
  transform: translateY(0);
  opacity: 1;
}

/* En móvil, que el overlay no tape TODO al principio */
@media (max-width: 576px) {
  .stack-overlay {
    padding: 0.75rem 1rem;
  }
}
.refer-section {
  background: #EFEEEA;
  padding: 80px 0;
}

/* Texts */
.refer-top-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #555;
  text-transform: uppercase;
}

.refer-title {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin: 20px 0;
  line-height: 1.2;
}

.refer-desc {
  color: #444;
  margin-bottom: 30px;
}

/* Inputs */
.refer-input {
  margin-bottom: 15px;
  padding: 18px;
  border-radius: 50px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.refer-check {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Button */
.refer-btn {
  border-radius: 60px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Image */
.refer-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.refer-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Small legal text */
.refer-small {
  font-size: 12px;
  color: #666;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .refer-title {
    font-size: 32px;
  }
}
.lets-get {
  background-color: #fff; /* mismo tono que el resto */
}

.lets-title {
  font-size: 36px;
  font-weight: 700;
  color: #021433;
}

.step-item {
  max-width: 280px;
  margin-inline: auto;
}

.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #00153a; /* azul oscuro tipo DIRTEA */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 18px;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-text {
  font-size: 15px;
  color: #475065;
  margin: 0;
}

.faq-item {
  border-color: #d9d8d3;
}

.faq-toggle {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 600;
  color: #021433;
  position: relative;
}

/* línea inferior de cada fila */
.faq-item:not(:last-child) .faq-toggle {
  border-bottom: 1px solid #d9d8d3;
}

/* icono + / - a la derecha */
.faq-toggle::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

/* cuando está abierto (no tiene .collapsed) */
.faq-toggle:not(.collapsed)::after {
  content: '–';
}

/* contenido */
.faq-body {
  padding: 0 0 16px 0;
  font-size: 15px;
  color: #444;
}
/* Layout general: lado izq fijo, lado der scroll interno */
.product-detail-wrap {
  max-height: 90vh;
  min-height: 70vh;
}

.product-left,
.product-right {
  display: flex;
}

.product-gallery {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.product-main-img {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-main-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Thumbnails */
.product-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.thumb-item {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.6;
  border-radius: 4px;
}

.thumb-item.active {
  opacity: 1;
  outline: 2px solid #00153a;
}

.thumb-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: block;
}

/* Panel derecho scrollable */
.product-right {
  align-items: stretch;
}

.product-right-inner {
  width: 100%;
  padding-left: 32px;
  max-height: 90vh;
  overflow-y: auto;
    max-height: 90vh;
  overflow-y: auto;   /* sigue habiendo scroll */
  -ms-overflow-style: none;  /* IE/Edge antiguo */
  scrollbar-width: none;     /* Firefox */
}
.product-right-inner::-webkit-scrollbar {
  display: none;
}
.pd-title {
  font-size: 32px;
  font-weight: 700;
}

.pd-subtext {
  color: #555;
}

/* Tags tipo chips */
.pd-tags .pd-tag {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid #d0d4e0;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 6px;
}

/* Tarjeta de compra */
.pd-purchase-card {
  border-radius: 16px;
  border: 1px solid #d0d4e0;
  padding: 16px;
  background-color: #fff;
}

.pd-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pd-badge-off {
  background: #e5f075;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 11px;
}

.pd-option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  margin-bottom: 6px;
}

.pd-option-row.active {
  background: #d9c9bc;
  color: #625042;
}

.pd-option-row input[type="radio"] {
  margin-right: 8px;
}

.pd-opt-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pd-opt-main {
  font-weight: 600;
}

.pd-option-row .pd-price-old {
  text-decoration: line-through;
  font-size: 13px;
  margin-right: 4px;
  opacity: 0.7;
}

.pd-option-row .pd-price-new {
  font-weight: 700;
}

/* Detalles de plan */
.pd-plan-details {
  padding: 12px;
  margin-top: 4px;
  border-radius: 12px;
  background: #f5f4f1;
  display: none;
}

.pd-plan-details.active {
  display: block;
}

/* Cantidad */
.pd-qty-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.pd-qty-label {
  font-weight: 600;
}

.pd-qty-control {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #d0d4e0;
  overflow: hidden;
}

.pd-qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 20px;
  line-height: 1;
}

.pd-qty-input {
  width: 40px;
  border: none;
  text-align: center;
  background: transparent;
}

/* Botones compra */
.pd-btn-add {
  background: #00153a;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
}

.pd-btn-shop {
  background: #4333ff;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
}

.pd-more-payments {
  color: #00153a;
}

.pd-perks li::before {
  content: '• ';
}

/* Responsive: en móvil quitamos la altura fija y el scroll interno */
@media (max-width: 991.98px) {
  .product-detail-wrap {
    max-height: none;
    min-height: auto;
  }
  .product-right-inner {
    max-height: none;
    overflow-y: visible;
    padding-left: 0;
    margin-top: 24px;
  }
}

.ingredients-section {
  background: #e9e1de;
}

#ingredientsSlider {
  position: relative;
}

/* Cada slide ocupa todo el ancho (2 columnas dentro) */
.ing-slide {
  display: none;
  width: 100%;
  transition: opacity .5s ease;
}

.ing-slide.active {
  display: flex;
}

/* Columna izquierda */
.ing-left {
  background: #e9e1de;
  padding: 60px 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ing-left-inner {
  max-width: 520px;
}

.ing-title {
  font-size: 42px;
  font-weight: 700;
  color: #031333;
  margin-bottom: 40px;
}

/* “línea” + polvo */
.ing-graphic {
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.ing-line {
  height: 2px;
  flex: 1;
  background: #031333;
  margin-right: 24px;
}

.ing-powder-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ing-powder-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dots */
.ing-dots {
  margin-top: 40px;
}

.ing-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #031333;
  margin-right: 6px;
  display: inline-block;
  cursor: pointer;
  background: transparent;
}

.ing-dot.active {
  background: #e9e1de;
}

/* Columna derecha */
.ing-right {
  background: #e9e1de;
  min-height: 380px;
}

.ing-right-inner {
  height: 100%;
}

.ing-right-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 991.98px) {
  .ing-slide.active {
    flex-direction: column;
  }

  .ing-left {
    padding: 40px 20px;
  }

  .ing-right {
    min-height: 260px;
  }
}
.promo-banner {
    width: 95%;
    max-width: 1400px;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: url('https://via.placeholder.com/1800x600?text=YOUR+IMAGE') center/cover no-repeat;
    color: white;
}

/* Degradado oscuro sobre la imagen */
.promo-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
    z-index: 1;
}

/* CONTENIDO IZQUIERDA */
.promo-content {
    position: relative;
    z-index: 2;
    padding: 80px 60px;
    max-width: 500px;
}

.promo-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
}

.promo-title {
    font-size: 40px;
    margin: 25px 0 10px;
    font-weight: 700;
}

.promo-sub {
    font-size: 30px;
    margin-bottom: 35px;
    font-weight: 400;
}

/* BOTÓN */
.promo-btn {
    padding: 12px 28px;
    background: white;
    color: black;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.promo-btn:hover {
    background: #eaeaea;
}

/* BARRA NEGRA INFERIOR */
.promo-bottom {
    background: black;
    color: white;
    padding: 16px 40px;
    font-size: 15px;
    justify-content: space-between;
    display: flex;
    gap: 20px;
    align-items: center;
    z-index: 3;
    position: relative;
}

.promo-bottom span {
    opacity: 0.8;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .promo-title { font-size: 25px; }
    .promo-sub { font-size: 22px; }
    .promo-content { padding: 50px 30px; }
    .promo-bottom { flex-direction: column; text-align: center; }
}
/* ===== Sticky bar producto ===== */
.product-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f8f7f4;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.product-sticky-bar.psb-show {
  transform: translateY(0);
}

.psb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: 1200px;
}

/* Izquierda: mini producto */
.psb-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.psb-thumb {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}

.psb-info {
  line-height: 1.2;
}

.psb-brand {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #777;
}

.psb-name {
  font-size: 14px;
  font-weight: 500;
}

/* Derecha: qty + botón + precio */
.psb-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.psb-fav {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.psb-qty {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #111;
  overflow: hidden;
}

.psb-qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.psb-qty-input {
  width: 32px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 14px;
}

.psb-qty-input:focus {
  outline: none;
}

.psb-add-btn {
  border: none;
  border-radius: 999px;
  padding: 10px 24px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.psb-add-btn:hover {
  background: #222;
}

.psb-price {
  font-size: 14px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .psb-inner {
    padding: 8px 14px;
    gap: 8px;
  }

  .psb-name {
    font-size: 13px;
  }

  .psb-right {
    gap: 8px;
  }

  .psb-add-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .psb-price {
    font-size: 13px;
  }
}
.account-menu {
  min-width: 220px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);

  /* 🔽 que quede un poco más abajo */
  margin-top: 50px;

  /* 🎯 centrarlo bajo el botón ACCOUNT */
  left: 50% !important;     /* centramos horizontalmente */
  right: auto !important;   /* anulamos el end de Bootstrap */
  transform: translateX(-50%);
}

.account-header {
  background: #f3f3f3;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
}

.account-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #00153a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 20px;
}

.account-name {
  font-weight: 700;
  font-size: 14px;
  color: #00153a;
}

.account-points {
  font-size: 13px;
  color: #777;
}

.account-links .dropdown-item {
  font-size: 14px;
  padding: 6px 0;
}

.account-links .dropdown-item:hover {
  background: transparent;
  color: #00153a;
  text-decoration: underline;
}
/* Grid de productos dentro del chat de PHI.IA */
.phiia-product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.phiia-product-card {
  flex: 1 1 180px;
  max-width: 220px;
}

.phiia-product-btn {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
  text-align: left;
  cursor: pointer;
  display: flex;
  gap: 8px;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.phiia-product-btn:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}

.phiia-product-img-wrap {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f5f5;
}

.phiia-product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phiia-product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.phiia-product-name {
  font-size: 13px;
  font-weight: 600;
}

.phiia-product-desc {
  font-size: 11px;
  color: #666;
  max-height: 3.2em;
  overflow: hidden;
}

.phiia-product-link {
  font-size: 11px;
  color: #0070f3;
  font-weight: 500;
  margin-top: 2px;
}
.btn-mushroom-filter.active {
    background-color: #000;
    color: #fff;
}
.btn-product-filter.active {
    background-color: #111; /* como el SHOP ALL de la imagen */
    color: #fff;
}
.btn-benefit-filter.active {
    background-color: #111;
    color: #fff;
}


.phiia-mic-listening {
  color: #ff4d4f;
  animation: phiia-pulse 1s infinite;
}

@keyframes phiia-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.phiia-form {
  margin-top: 10px;
}

.phiia-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phiia-input {
  flex: 1;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
}

.phiia-send-btn {
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 500;
  white-space: nowrap;
}

.phiia-hint {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: #777;
}

/* Mic */
.phiia-mic-btn {
  border-radius: 999px;
  border: 1px solid #ddd;
  background-color: #000;
  color: #fff;
  padding: 8px 10px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phiia-mic-btn i {
  font-size: 18px;
}

/* Estado grabando */
.phiia-mic-btn.is-recording {
  border-color: #ff4b4b;
  background-color: #ffecec;
  color: #d60000;
}
.modal-body {
  max-height: 100vh;
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE y Edge */
  scrollbar-width: none; /* Firefox */
}

.modal-body::-webkit-scrollbar {
  width: 0;
  height: 0;

}

/* Modal tipo side cart derecha */
.cart-modal .cart-modal-dialog {
  margin: 0 0 0 auto;          /* pegado a la derecha */
  height: 100vh;
  max-width: 420px;            /* ancho del panel */
}

.cart-modal .cart-modal-content {
  height: 100vh;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}

/* Overlay oscuro sobre el sitio */
.cart-modal.show .modal-dialog {
  transform: translate(0); /* evita anim extra rara en algunos temas */
}

.cart-header {
  padding: 18px 24px;
  border-bottom: 1px solid #f0f0f0;
  font-weight: 600;
}

.cart-body {
  flex: 1;
  padding: 16px 24px;
  overflow-y: auto;
}

.cart-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid #f0f0f0;
  background-color: #fafafa;
}

/* Estado vacío */
.cart-empty {
  margin-top: 60px;
}

.cart-empty-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* Botón principal dark redondeado */
.btn-cart-primary {
  padding: 12px 32px;
  border-radius: 999px;
  background-color: #020826;   /* ajusta a tu color brand */
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
}

.btn-cart-primary:hover {
  opacity: 0.9;
  color: #fff;
}

/* Sección con productos */
.cart-shipping-box {
  background-color: #f4ff9f;   /* amarillo tipo Dirtea, ajusta */
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  margin-bottom: 16px;
}

.cart-shipping-text {
  margin-bottom: 8px;
}

.cart-shipping-progress {
  height: 4px;
  background-color: #e0e0e0;
  border-radius: 999px;
  overflow: hidden;
}

.cart-shipping-progress-bar {
  width: 60%;                  /* fake de momento */
  height: 100%;
  background-color: #28a745;
}

/* Items */
.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cart-item-img img {
  width: 70px;
  height: auto;
  border-radius: 6px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.cart-item-meta {
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
}

.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-item-qty {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #ddd;
  overflow: hidden;
  font-size: 13px;
}

.cart-item-qty button {
  background: #fff;
  border: none;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  padding: 0;
}

.cart-item-qty span {
  display: inline-block;
  min-width: 24px;
  text-align: center;
}

.cart-item-price {
  font-weight: 600;
  font-size: 14px;
}

.cart-item-remove {
  border: none;
  background: transparent;
  color: #999;
  font-size: 16px;
  margin-left: 8px;
}

/* Footer subtotal */
.cart-subtotal-label {
  font-size: 14px;
  color: #555;
}

.cart-subtotal-value {
  font-size: 16px;
  font-weight: 700;
}

.checkout-wrapper {
  background-color: #fafafa;
  min-height: 100vh;
  padding: 40px 0 60px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
}

.checkout-container {
  max-width: 1100px;
}

.checkout-header {
  margin-bottom: 30px;
}

.checkout-main {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  padding: 30px;
}

.checkout-left {
  border-right: 1px solid #f0f0f0;
}

@media (max-width: 991.98px) {
  .checkout-left {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 24px;
  }
}

/* Alert */
.checkout-alert {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  background-color: #f5f5f5;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 18px;
}

.checkout-alert-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Express checkout */
.checkout-express-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #777;
  margin-bottom: 8px;
}

.checkout-express-buttons {
  display: flex;
  gap: 10px;
}

.btn-express {
  flex: 1;
  border-radius: 999px;
  border: none;
  padding: 10px 0;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
}

.btn-express-shop   { background-color: #5A31F4; }
.btn-express-paypal { background-color: #ffc439; color: #111; }
.btn-express-gpay   { background-color: #000; }

.checkout-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 22px;
  font-size: 12px;
  color: #aaa;
}

.checkout-divider::before,
.checkout-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #e5e5e5;
}

/* Inputs */
.checkout-section-title {
  font-size: 18px;
  margin-bottom: 12px;
}

.checkout-subsection-title {
  font-size: 15px;
  margin-bottom: 6px;
}

.checkout-section-subtitle {
  font-size: 13px;
  color: #777;
  margin-bottom: 8px;
}

.checkout-input {
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  font-size: 14px;
  padding: 10px 12px;
}

.checkout-input:focus {
  border-color: #111827;
  box-shadow: 0 0 0 1px #11182722;
}

/* Shipping placeholder */
.checkout-shipping-placeholder {
  font-size: 13px;
  color: #777;
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 10px 12px;
}

/* Payment */
.checkout-payment-box {
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  padding: 12px 14px 16px;
  background-color: #fcfcfc;
}

.checkout-payment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
}

.checkout-card-logos {
  font-size: 11px;
  color: #999;
}

/* Button Pay now */
.btn-checkout-primary {
  border-radius: 999px;
  padding: 12px;
  font-weight: 600;
  background-color: #020826;
  border: none;
  color: #fff;
}

.btn-checkout-primary:hover {
  opacity: .9;
  color: #fff;
}

.checkout-terms {
  font-size: 11px;
  color: #777;
}

/* RIGHT: resumen */
.checkout-right {
  padding-left: 30px;
}

@media (max-width: 991.98px) {
  .checkout-right {
    padding-left: 0;
    margin-top: 20px;
  }
}

.checkout-summary-box {
  background-color: #fafafa;
  border-radius: 16px;
  padding: 18px 18px 20px;
  border: 1px solid #f0f0f0;
}

.checkout-cart-items {
  margin-top: 70px;
  margin-bottom: 16px;
}

.checkout-cart-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.checkout-cart-thumb {
  position: relative;
}

.checkout-cart-thumb img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
}

.checkout-cart-qty-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: #111827;
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  padding: 2px 6px;
}

.checkout-cart-info {
  flex: 1;
  font-size: 13px;
}

.checkout-cart-title {
  font-weight: 600;
}

.checkout-cart-meta {
  font-size: 11px;
  color: #777;
}

.checkout-cart-price {
  font-weight: 600;
  font-size: 13px;
}

/* Cupón */
.checkout-coupon {
  display: flex;
  gap: 8px;
}

.btn-apply-coupon {
  border-radius: 10px;
  padding: 0 16px;
  border: 1px solid #d9d9d9;
  background: #f5f5f5;
  font-size: 13px;
}

/* Warning */
.checkout-warning {
  margin-top: 16px;
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  background-color: #fff7e6;
  border: 1px solid #ffe4b5;
  font-size: 12px;
}

/* Totals */
.checkout-totals {
  font-size: 14px;
}

.checkout-total-amount {
  font-size: 18px;
  font-weight: 700;
}
.checkout-right {
  padding-left: 30px;
}

/* AQUÍ el resumen se queda fijo mientras haces scroll */
.checkout-summary-box {
  background-color: #fafafa;
  border-radius: 16px;
  padding: 18px 18px 20px;
  border: 1px solid #f0f0f0;

  position: sticky;
  top: 30px;          /* distancia desde el top cuando se pega */
  /* SIN max-height, SIN overflow-y aquí */
}

/* Mobile: comportamiento normal, nada sticky */
@media (max-width: 991.98px) {
  .checkout-right {
    padding-left: 0;
    margin-top: 20px;
  }

  .checkout-summary-box {
    position: static;
  }
}

.checkout-wrapper {
  background-color: #fafafa;
  min-height: 100vh;
  padding: 40px 0 60px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
}

.checkout-container {
  max-width: 1100px;
}

.checkout-header {
  margin-bottom: 30px;
}

/* Caja principal blanca con sombra y bordes redondeados */
.checkout-main {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  padding: 30px;
}

.checkout-left {
  border-right: 1px solid #f0f0f0;
}

@media (max-width: 991.98px) {
  .checkout-left {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 24px;
  }
}

/* Alert tipo Healf */
.checkout-alert {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  background-color: #f5f5f5;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 18px;
}

.checkout-alert-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Express checkout */
.checkout-express-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #777;
  margin-bottom: 8px;
}

.checkout-express-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.btn-express {
  flex: 1;
  border-radius: 999px;
  border: none;
  padding: 10px 0;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
}

.btn-express-shop   { background-color: #5A31F4; }
.btn-express-paypal { background-color: #ffc439; color: #111; }
.btn-express-gpay   { background-color: #000; }

.checkout-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 22px;
  font-size: 12px;
  color: #aaa;
}

.checkout-divider::before,
.checkout-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #e5e5e5;
}

/* Titles e inputs */
.checkout-section-title {
  font-size: 18px;
  margin-bottom: 12px;
}

.checkout-subsection-title {
  font-size: 15px;
  margin-bottom: 6px;
}

.checkout-section-subtitle {
  font-size: 13px;
  color: #777;
  margin-bottom: 8px;
}

.checkout-input {
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  font-size: 14px;
  padding: 10px 12px;
}

.checkout-input:focus {
  border-color: #111827;
  box-shadow: 0 0 0 1px #11182722;
}

/* Shipping placeholder */
.checkout-shipping-placeholder {
  font-size: 13px;
  color: #777;
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 10px 12px;
}

/* Payment */
.checkout-payment-box {
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  padding: 12px 14px 16px;
  background-color: #fcfcfc;
}

.checkout-payment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
}

.checkout-card-logos {
  font-size: 11px;
  color: #999;
}

/* Botón Pay now */
.btn-checkout-primary {
  border-radius: 999px;
  padding: 12px;
  font-weight: 600;
  background-color: #020826;
  border: none;
  color: #fff;
}

.btn-checkout-primary:hover {
  opacity: .9;
  color: #fff;
}

.checkout-terms {
  font-size: 11px;
  color: #777;
}

/* RIGHT: resumen fijo */
.checkout-right {
  padding-left: 30px;
}

@media (max-width: 991.98px) {
  .checkout-right {
    padding-left: 0;
    margin-top: 20px;
  }
}

/* Caja resumen fija tipo slide Healf */
.checkout-summary-box {
  background-color: #fafafa;
  border-radius: 16px;
  padding: 18px 18px 20px;
  border: 1px solid #f0f0f0;

  position: sticky;
  top: 30px;
}

/* Lista de productos */
.checkout-cart-items {
  margin-bottom: 16px;
}

.checkout-cart-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.checkout-cart-thumb {
  position: relative;
}

.checkout-cart-thumb img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
}

.checkout-cart-qty-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: #111827;
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  padding: 2px 6px;
}

.checkout-cart-info {
  flex: 1;
  font-size: 13px;
}

.checkout-cart-title {
  font-weight: 600;
}

.checkout-cart-meta {
  font-size: 11px;
  color: #777;
}

.checkout-cart-price {
  font-weight: 600;
  font-size: 13px;
}

/* Cupón */
.checkout-coupon {
  display: flex;
  gap: 8px;
}

.btn-apply-coupon {
  border-radius: 10px;
  padding: 0 16px;
  border: 1px solid #d9d9d9;
  background: #f5f5f5;
  font-size: 13px;
}

/* Warning tipo Healf */
.checkout-warning {
  margin-top: 16px;
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  background-color: #fff7e6;
  border: 1px solid #ffe4b5;
  font-size: 12px;
}

/* Totals */
.checkout-totals {
  font-size: 14px;
}

.checkout-total-amount {
  font-size: 18px;
  font-weight: 700;
}

/* Upsell tipo Healf */
.checkout-upsell {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid #e5e5e5;
  font-size: 13px;
}

.checkout-upsell-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.checkout-upsell-thumb img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.checkout-upsell-title {
  font-weight: 600;
}

.checkout-upsell-meta {
  font-size: 11px;
  color: #777;
}

.checkout-upsell-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-upsell-price {
  font-weight: 600;
}

.btn-upsell-add {
  border-radius: 999px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  padding: 3px 10px;
  font-size: 11px;
  text-transform: uppercase;
}

.btn-upsell-add[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}
.cart-free-box {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 10px 12px;
}

.cart-free-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.cart-free-icon {
  font-size: 16px;
}

.cart-free-progress {
  margin-top: 8px;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background-color: #e4e4e4;
  overflow: hidden;
}

.cart-free-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background-color: #3dbb4b; /* verde */
  transition: width 0.25s ease;
}

.cart-free-min {
  font-size: 11px;
  color: #999;
  margin-top: 4px;
}

/* Contenedor del slide */
.product-gallery .product-main-img {
  width: 100%;
  max-width: 500px;          /* opcional, solo para que no sea enorme */
  margin: 0 auto;
  background: #f7f5f0;       /* fondo clarito, como Dirtea */
  height: 500px;             /* ALTURA DEL SLIDE */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;          /* recorta lo que sobre */
}

/* Imagen principal */
.product-gallery .product-main-img img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;       /* que no se deforme */
}
 /* ---------- JOURNAL ---------- */
.journal-section {
  padding: 72px 0 80px;
}

.journal-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 32px;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 1199.98px) {
  .journal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .journal-grid {
    grid-template-columns: 1fr;
  }
}

.journal-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
}

.journal-card-img {
  width: 100%;
  padding-top: 132%; /* relación parecido al screenshot */
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.journal-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.05)
  );
  color: #fff;
}

.journal-card-text {
  font-size: 1.4rem;
  font-weight: 700;
  max-width: 90%;
  margin: 0 0 16px;
}

.journal-card-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-left: auto; /* pegada al lado derecho inferior */
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.journal-card:hover .journal-card-img {
  transform: scale(1.03);
}

.journal-card:hover .journal-card-arrow {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

      /* ---------- CHIEF SCIENCE OFFICER ---------- */
      .section-cso {
        background: #2a265c;
        color: #ffffff;
        padding: 80px 0;
      }

      .cso-wrapper {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
        gap: 40px;
        align-items: center;
      }

      @media (max-width: 991.98px) {
        .cso-wrapper {
          grid-template-columns: 1fr;
        }
      }

      .cso-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 16px;
      }

      .cso-sub {
        font-size: 0.9rem;
        opacity: 0.9;
        margin-bottom: 32px;
      }

      .cso-quote {
        font-size: 1rem;
        max-width: 540px;
        line-height: 1.5;
        margin-bottom: 16px;
      }

      .cso-role {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        opacity: 0.7;
      }

      .cso-photo {
        border-radius: 8px;
        overflow: hidden;
        background: #111;
      }

      .cso-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      /* ---------- OUR SCIENCE ---------- */
      .section-science {
        background: #b3a89f;
        padding: 90px 0;
        position: relative;
        overflow: hidden;
      }

      .science-inner {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
      }

      .science-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 18px;
      }

      .science-text {
        font-size: 1.05rem;
        line-height: 1.7;
        color: #333;
      }

      .science-img-left,
      .science-img-right {
        position: absolute;
        top: -40px;
        width: 320px;
        height: 320px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }

      .science-img-left {
        left: -40px;
      }

      .science-img-right {
        right: -40px;
      }

      @media (max-width: 991.98px) {
        .science-img-left,
        .science-img-right {
          opacity: 0.4;
          width: 220px;
          height: 220px;
          top: -20px;
        }
      }

      @media (max-width: 767.98px) {
        .science-img-left,
        .science-img-right {
          display: none;
        }
      }

      /* ---------- DICTIONARY ---------- */
      .section-dictionary {
        background: var(--off-white);
        padding: 72px 0 80px;
      }

      .dictionary-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 32px;
      }

      .dictionary-title {
        font-size: 3rem;
        font-weight: 700;
      }

      .btn-dark-pill {
        border-radius: 999px;
        padding: 10px 24px;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        font-weight: 700;
        background: #020e26;
        color: #ffffff;
        border: none;
      }

      .dictionary-scroller-wrapper {
        position: relative;
      }

      .dictionary-scroller {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(260px, 1fr);
        gap: 24px;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-behavior: smooth;
      }

      .dictionary-card {
        background: #f5f0e7;
        border-radius: 8px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        min-height: 100%;
      }

      .dictionary-card-img {
        background: #d9d1c4;
        width: 100%;
        aspect-ratio: 4 / 3;
      }

      .dictionary-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .dictionary-card-body {
        padding: 20px 24px 24px;
      }

      .dictionary-card-title {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 8px;
      }

      .dictionary-card-text {
        font-size: 0.95rem;
        margin-bottom: 16px;
      }

      .dictionary-card .btn {
        font-size: 0.85rem;
        border-radius: 999px;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        font-weight: 700;
        padding: 10px 20px;
      }

      .dictionary-next {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 56px;
        height: 56px;
        border-radius: 50%;
        border: none;
        background: #020e26;
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.35rem;
      }

      @media (max-width: 767.98px) {
        .dictionary-next {
          display: none;
        }
      }

      .section-results {
  background: #b09a8f; /* off white */
  padding: 64px 0 72px;
}

.results-container {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
  gap: 48px;
  align-items: center;
}

.results-left h2 {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
  color: #020e26; /* navy */
  margin: 0;
}

.results-right {
  color: #020e26;
}

.results-banner {
  background: #020e26;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 24px;
}

.results-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 16px;
}

.result-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.result-number {
  font-size: 3rem;
  font-weight: 700;
}

.result-caption {
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.results-footnote {
  font-size: 0.8rem;
  margin: 8px 0 0;
  color: #555;
}

/* Responsive */
@media (max-width: 992px) {
  .results-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .results-left h2 {
    font-size: 2.4rem;
  }

  .results-stats {
    grid-template-columns: 1fr;
  }

  .result-number {
    font-size: 2.6rem;
  }
}

@media (max-width: 576px) {
  .section-results {
    padding: 48px 0 56px;
  }

  .results-left h2 {
    font-size: 2.1rem;
  }

  .result-number {
    font-size: 2.3rem;
  }
}

/* =========================
   MEGA MENU – CORTINA REAL (IZQ → DER) + CARDS IZQ → DER
========================= */

.dropdown-menu-mega{
  position: relative;
  overflow: hidden;
}

/* cortina */
.dropdown-menu-mega::before{
  content:"";
  position:absolute;
  inset:0;
  background:#d9c9bc;
  z-index:5;

  /* empieza completamente a la izquierda */
  transform: translateX(-100%);
}

/* al abrir: la cortina cruza todo el menú hacia la derecha */
.dropdown-mega.show .dropdown-menu-mega::before{
  animation: megaCurtainLR .6s cubic-bezier(.22,.61,.36,1) forwards;
}

@keyframes megaCurtainLR{
  0%{ transform: translateX(-100%); }
  100%{ transform: translateX(100%); }
}

/* ====== CARDS: aparecen una por una IZQ → DER ====== */
.mega-panel .mega-card{
  opacity: 0;
  transform: translateX(-18px); /* antes: translateY(18px) */
  will-change: transform, opacity;
}



/* Cards: más espaciado en el tiempo (una a mitad de la otra) */
.dropdown-mega.show .mega-panel .mega-card{
  animation: megaCardInLR .55s ease forwards; /* antes .45s */
}

/* intervalos más grandes entre cards */
.dropdown-mega.show .mega-panel .mega-card:nth-child(1){ animation-delay:.30s }
.dropdown-mega.show .mega-panel .mega-card:nth-child(2){ animation-delay:.45s }
.dropdown-mega.show .mega-panel .mega-card:nth-child(3){ animation-delay:.60s }
.dropdown-mega.show .mega-panel .mega-card:nth-child(4){ animation-delay:.75s }
.dropdown-mega.show .mega-panel .mega-card:nth-child(5){ animation-delay:.90s }
.dropdown-mega.show .mega-panel .mega-card:nth-child(6){ animation-delay:1.05s }


@keyframes megaCardInLR{
  to{
    opacity: 1;
    transform: translateX(0); /* antes: translateY(0) */
  }
}

.mega-card img{
  transition: transform .45s ease;
}

.mega-card:hover img{
  transform: scale(1.12);
}

.login-modal-xl{
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 24px 80px rgba(0,0,0,.18);
  overflow: hidden;
  position: relative;
  font-family: gotham, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.login-close{
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
}

.letter-spaced{ letter-spacing: .12em; }

.login-side{
  height: 100%;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.login-side-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.40) 0%, rgba(0,0,0,.18) 40%, rgba(0,0,0,.55) 100%);
}

.login-side-content{
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.login-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  width: fit-content;
  font-weight: 600;
  letter-spacing: .14em;
  font-size: .75rem;
}

.login-side-title{
  margin: 0;
  font-weight: 650;
  font-size: 1.6rem;
}

.login-side-text{
  margin: 10px 0 0 0;
  opacity: .92;
  line-height: 1.45;
  max-width: 320px;
}

.login-side-foot small{
  opacity: .85;
}

.login-form-wrap{
  padding: 34px 30px;
}

.login-input{
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  padding: 12px 14px;
  transition: box-shadow .15s ease, border-color .15s ease;
}

.login-input:focus{
  border-color: rgba(0,0,0,.35);
  box-shadow: 0 0 0 .2rem rgba(0,0,0,.08);
}

.login-eye{
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  border-left: 0;
  background: #fff;
  color: #222;
}

.login-btn{
  margin-top: 14px;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 600;
  background: #d9c9bc; /* arena */
  border: 1px solid rgba(0,0,0,.12);
  color: #111;
}

.login-btn:hover{ filter: brightness(.98); }

.login-link{ color: #111; }
.login-link:hover{ text-decoration: underline; }

.login-trust{
  margin-top: 10px;
  font-size: .85rem;
  text-align: center;
}

.login-divider{
  margin: 22px 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(0,0,0,.45);
}

.login-divider::before,
.login-divider::after{
  content: "";
  height: 1px;
  background: rgba(0,0,0,.10);
  flex: 1;
}

.login-divider span{
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

/* Quitar “cuadros” del accordion */
.pd-acc .accordion-item{
  background: transparent !important;
  border: 0 !important;
}

.pd-acc .accordion-button{
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 16px 0;
  font-family: gotham;
  font-weight: 600;
  letter-spacing: .2px;
}

/* Quita la flecha default de Bootstrap */
.pd-acc .accordion-button::after{
  display: none !important;
}

/* Opcional: separador minimal entre items */
.pd-acc .accordion-header{
  border-bottom: 1px solid rgba(0,0,0,.10);
}

/* Evita que quede “azul” el focus */
.pd-acc .accordion-button:focus{
  box-shadow: none !important;
}

/* Layout título + icono a la derecha */
.pd-acc-btn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}

/* Icono +/− */
.pd-acc-icon{
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.pd-acc-icon::before,
.pd-acc-icon::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  background:#111;
  transform: translate(-50%,-50%);
}

/* línea horizontal (siempre) */
.pd-acc-icon::before{
  width: 18px;
  height: 2px;
}

/* línea vertical (solo cuando está colapsado = “+”) */
.pd-acc-icon::after{
  width: 2px;
  height: 18px;
  transition: opacity .15s ease;
}

/* Abierto (no .collapsed): se convierte en “−” */
.pd-acc .accordion-button:not(.collapsed) .pd-acc-icon::after{
  opacity: 0;
}

/* Body sin borde y con padding controlado */
.pd-acc .accordion-body{
  padding: 12px 0 16px 0;
}

/* ===== HERO VISUAL (derecha) ===== */
.gummies-section .hero-visual{
  position: relative;
  width: 100%;
  min-height: 520px;          /* ajusta según tu diseño */
  height: 100%;
  background: #f3eee8;        /* opcional: igualar tu tono */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* La imagen NUNCA se corta */
.gummies-section .hero-visual #mainImage{
  width: 100%;
  height: 100%;
  object-fit: contain;        /* CLAVE */
  object-position: center;
  display: block;
}

/* Responsive: baja altura en móvil */
@media (max-width: 991.98px){
  .gummies-section .hero-visual{
    min-height: 380px;
  }
}
.checkout-note{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 12px 0;
  font-family: gotham, sans-serif;
}

.checkout-note--sub{
  background: #fff3d6;          /* amarillo suave */
  border-color: rgba(157, 97, 0, .25);
}

.checkout-note__title{
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 6px;
  color: #2b2b2b;
}

.checkout-note__text{
  font-size: 13px;
  line-height: 1.45;
  color: #2b2b2b;
  margin: 0;
}

.checkout-note__list{
  margin: 10px 0 0 0;
  padding-left: 18px;
  font-size: 13px;
  color: #2b2b2b;
}

.checkout-note__muted{
  color: rgba(0,0,0,.65);
  font-size: 12px;
  margin-top: 8px;
}
/* =========================================================
   PHI.IA – OVERRIDE (TIPOGRAFÍA + SLIDER DE PRODUCTOS)
   Pégalo al FINAL del CSS
========================================================= */

/* 1) Tipografía y tamaños del chat (evita el 0.9rem = 9px con body 10px) */
.phiia-modal .phiia-messages{
  font-family: "organetto-variable", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing: 0.6px;            /* menos agresivo que 2px para lectura */
}

.phiia-bubble{
  font-size: 13.5px;                /* fijo en px para no depender del rem */
  line-height: 1.45;
  border-radius: 16px;
}

/* Bot más “premium” */
.phiia-msg-bot .phiia-bubble{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  color: #111;
}

/* Usuario */
.phiia-msg-user .phiia-bubble{
  background: #000;
  color: #fff;
  font-weight: 500;
}

/* (Opcional) cuando inserts HTML de productos, que no parezca una burbuja enorme */
.phiia-bubble-products{
  padding: 10px 10px;
}


/* 2) PRODUCTOS: de “grid” a SLIDER horizontal */
.phiia-product-grid{
  display: flex;
  flex-wrap: nowrap;                /* 👈 clave: ya no wrap */
  gap: 12px;
  overflow-x: auto;
  padding: 6px 2px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin-top: 8px;
}

/* Scrollbar (suave, tipo tu product-scroller) */
.phiia-product-grid::-webkit-scrollbar{
  height: 8px;
}
.phiia-product-grid::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,0.15);
  border-radius: 10px;
}

/* Cada card: ancho fijo y “snap” */
.phiia-product-card{
  flex: 0 0 auto;
  width: 260px;                     /* ajusta 240–280 */
  max-width: none;                  /* override a tu max-width 220 */
  scroll-snap-align: start;
}

/* Botón/card más pro (sin perder tu look) */
.phiia-product-btn{
  width: 100%;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  background: #fff;
  padding: 12px;
  text-align: left;
  cursor: pointer;
  display: flex;
  gap: 12px;
  align-items: center;
  transition: transform .15s ease, box-shadow .15s ease;
}

.phiia-product-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

/* Imagen consistente */
.phiia-product-img-wrap{
  width: 64px;
  height: 64px;
  border-radius: 14px;
  overflow: hidden;
  background: #f5f5f5;
  flex: 0 0 auto;
}

.phiia-product-img-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tipos */
.phiia-product-name{
  font-family: "organetto-variable", system-ui, sans-serif;
  font-variation-settings: "wght" 45, "wdth" 80;  /* un poco más legible */
  letter-spacing: 0.8px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}

.phiia-product-desc{
  font-size: 12px;
  line-height: 1.35;
  color: rgba(0,0,0,0.70);
  max-height: none;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.phiia-product-link{
  font-size: 12px;
  font-weight: 700;
  color: #111;
  opacity: .85;
  margin-top: 6px;
}

/* 3) Mobile: cards un poco más angostas */
@media (max-width: 576px){
  .phiia-product-card{ width: 220px; }
  .phiia-bubble{ font-size: 13px; }
}


/* =========================================================
   PHI.IA – FORZAR GOTHAM + QUITAR LETTER-SPACING
   (Pegar al FINAL)
========================================================= */

#phiIaMessages,
#phiIaMessages *{
  font-family: gotham, "Gotham", "Gotham Book", "Gotham Pro",
               system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
  letter-spacing: normal !important;
}

/* Burbujas: tamaño/lectura pro */
#phiIaMessages .phiia-bubble{
  font-size: 14px !important;   /* fijo, no rem */
  line-height: 1.45 !important;
  font-weight: 400 !important;
}

/* User un pelín más firme */
#phiIaMessages .phiia-msg-user .phiia-bubble{
  font-weight: 500 !important;
}

/* SweetAlert estilo PHI FUNGI Newsletter */
.phiSwalPopup{
  border-radius: 18px !important;
  box-shadow: 0 18px 60px rgba(0,0,0,.18) !important;
}
.phiSwalTitle{
  font-family: gotham, sans-serif !important;
  letter-spacing: .3px;
}
.phiSwalHtml{
  font-family: gotham, sans-serif !important;
  font-size: 14px;
  line-height: 1.45;
  color: #273047;
}
.phiSwalBtn{
  border-radius: 999px !important;
  padding: 10px 22px !important;
  font-family: gotham, sans-serif !important;
  font-weight: 600 !important;
}


/* =========================================================
   RESPONSIVE PATCHES (solo UI, sin tocar lógica)
   ========================================================= */

/* Navbar/logo */
@media (max-width: 575.98px) {
  #mainNav .navbar-brand img#logo{
    width: 140px !important;
    height: auto;
  }

  #mainNav .navbar-toggler.custom-burger{
    transform: scale(.95);
  }

  /* Evita que el carrito/íconos choquen con el logo */
  #mainNav .nav-cart-mobile{
    font-size: 18px !important;
  }
}

/* Paneles laterales (Carrito / PH.IA) */
@media (max-width: 575.98px) {
  .right-modal .modal-dialog{
    max-width: 100%;
  }
  .cart-title{
    font-size: 24px;
    margin-bottom: 16px;
  }
  .cart-content{
    padding: 18px 14px;
    align-items: flex-start;
  }
  .cart-close{
    right: 14px;
    top: 14px;
  }

  .phiia-modal .phiia-dialog{
    max-width: 100%;
  }
}

/* Checkout */
@media (max-width: 575.98px) {
  .checkout-wrapper{
    padding: 16px 0 32px;
  }
  .checkout-main{
    padding: 16px;
    border-radius: 12px;
  }
  .checkout-left{
    padding-right: 0;
  }
  .checkout-right{
    margin-top: 14px;
  }
  .checkout-summary-box{
    padding: 14px;
    border-radius: 12px;
  }
  .checkout-cart-items{
    margin-top: 16px;
  }

  .checkout-coupon{
    flex-direction: column;
  }
  .checkout-coupon .btn-apply-coupon{
    width: 100%;
    padding: 12px 16px;
  }

  .checkout-cart-item{
    align-items: flex-start;
  }
  .checkout-cart-info{
    min-width: 0;
  }
  .checkout-cart-title{
    word-break: break-word;
  }
}

/* Tienda / grids: asegura tarjetas 2-col en xs y buen espaciado */
@media (max-width: 575.98px) {
  .container,
  .container-xxl{
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .mega-wrap{
    padding: 14px;
  }
}

/* Tipografía: evita títulos gigantes que rompen en phone */
@media (max-width: 575.98px) {
  h1, .display-1, .display-2, .display-3{
    word-break: break-word;
    font-size:30px !important;
  }
}

/* SOLO MÓVIL: topbar del mismo color sólido que el header fixed */
@media (max-width: 768px){
  .topbar{
    background: #e9e1de !important; /* color del header */
    color: #111 !important;
  }

  .topbar a{
    color: #111 !important;
    opacity: 0.9;
  }
  .topbar a:hover{ opacity: 1; }
}
/* SOLO MÓVIL: el nav fijo NO debe ser transparente */
@media (max-width: 768px){

  /* fuerza fondo sólido aunque tenga transparent-nav */
  #mainNav.navbar.fixed-top.transparent-nav{
    background: #e9e1de !important;   /* beige del header */
    opacity: 1 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none; /* opcional */
  }

  /* en tu HTML el carrito móvil trae color blanco inline; lo forzamos a oscuro para fondo claro */
  #mainNav #btn-ver-carrito-mobile{
    color: #111 !important;
  }

  /* si tu botón hamburguesa usa spans (líneas), que se vean en fondo claro */
  #mainNav .custom-burger span{
    background: #111 !important;
  }
}
@media (max-width: 768px){

  /* pinta TODO el NAV completo */
  #mainNav.navbar.fixed-top,
  #mainNav.navbar.fixed-top.transparent-nav{
    background-color: #e9e1de !important;
    background-image: none !important;
    opacity: 1 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* por si el fondo se estaba aplicando solo al container (línea) */
  #mainNav > .container,
  #mainNav .navbar-brand,
  #mainNav .navbar-toggler,
  #mainNav .nav-cart-mobile{
    background: transparent !important; /* deja que el fondo lo controle el NAV */
  }

  /* asegura altura/padding para que se vea como barra completa */
  #mainNav{
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  /* iconos en oscuro porque el fondo es claro */
  #mainNav #btn-ver-carrito-mobile{ color:#111 !important; }
  #mainNav .custom-burger span{ background:#111 !important; }
}





/* =========================================================
   Seed-style header + menus (namespaced to avoid conflicts)
   ========================================================= */

.seed-lock { overflow: hidden !important; }

.seed-nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  padding: 14px 18px;
  pointer-events: none; /* allow flyout backdrop clicks */
}
.seed-nav .seed-nav-inner{
  
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  pointer-events: auto;
}

.seed-pill{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(170, 170, 160, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 14px 40px rgba(0,0,0,0.10);
}

.seed-pill-left{ padding-left: 16px; padding-right: 18px; }
.seed-pill-right{ padding-left: 14px; padding-right: 14px; }

.seed-brand img{
  width: 66px;
  height: auto;
  display: block;
}

.seed-links{
  display: flex;
  align-items: center;
  gap: 10px;
}
.seed-link{
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.02em;
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer;
}
.seed-link:hover{ background: rgba(255,255,255,0.10); }
.seed-link.is-active{ background: rgba(255,255,255,0.16); }

.seed-link--ghost{
  color: rgba(255,255,255,0.92);
  text-decoration: none;
}

.seed-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: #f6f5f1;
  color: #1e2a18;
  border: 1px solid rgba(0,0,0,0.08);
}
.seed-cta:hover{ filter: brightness(0.98); }
.seed-cta--sm{ padding: 8px 12px; font-size: 12px; }

.seed-cart{
  position: relative;
  width: 40px; height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.10);
}
.seed-cart:hover{ background: rgba(255,255,255,0.16); }
.seed-cart-badge{
  position: absolute;
  top: -6px; right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #1e2a18;
  color: #fff;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(170, 170, 160, 0.72);
}

/* Mobile layout (match “Get Started + burger” pill on the right) */
.seed-mobile{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.seed-burger{
  width: 42px;
  height: 38px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.10);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}
.seed-burger span{
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,0.95);
  border-radius: 99px;
}

/* Flyout */
.seed-flyout{
  position: absolute;
  left: 18px;
  top: calc(100% + 10px);
  width: 380px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease;
}
.seed-flyout.is-open{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.seed-flyout-panel{
  border-radius: 28px;
  background: rgba(150, 150, 140, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.20);
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
  overflow: hidden;
}
.seed-flyout-body{
  padding: 14px;
  max-height: calc(100vh - 140px);
  overflow: auto;
}

/* Panel content */
.seed-panel{ display: flex; flex-direction: column; gap: 12px; }
.seed-panel-list{ display: flex; flex-direction: column; gap: 10px; }

.seed-row{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 18px;
  text-decoration: none;
  color: rgba(255,255,255,0.92);
}
.seed-row:hover{ background: rgba(0,0,0,0.12); }
.seed-row-img{
  width: 52px; height: 52px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.10);
  flex: 0 0 auto;
}
.seed-row-img img{ width: 100%; height: 100%; object-fit: cover; display: block; }

.seed-row-img--big{ width: 56px; height: 56px; border-radius: 16px; }

.seed-row-txt{ min-width: 0; }
.seed-row-code{
  font-size: 11px;
  opacity: 0.75;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.seed-row-title{
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.seed-row-sub{
  font-size: 12px;
  opacity: 0.75;
  line-height: 1.25;
  max-width: 260px;
}
.seed-row-badge{
  margin-left: auto;
  font-size: 11px;
  font-weight: 900;
  background: rgba(214, 255, 158, 0.92);
  color: #1e2a18;
  padding: 5px 10px;
  border-radius: 999px;
}

.seed-panel-cta{
  margin-top: 4px;
  padding: 12px 10px 6px;
  text-decoration: none;
  color: rgba(255,255,255,0.90);
  font-weight: 900;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.30);
  width: fit-content;
}
.seed-panel-cta--muted{ opacity: 0.9; }

.seed-panel-ref{
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.seed-panel-ref-title{
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  opacity: 0.65;
  margin-bottom: 10px;
}
.seed-panel-ref-links{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.seed-panel-ref-links a{
  text-decoration: none;
  color: rgba(255,255,255,0.90);
  font-size: 12px;
  font-weight: 800;
  opacity: 0.92;
}
.seed-panel-ref-links a:hover{ opacity: 1; text-decoration: underline; }

.seed-panel-featured{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.seed-feature{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgba(255,255,255,0.92);
  padding: 10px;
  border-radius: 18px;
}
.seed-feature:hover{ background: rgba(0,0,0,0.12); }
.seed-feature-img{
  width: 58px; height: 44px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.10);
  flex: 0 0 auto;
}
.seed-feature-img img{ width:100%; height:100%; object-fit: cover; display:block; }
.seed-feature-title{
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}
.seed-feature-meta{
  font-size: 11px;
  opacity: 0.70;
  margin-top: 4px;
}

/* Mobile overlay */
.seed-mobilemenu{
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  padding: 18px;
  background: rgba(0,0,0,0.08);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.seed-mobilemenu.is-open{ display: block; }

.seed-mobilemenu-card{
  width: min(420px, 100%);
  max-height: calc(100vh - 36px);
  border-radius: 28px;
  background: rgba(150, 150, 140, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.20);
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
  overflow: hidden;
}

.seed-mobilemenu-top{
  padding: 12px 12px 0 12px;
}
.seed-mobilemenu-tabs{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.18);
}
.seed-mtab{
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.88);
  font-weight: 900;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
}
.seed-mtab.is-active{ background: rgba(255,255,255,0.14); }
.seed-mtab-link{ display: inline-flex; align-items:center; }
.seed-mclose{
  margin-left: auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.seed-mobilemenu-content{
  padding: 14px;
  max-height: calc(100vh - 120px);
  overflow: auto;
}

/* Scrollbars (subtle) */
.seed-flyout-body::-webkit-scrollbar,
.seed-mobilemenu-content::-webkit-scrollbar{ width: 10px; }
.seed-flyout-body::-webkit-scrollbar-thumb,
.seed-mobilemenu-content::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,0.18);
  border-radius: 99px;
  border: 3px solid rgba(0,0,0,0);
  background-clip: padding-box;
}

/* When nav becomes "solid" after hero: slightly stronger pills */
.seed-nav.nav-solid .seed-pill{
  background: rgba(170, 170, 160, 0.86);
}

/* Hide flyout on small screens */
@media (max-width: 991.98px){
  .seed-flyout{ display: none; }
}
