:root {
      --brand: #654A94;
      --brand-deep: #4f376f;
      --brand-soft: #8b73b5;
      --brand-mist: #ece6f5;
      --ink: #1c1824;
      --ink-soft: #5a5366;
      --paper: #f6f3ef;
      --paper-warm: #efeae4;
      --white: #ffffff;
      --line: rgba(28, 24, 36, 0.1);
      --max: 1320px;
    }

    * { box-sizing: border-box; }
    html {
      scroll-behavior: smooth;
      overflow-x: clip;
    }
    body {
      font-family: "Manrope", sans-serif;
      color: var(--ink);
      background: var(--paper);
      line-height: 1.55;
      overflow-x: clip;
    }
    img { display: block; max-width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; border: 0; cursor: pointer; background: none; color: inherit; }
    ul { list-style: none; }

    .topbar {
      background: var(--ink);
      color: rgba(255,255,255,0.88);
      font-size: 0.78rem;
    }
    .topbar-inner, .header-inner, .nav-inner, .section, .band-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding-left: 1.25rem;
      padding-right: 1.25rem;
    }
    .topbar-inner {
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
      align-items: center;
    }
    .topbar a { color: #fff; font-weight: 700; }

    /* Logo row: solid white for logo background */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 60;
      background-color: #ffffff;
      border-bottom: 1px solid var(--line);
    }
    .header-inner {
      min-height: 92px;
      display: grid;
      grid-template-columns: 1.1fr auto 1.1fr;
      align-items: center;
      gap: 1rem;
      background-color: #ffffff;
    }
    .search {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      background: #f7f5fa;
      border: 1px solid #e7e1f0;
      border-radius: 999px;
      padding: 0.7rem 1rem;
      max-width: 320px;
      transition: border-color 0.2s, background 0.2s;
    }
    .search:focus-within {
      border-color: var(--brand-soft);
      background: #ffffff;
    }
    .search input {
      border: 0;
      outline: 0;
      background: transparent;
      width: 100%;
      font: inherit;
      color: var(--ink);
    }
    .brand {
      justify-self: center;
      background: #fff;
      padding: 0.35rem 0.5rem;
    }
    .brand img { width: min(250px, 56vw); }
    .header-actions {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 0.65rem;
    }
    .header-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 0.65rem 1rem;
      font-size: 0.86rem;
      font-weight: 600;
      background: #fff;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .header-link:hover {
      border-color: var(--brand);
      color: var(--brand);
      background: var(--brand-mist);
    }
    .icon-btn {
      width: 44px;
      height: 44px;
      border-radius: 999px;
      border: 1px solid var(--line);
      display: grid;
      place-items: center;
      background: #fff;
      position: relative;
    }
    .cart-count {
      position: absolute;
      top: -3px;
      right: -3px;
      min-width: 18px;
      height: 18px;
      border-radius: 999px;
      background: var(--brand);
      color: #fff;
      font-size: 0.68rem;
      font-weight: 700;
      display: grid;
      place-items: center;
      padding: 0 4px;
    }
    /* Mockup-only; never hide PrestaShop / Hummingbird hamburger */
    .header-inner .menu-toggle { display: none; }

    .main-nav {
      background: var(--brand);
      color: #fff;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.2rem;
      flex-wrap: wrap;
      min-height: 48px;
    }
    .nav-inner a {
      padding: 0.85rem 1rem;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      opacity: 0.92;
      transition: opacity 0.2s, background 0.2s;
    }
    .nav-inner a:hover {
      opacity: 1;
      background: rgba(255,255,255,0.1);
    }

    .hero {
      position: relative;
      min-height: min(68vh, 640px);
      display: grid;
      align-items: center;
      align-content: center;
      color: #fff;
      overflow: hidden;
      isolation: isolate;
      /* nudge block down so it reads centered above the overlapping trust strip */
      padding: 2.75rem 0 3.75rem;
    }
    .hero-media, .hero-media img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
    }
    .hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(105deg, rgba(28,24,36,0.82) 0%, rgba(79,55,111,0.55) 45%, rgba(28,24,36,0.28) 100%),
        linear-gradient(180deg, rgba(28,24,36,0.1), rgba(28,24,36,0.45));
      z-index: -1;
    }
    .hero-media img { animation: heroDrift 18s ease-in-out infinite alternate; }
    .hero-inner {
      max-width: var(--max);
      width: 100%;
      margin: 0 auto;
      padding: 0 1.25rem;
      display: grid;
      grid-template-columns: 1.25fr 0.75fr;
      gap: 2rem;
      align-items: center; /* keep finance panel vertically centered with copy */
    }
    .hero-copy { max-width: 38rem; animation: riseIn 0.9s ease both; }
    .hero-kicker {
      display: block;
      margin: 0 0 0.55rem;
      font-family: "Outfit", sans-serif;
      font-size: clamp(0.95rem, 1.6vw, 1.12rem);
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #f0c96a;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    }
    .hero-brand {
      font-family: "Outfit", sans-serif;
      font-size: clamp(2.4rem, 5.4vw, 3.8rem);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }
    .hero-brand__name {
      display: block;
      text-shadow: 0 2px 18px rgba(0,0,0,0.25);
    }
    .hero-brand em {
      font-style: normal;
      color: #efe6ff;
      font-weight: 700;
    }
    .hero-line {
      font-size: 1.08rem;
      color: rgba(255,255,255,0.9);
      max-width: 34rem;
      margin-bottom: 1.5rem;
    }
    .cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      min-height: 50px;
      padding: 0.8rem 1.35rem;
      border-radius: 999px;
      font-weight: 700;
      transition: transform 0.2s, background 0.2s, color 0.2s;
    }
    .btn-primary {
      background: var(--brand);
      color: #fff;
      box-shadow: 0 12px 30px rgba(101,74,148,0.35);
    }
    .btn-primary:hover { background: var(--brand-deep); transform: translateY(-2px); }
    .btn-ghost {
      border: 1px solid rgba(255,255,255,0.4);
      background: rgba(255,255,255,0.1);
      color: #fff;
      backdrop-filter: blur(6px);
    }
    .btn-ghost:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
    .btn-outline {
      border: 1px solid var(--brand);
      color: var(--brand);
      background: #fff;
    }
    .btn-outline:hover { background: var(--brand); color: #fff; }
    .btn-dark { background: var(--ink); color: #fff; }
    .btn-dark:hover { background: var(--brand-deep); }

    .hero-panel {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.25);
      backdrop-filter: blur(12px);
      padding: 1.25rem 1.35rem;
      animation: riseIn 1s ease 0.1s both;
    }
    .hero-panel h2 {
      font-family: "Outfit", sans-serif;
      font-size: 1.35rem;
      font-weight: 700;
      margin-bottom: 0.85rem;
      letter-spacing: -0.02em;
    }
    .hero-panel ul { display: grid; gap: 0.55rem; font-size: 0.92rem; }
    .hero-panel li {
      display: grid;
      grid-template-columns: 18px 1fr;
      gap: 0.5rem;
      align-items: start;
    }
    .hero-panel li::before {
      content: "✓";
      color: #e6daf8;
      font-weight: 800;
    }

    /* Hero financing spotlight — premium eye-catcher */
    .hero-finance {
      --finance-gold: #f0c96a;
      --finance-gold-soft: rgba(240, 201, 106, 0.35);
      position: relative;
      isolation: isolate;
      overflow: hidden;
      padding: 1.25rem 1.3rem 1.15rem;
      border: 1px solid rgba(255, 255, 255, 0.28);
      background:
        linear-gradient(145deg, rgba(28, 24, 36, 0.55) 0%, rgba(79, 55, 111, 0.42) 48%, rgba(28, 24, 36, 0.38) 100%),
        rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(18px) saturate(1.25);
      -webkit-backdrop-filter: blur(18px) saturate(1.25);
      box-shadow:
        0 28px 60px rgba(8, 6, 14, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
      animation: financeIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
    }
    .hero-finance::before {
      content: "";
      position: absolute;
      inset: 0;
      padding: 1px;
      border-radius: inherit;
      background: linear-gradient(
        130deg,
        rgba(240, 201, 106, 0.85) 0%,
        rgba(255, 255, 255, 0.18) 28%,
        rgba(240, 201, 106, 0.15) 55%,
        rgba(255, 255, 255, 0.35) 100%
      );
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
      z-index: 2;
      opacity: 0.9;
    }
    .hero-finance__glow {
      position: absolute;
      width: 220px;
      height: 220px;
      right: -70px;
      top: -80px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(240, 201, 106, 0.38) 0%, rgba(240, 201, 106, 0) 68%);
      filter: blur(2px);
      pointer-events: none;
      z-index: 0;
      animation: financeOrb 6s ease-in-out infinite alternate;
    }
    .hero-finance__sheen {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        115deg,
        transparent 30%,
        rgba(255, 255, 255, 0.16) 48%,
        transparent 62%
      );
      transform: translateX(-120%);
      animation: financeSheen 4.8s ease-in-out 1.1s infinite;
      pointer-events: none;
      z-index: 1;
    }
    .hero-finance__mark {
      position: absolute;
      right: 0.4rem;
      top: 0.15rem;
      font-family: "Outfit", sans-serif;
      font-size: clamp(3.6rem, 6.5vw, 4.6rem);
      font-weight: 800;
      letter-spacing: -0.08em;
      line-height: 0.85;
      color: transparent;
      background: linear-gradient(180deg, rgba(240, 201, 106, 0.28), rgba(240, 201, 106, 0.04));
      -webkit-background-clip: text;
      background-clip: text;
      pointer-events: none;
      z-index: 0;
      user-select: none;
      animation: financeMark 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
    }
    .hero-finance__top {
      position: relative;
      z-index: 2;
      margin-bottom: 0.85rem;
    }
    .hero-finance__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      margin: 0 0 0.55rem;
      font-family: "Outfit", sans-serif;
      font-size: 0.74rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--finance-gold);
    }
    .hero-finance__eyebrow::before {
      content: "";
      width: 1.4rem;
      height: 1px;
      background: linear-gradient(90deg, var(--finance-gold), transparent);
    }
    .hero-finance h2 {
      position: relative;
      margin: 0 0 0.45rem;
      max-width: 14ch;
      font-size: clamp(1.28rem, 2.2vw, 1.62rem);
      font-weight: 750;
      line-height: 1.08;
      letter-spacing: -0.03em;
      text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
    }
    .hero-finance h2 span {
      display: block;
      margin-top: 0.15rem;
      font-size: 0.72em;
      font-weight: 650;
      letter-spacing: -0.02em;
      color: rgba(255, 255, 255, 0.92);
    }
    .hero-finance h2 em {
      font-style: normal;
      color: var(--finance-gold);
      font-weight: 780;
    }
    .hero-finance__lead {
      position: relative;
      margin: 0;
      max-width: 30ch;
      font-size: 0.9rem;
      line-height: 1.4;
      color: rgba(255, 255, 255, 0.86);
    }
    .hero-finance__options {
      position: relative;
      z-index: 2;
      display: grid;
      gap: 0.5rem;
    }
    .hero-finance__option {
      position: relative;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 0.7rem;
      padding: 0.7rem 0.75rem;
      color: #fff;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.18);
      overflow: hidden;
      transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
      animation: financeRow 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    .hero-finance__option--paypal { animation-delay: 0.22s; }
    .hero-finance__option--cofidis { animation-delay: 0.34s; }
    .hero-finance__option::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--finance-gold), transparent);
      transform: scaleX(0.15);
      opacity: 0.35;
      transition: transform 0.35s ease, opacity 0.35s ease;
    }
    .hero-finance__option:hover,
    .hero-finance__option:focus-visible {
      transform: translateY(-3px) scale(1.015);
      background: rgba(255, 255, 255, 0.18);
      border-color: rgba(240, 201, 106, 0.55);
      box-shadow: 0 14px 30px rgba(8, 6, 14, 0.28);
      outline: none;
    }
    .hero-finance__option:hover::after,
    .hero-finance__option:focus-visible::after {
      transform: scaleX(1);
      opacity: 1;
    }
    .hero-finance__stat {
      display: grid;
      place-items: center;
      width: 3.05rem;
      min-height: 3.05rem;
      padding: 0.3rem 0.15rem;
      background: linear-gradient(160deg, rgba(240, 201, 106, 0.95), rgba(214, 168, 72, 0.88));
      color: #1c1824;
      box-shadow: 0 8px 18px rgba(240, 201, 106, 0.25);
    }
    .hero-finance__stat b {
      font-family: "Outfit", sans-serif;
      font-size: 1.45rem;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.04em;
    }
    .hero-finance__stat small {
      font-family: "Outfit", sans-serif;
      font-size: 0.58rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      opacity: 0.8;
    }
    .hero-finance__body {
      display: grid;
      gap: 0.2rem;
      min-width: 0;
    }
    .hero-finance__brand {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      min-width: 0;
    }
    /* Beat later `.page-content img { height:auto; max-width:100% }` */
    .hero-finance .hero-finance__brand img,
    .page-content .hero-finance .hero-finance__brand img {
      width: auto !important;
      height: 1.15rem !important;
      max-width: 2.4rem !important;
      max-height: 1.15rem !important;
      object-fit: contain !important;
      background: #fff;
      border-radius: 0.35rem;
      padding: 0.15rem 0.25rem;
    }
    .hero-finance .hero-finance__option--paypal .hero-finance__brand img,
    .page-content .hero-finance .hero-finance__option--paypal .hero-finance__brand img {
      height: 1.35rem !important;
      max-width: 1.55rem !important;
      max-height: 1.35rem !important;
      padding: 0.1rem;
      border-radius: 999px;
    }
    .hero-finance__brand strong {
      font-family: "Outfit", sans-serif;
      font-size: 1rem;
      font-weight: 750;
      letter-spacing: -0.015em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .hero-finance__hint {
      font-size: 0.84rem;
      line-height: 1.3;
      color: rgba(255, 255, 255, 0.78);
    }
    .hero-finance__go {
      display: grid;
      place-items: center;
      width: 2.1rem;
      height: 2.1rem;
      color: #1c1824;
      background: rgba(240, 201, 106, 0.92);
      border-radius: 999px;
      transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), background 0.28s ease;
    }
    .hero-finance__option:hover .hero-finance__go,
    .hero-finance__option:focus-visible .hero-finance__go {
      transform: translateX(4px);
      background: #fff;
    }
    .hero-finance__note {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: flex-start;
      gap: 0.55rem;
      margin: 0.75rem 0 0;
      padding-top: 0.7rem;
      border-top: 1px solid rgba(255, 255, 255, 0.14);
      font-size: 0.8rem;
      line-height: 1.4;
      color: rgba(255, 255, 255, 0.74);
    }
    .hero-finance__pulse {
      flex: 0 0 auto;
      width: 0.55rem;
      height: 0.55rem;
      margin-top: 0.28rem;
      border-radius: 50%;
      background: #7ddea3;
      box-shadow: 0 0 0 0 rgba(125, 222, 163, 0.55);
      animation: financePulse 2.2s ease-out infinite;
    }
    @keyframes financeIn {
      from { opacity: 0; transform: translateY(24px) scale(0.98); }
      to { opacity: 1; transform: none; }
    }
    @keyframes financeMark {
      from { opacity: 0; transform: translateY(12px) scale(0.92); }
      to { opacity: 1; transform: none; }
    }
    @keyframes financeRow {
      from { opacity: 0; transform: translateY(16px); }
      to { opacity: 1; transform: none; }
    }
    @keyframes financeSheen {
      0%, 55% { transform: translateX(-120%); }
      75%, 100% { transform: translateX(120%); }
    }
    @keyframes financeOrb {
      from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.75; }
      to { transform: translate3d(-18px, 14px, 0) scale(1.12); opacity: 1; }
    }
    @keyframes financePulse {
      0% { box-shadow: 0 0 0 0 rgba(125, 222, 163, 0.55); }
      70% { box-shadow: 0 0 0 10px rgba(125, 222, 163, 0); }
      100% { box-shadow: 0 0 0 0 rgba(125, 222, 163, 0); }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-finance,
      .hero-finance__glow,
      .hero-finance__sheen,
      .hero-finance__mark,
      .hero-finance__option,
      .hero-finance__pulse {
        animation: none !important;
      }
    }

    .trust-strip {
      position: relative;
      z-index: 2;
      margin-top: -2.4rem;
      padding: 0 1.25rem 0.35rem;
      background: transparent;
      border: 0;
    }
    .trust-strip .section,
    .trust-strip__grid {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.95rem;
    }
    .trust-item {
      --trust-accent: #654a94;
      --trust-soft: #f3edfb;
      position: relative;
      display: grid;
      grid-template-rows: auto 1fr auto;
      gap: 0.95rem;
      min-height: 100%;
      padding: 1.2rem 1.15rem 1.1rem;
      background:
        linear-gradient(165deg, #ffffff 0%, #fffcf8 58%, var(--trust-soft) 100%);
      border: 1px solid rgba(36, 28, 51, 0.08);
      border-radius: 22px;
      box-shadow: 0 16px 36px rgba(36, 28, 51, 0.1);
      overflow: hidden;
      text-decoration: none !important;
      color: inherit;
      transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    }
    .trust-item__glow {
      position: absolute;
      width: 140px;
      height: 140px;
      top: -48px;
      right: -36px;
      border-radius: 50%;
      background: radial-gradient(circle, color-mix(in srgb, var(--trust-accent) 28%, transparent), transparent 68%);
      pointer-events: none;
    }
    .trust-item--advice { --trust-accent: #2f9e6b; --trust-soft: #eefaf3; }
    .trust-item--delivery { --trust-accent: #654a94; --trust-soft: #f3edfb; }
    .trust-item--rating { --trust-accent: #d4a84b; --trust-soft: #fff7e8; }
    .trust-item--store { --trust-accent: #3d5a80; --trust-soft: #eef3f8; }

    a.trust-item:hover,
    a.trust-item:focus-visible {
      transform: translateY(-7px);
      border-color: color-mix(in srgb, var(--trust-accent) 35%, transparent);
      box-shadow: 0 24px 48px rgba(36, 28, 51, 0.16);
      outline: none;
    }
    .trust-item--rating:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(36, 28, 51, 0.12);
    }
    .trust-top {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.7rem;
    }
    .trust-ico {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      background: #fff;
      color: var(--trust-accent);
      border: 1px solid color-mix(in srgb, var(--trust-accent) 22%, transparent);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      box-shadow: 0 8px 18px color-mix(in srgb, var(--trust-accent) 16%, transparent);
    }
    .trust-ico svg { display: block; }
    .trust-tag {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0.2rem 0.65rem;
      border-radius: 999px;
      background: color-mix(in srgb, var(--trust-accent) 12%, #fff);
      color: color-mix(in srgb, var(--trust-accent) 82%, #1f1830);
      border: 1px solid color-mix(in srgb, var(--trust-accent) 18%, transparent);
      font-family: "Outfit", sans-serif;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .trust-body {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 0.4rem;
      align-content: start;
    }
    .trust-item strong {
      display: block;
      font-family: "Outfit", sans-serif;
      font-size: 1.12rem;
      font-weight: 800;
      letter-spacing: -0.025em;
      line-height: 1.2;
      color: #1f1830;
      margin: 0;
    }
    .trust-body > span:not(.trust-stars) {
      color: #5c5470;
      font-size: 0.9rem;
      line-height: 1.45;
    }
    .trust-stars {
      display: inline-flex;
      align-items: center;
      gap: 0.18rem;
      margin: 0.1rem 0 0.15rem;
    }
    .trust-stars i {
      width: 14px;
      height: 14px;
      display: inline-block;
      background: #d4a84b;
      clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    }
    .trust-stars i.is-half {
      background: linear-gradient(90deg, #d4a84b 55%, #e5d7b4 55%);
    }
    .trust-cta {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
      min-height: 38px;
      padding: 0.35rem 0.75rem;
      border-radius: 999px;
      background: #fff;
      border: 1px solid color-mix(in srgb, var(--trust-accent) 22%, transparent);
      color: color-mix(in srgb, var(--trust-accent) 88%, #1f1830);
      font-size: 0.82rem;
      font-weight: 800;
      line-height: 1.2;
      transition: background 0.2s ease, transform 0.2s ease;
    }
    .trust-cta em {
      font-style: normal;
      transition: transform 0.2s ease;
    }
    a.trust-item:hover .trust-cta {
      background: color-mix(in srgb, var(--trust-accent) 10%, #fff);
    }
    a.trust-item:hover .trust-cta em {
      transform: translateX(3px);
    }
    .trust-cta--static {
      justify-content: center;
      color: #6b6280;
      font-weight: 700;
      background: rgba(255, 255, 255, 0.7);
    }
    .trust-num { display: none !important; }

    .section { padding-top: 2.75rem; padding-bottom: 2.75rem; }
    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 1.5rem;
      margin-bottom: 1.75rem;
      flex-wrap: wrap;
    }
    .section-head > div { max-width: 46rem; }
    .eyebrow {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--brand);
      margin-bottom: 0.45rem;
    }
    .section-head h2, .seo-block h2, .faq h2, .split h2 {
      font-family: "Outfit", sans-serif;
      font-size: clamp(1.7rem, 3.2vw, 2.45rem);
      font-weight: 750;
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.03em;
    }
    .section-head p, .seo-block > p, .split p {
      color: var(--ink-soft);
      margin-top: 0.55rem;
      font-size: 1.02rem;
    }

    .cat-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.85rem;
    }
    .cat {
      position: relative;
      min-height: 300px;
      overflow: hidden;
      color: #fff;
      isolation: isolate;
      background: var(--brand-deep);
    }
    .cat img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.9s ease;
    }
    .cat::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 25%, rgba(28,24,36,0.82) 100%);
    }
    .cat:hover img { transform: scale(1.06); }
    .cat-copy {
      position: absolute;
      left: 1rem;
      right: 1rem;
      bottom: 1rem;
      z-index: 2;
    }
    .cat-copy span {
      display: block;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      opacity: 0.85;
      margin-bottom: 0.25rem;
    }
    .cat-copy strong {
      font-family: "Outfit", sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      display: block;
      line-height: 1.15;
      letter-spacing: -0.02em;
    }
    .cat-copy em {
      display: inline-block;
      margin-top: 0.55rem;
      font-style: normal;
      font-size: 0.82rem;
      font-weight: 700;
      opacity: 0;
      transform: translateY(6px);
      transition: 0.25s ease;
    }
    .cat:hover .cat-copy em { opacity: 1; transform: none; }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }
    .product {
      background: #fff;
      border: 1px solid var(--line);
      padding: 0.85rem;
      display: grid;
      gap: 0.75rem;
      transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .product:hover {
      border-color: rgba(101,74,148,0.35);
      transform: translateY(-3px);
      box-shadow: 0 16px 40px rgba(79,55,111,0.1);
    }
    .product-media {
      aspect-ratio: 1;
      background: var(--paper-warm);
      position: relative;
      overflow: hidden;
    }
    .product-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }
    .product:hover .product-media img { transform: scale(1.04); }
    .badge {
      position: absolute;
      top: 0.65rem;
      left: 0.65rem;
      background: var(--brand);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 800;
      padding: 0.3rem 0.55rem;
      letter-spacing: 0.04em;
    }
    .product h3 { font-size: 0.98rem; line-height: 1.3; min-height: 2.6em; }
    .meta { color: var(--ink-soft); font-size: 0.8rem; }
    .price {
      display: flex;
      align-items: baseline;
      gap: 0.5rem;
      font-weight: 800;
    }
    .price s { color: var(--ink-soft); font-weight: 500; font-size: 0.88rem; }
    .product .btn {
      min-height: 42px;
      font-size: 0.88rem;
      width: 100%;
      border-radius: 8px;
    }

    .split {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 2rem;
      align-items: stretch;
    }
    .split-media {
      position: relative;
      min-height: 480px;
      overflow: hidden;
      border: 1px solid var(--line);
      isolation: isolate;
    }
    .split-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      animation: kenBurns 18s ease-in-out infinite alternate;
    }
    .split-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(28,24,36,0.55));
      z-index: 1;
    }
    .split-badge {
      position: absolute;
      left: 1.1rem;
      bottom: 1.1rem;
      z-index: 2;
      color: #fff;
      font-family: "Outfit", sans-serif;
      font-weight: 700;
      font-size: 1.15rem;
      letter-spacing: -0.02em;
    }
    .feature-list {
      display: grid;
      gap: 0.9rem;
      margin: 1.25rem 0 1.5rem;
    }
    .feature-list li {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 0.7rem;
      padding-bottom: 0.9rem;
      border-bottom: 1px solid var(--line);
    }
    .feature-list strong { display: block; margin-bottom: 0.15rem; }
    .feature-list p { color: var(--ink-soft); font-size: 0.95rem; }
    .dot {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--brand);
      color: #fff;
      display: grid;
      place-items: center;
      font-size: 0.75rem;
      font-weight: 800;
    }

    .seo-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 1rem;
    }
    .seo-block {
      position: relative;
      background: #fff;
      border: 1px solid var(--line);
      padding: 0;
      overflow: hidden;
      display: grid;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }
    .seo-block:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 50px rgba(79,55,111,0.12);
    }
    .seo-block.has-media {
      grid-template-rows: 220px 1fr;
    }
    .seo-media {
      position: relative;
      overflow: hidden;
      min-height: 220px;
      background: var(--brand-deep);
    }
    .seo-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
    }
    .seo-block:hover .seo-media img { transform: scale(1.06); }
    .seo-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(28,24,36,0.05), rgba(79,55,111,0.35));
    }
    .seo-body { padding: 1.4rem 1.35rem 1.5rem; }
    .seo-block h2 { font-size: clamp(1.45rem, 2.5vw, 1.9rem); margin-bottom: 0.7rem; }
    .seo-block p { color: var(--ink-soft); margin-bottom: 0.85rem; }
    .seo-block ul {
      display: grid;
      gap: 0.45rem;
      margin: 0.8rem 0 1rem;
      color: var(--ink-soft);
    }
    .seo-block li {
      padding-left: 1rem;
      position: relative;
    }
    .seo-block li::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--brand);
      position: absolute;
      left: 0;
      top: 0.55rem;
    }
    .seo-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      margin-top: 0.75rem;
    }
    .seo-links a {
      background: var(--brand-mist);
      color: var(--brand-deep);
      font-size: 0.8rem;
      font-weight: 700;
      padding: 0.45rem 0.75rem;
      border-radius: 999px;
      transition: background 0.2s, color 0.2s, transform 0.2s;
    }
    .seo-links a:hover {
      background: var(--brand);
      color: #fff;
      transform: translateY(-2px);
    }

    .visual-band {
      position: relative;
      overflow: hidden;
      min-height: 280px;
      color: #fff;
      display: grid;
      align-items: end;
      border: 1px solid var(--line);
      margin-bottom: 1rem;
    }
    .visual-band img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      animation: kenBurns 20s ease-in-out infinite alternate;
    }
    .visual-band::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(105deg, rgba(28,24,36,0.82), rgba(79,55,111,0.45) 55%, rgba(28,24,36,0.2));
    }
    .visual-band-copy {
      position: relative;
      z-index: 2;
      padding: 2rem 1.5rem;
      max-width: 36rem;
    }
    .visual-band-copy h2 {
      font-family: "Outfit", sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      margin: 0.35rem 0 0.55rem;
    }
    .visual-band-copy p { color: rgba(255,255,255,0.9); }

    .mosaic {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      grid-template-rows: 220px 220px;
      gap: 0.85rem;
      margin-top: 1rem;
    }
    .mosaic-item {
      position: relative;
      overflow: hidden;
      color: #fff;
      isolation: isolate;
      min-height: 220px;
    }
    .mosaic-item:first-child { grid-row: span 2; min-height: 100%; }
    .mosaic-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.9s ease;
    }
    .mosaic-item:hover img { transform: scale(1.07); }
    .mosaic-item::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 30%, rgba(28,24,36,0.78));
    }
    .mosaic-copy {
      position: absolute;
      left: 1rem;
      right: 1rem;
      bottom: 1rem;
      z-index: 2;
    }
    .mosaic-copy span {
      display: block;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      opacity: 0.85;
      margin-bottom: 0.25rem;
    }
    .mosaic-copy strong {
      font-family: "Outfit", sans-serif;
      font-size: 1.25rem;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .reviews-wrap {
      position: relative;
      border: 1px solid var(--line);
      overflow: hidden;
      background: #fff;
    }
    .reviews-hero {
      position: relative;
      min-height: 240px;
      color: #fff;
      display: grid;
      align-items: end;
      overflow: hidden;
    }
    .reviews-hero img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      animation: kenBurns 22s ease-in-out infinite alternate;
    }
    .reviews-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, rgba(28,24,36,0.88), rgba(79,55,111,0.55) 55%, rgba(28,24,36,0.25));
    }
    .reviews-hero-copy {
      position: relative;
      z-index: 2;
      padding: 2rem 1.5rem;
      display: grid;
      grid-template-columns: 1.2fr auto;
      gap: 1.5rem;
      align-items: end;
    }
    .reviews-hero-copy h2 {
      font-family: "Outfit", sans-serif;
      font-size: clamp(1.7rem, 3vw, 2.3rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      margin: 0.3rem 0 0.45rem;
    }
    .reviews-hero-copy p { color: rgba(255,255,255,0.9); max-width: 40rem; }
    .score-chip {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.28);
      backdrop-filter: blur(10px);
      padding: 1rem 1.2rem;
      min-width: 180px;
      text-align: center;
    }
    .score-chip .score {
      font-family: "Outfit", sans-serif;
      font-size: 3.4rem;
      font-weight: 800;
      line-height: 0.95;
      letter-spacing: -0.04em;
      color: #fff;
    }
    .score-chip .stars {
      color: #f6d58a;
      letter-spacing: 0.12em;
      margin: 0.35rem 0;
    }
    .reviews {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 0;
    }
    .score-panel {
      position: relative;
      background:
        linear-gradient(165deg, rgba(101,74,148,0.12), transparent 55%),
        #fff;
      border-right: 1px solid var(--line);
      padding: 1.6rem 1.4rem 1.5rem;
      display: grid;
      gap: 1rem;
      align-content: start;
    }
    .score-panel .stat-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.7rem;
    }
    .stat {
      background: var(--paper);
      border: 1px solid var(--line);
      padding: 0.85rem 0.9rem;
    }
    .stat strong {
      display: block;
      font-family: "Outfit", sans-serif;
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--brand-deep);
      letter-spacing: -0.02em;
    }
    .stat span {
      color: var(--ink-soft);
      font-size: 0.8rem;
    }
    .score-panel .mini-photos {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 0.55rem;
      min-height: 140px;
    }
    .score-panel .mini-photos span {
      display: block;
      overflow: hidden;
      position: relative;
      min-height: 140px;
    }
    .score-panel .mini-photos img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }
    .score-panel .mini-photos span:hover img { transform: scale(1.06); }
    .review {
      background: #fff;
      border: 1px solid var(--line);
      padding: 1.25rem 1.2rem;
      display: grid;
      gap: 0.65rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .review::before {
      content: "“";
      position: absolute;
      top: -0.15rem;
      right: 0.7rem;
      font-family: "Outfit", sans-serif;
      font-size: 4.5rem;
      line-height: 1;
      color: rgba(101,74,148,0.12);
      font-weight: 800;
    }
    .review:hover {
      transform: translateY(-4px);
      border-color: rgba(101,74,148,0.28);
      box-shadow: 0 18px 40px rgba(79,55,111,0.12);
    }
    .stars { color: var(--brand); letter-spacing: 0.12em; margin: 0; }
    .review-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.85rem;
      padding: 1rem;
      background: var(--paper);
    }
    .review-head {
      display: flex;
      align-items: center;
      gap: 0.7rem;
    }
    .avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-weight: 800;
      font-size: 0.85rem;
      color: #fff;
      background: linear-gradient(145deg, var(--brand), var(--brand-deep));
      flex-shrink: 0;
    }
    .review h3 {
      font-size: 1rem;
      margin: 0;
      font-family: "Outfit", sans-serif;
      font-weight: 700;
      letter-spacing: -0.02em;
    }
    .review .meta-line {
      color: var(--ink-soft);
      font-size: 0.78rem;
    }
    .review p { color: var(--ink-soft); font-size: 0.93rem; position: relative; z-index: 1; }
    .review cite {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
      margin-top: 0.2rem;
      font-style: normal;
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--brand-deep);
    }
    .review .verified {
      background: var(--brand-mist);
      color: var(--brand-deep);
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 0.25rem 0.45rem;
      border-radius: 999px;
    }

    .guide {
      background: linear-gradient(180deg, #fff, var(--paper));
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .guide-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }
    .guide article {
      position: relative;
      background: #fff;
      border: 1px solid var(--line);
      padding: 0;
      overflow: hidden;
      min-height: 360px;
      display: grid;
      grid-template-rows: 170px 1fr;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }
    .guide article:hover {
      transform: translateY(-5px);
      box-shadow: 0 22px 48px rgba(79,55,111,0.14);
    }
    .guide-media {
      position: relative;
      overflow: hidden;
      background: var(--brand-deep);
    }
    .guide-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
    }
    .guide article:hover .guide-media img { transform: scale(1.08); }
    .guide-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent, rgba(28,24,36,0.25));
    }
    .guide-body { padding: 1.15rem 1.2rem 1.3rem; }
    .guide h3 {
      font-family: "Outfit", sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin: 0.35rem 0 0.55rem;
    }
    .guide p { color: var(--ink-soft); font-size: 0.95rem; }
    .guide a {
      display: inline-block;
      margin-top: 0.9rem;
      color: var(--brand);
      font-weight: 800;
      font-size: 0.88rem;
    }

    .faq details {
      background: #fff;
      border: 1px solid var(--line);
      padding: 1rem 1.15rem;
      margin-bottom: 0.65rem;
    }
    .faq summary {
      font-weight: 700;
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      align-items: center;
    }
    .faq summary::-webkit-details-marker { display: none; }
    .faq summary::after {
      content: "+";
      color: var(--brand);
      font-size: 1.3rem;
      font-weight: 500;
    }
    .faq details[open] summary::after { content: "–"; }
    .faq details p {
      margin-top: 0.75rem;
      color: var(--ink-soft);
      max-width: 70ch;
    }

    .cta-band {
      background:
        radial-gradient(700px 280px at 15% 0%, rgba(139,115,181,0.4), transparent 60%),
        linear-gradient(135deg, var(--brand-deep), var(--brand) 60%, #7a5fad);
      color: #fff;
      padding: 3.5rem 1.25rem;
    }
    .cta-band .band-inner {
      display: grid;
      grid-template-columns: 1.3fr auto;
      gap: 1.5rem;
      align-items: center;
    }
    .cta-band h2 {
      font-family: "Outfit", sans-serif;
      font-size: clamp(1.7rem, 3.2vw, 2.4rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin: 0.35rem 0 0.55rem;
    }
    .cta-band p { color: rgba(255,255,255,0.9); max-width: 48rem; }
    .cta-band .btn-primary {
      background: #fff;
      color: var(--brand-deep);
      box-shadow: none;
    }

    .site-footer {
      background: var(--ink);
      color: rgba(255,255,255,0.78);
      padding: 3.2rem 1.25rem 1.5rem;
    }
    .footer-grid {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.35fr 1fr 1fr 1fr 1fr;
      gap: 1.5rem;
    }
    .footer-brand img.brand-logo {
      width: 210px;
      background: #fff;
      padding: 0.55rem 0.7rem;
      margin-bottom: 0.9rem;
    }
    .site-footer h4 {
      color: #fff;
      font-family: "Outfit", sans-serif;
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 0.9rem;
    }
    .site-footer ul { display: grid; gap: 0.45rem; font-size: 0.92rem; }
    .site-footer a:hover { color: #fff; }
    .footer-trust {
      max-width: var(--max);
      margin: 2rem auto 0;
      padding: 1.25rem 0 0;
      border-top: 1px solid rgba(255,255,255,0.12);
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 2rem;
      flex-wrap: wrap;
    }
    .footer-trust > div {
      display: grid;
      gap: 0.75rem;
    }
    .footer-trust .footer-partners {
      margin-left: auto;
      text-align: right;
      justify-items: end;
    }
    .footer-trust h4 { margin-bottom: 0; }
    .pay-logos, .partner-logos {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.65rem;
    }
    .pay-logos img {
      height: 34px;
      width: auto;
      background: #fff;
      border-radius: 8px;
      padding: 0.35rem 0.55rem;
    }
    .partner-logos {
      justify-content: flex-end;
    }
    .partner-logos img {
      height: 52px;
      width: auto;
      object-fit: contain;
      background: #fff;
      border-radius: 12px;
      padding: 0.45rem 0.7rem;
      border: 1px solid rgba(255,255,255,0.12);
    }
    .partner-logos img.madrid {
      height: 56px;
      padding: 0.35rem;
    }
    .footer-bottom {
      max-width: var(--max);
      margin: 1.4rem auto 0;
      padding-top: 1.1rem;
      border-top: 1px solid rgba(255,255,255,0.12);
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
      font-size: 0.84rem;
    }

    .reveal {
      opacity: 1;
      transform: none;
    }

    @keyframes heroDrift {
      from { transform: scale(1.04); }
      to { transform: scale(1.09) translate(-1%, -1%); }
    }
    @keyframes kenBurns {
      from { transform: scale(1.05) translate3d(0, 0, 0); }
      to { transform: scale(1.14) translate3d(-2%, -1.5%, 0); }
    }
    @keyframes riseIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: none; }
    }

    @media (max-width: 1100px) {
      .hero-inner, .split, .seo-grid, .reviews, .reviews-hero-copy, .cta-band .band-inner, .footer-grid {
        grid-template-columns: 1fr;
      }
      .score-panel { border-right: 0; border-bottom: 1px solid var(--line); }
      .footer-trust .footer-partners {
        margin-left: 0;
        text-align: left;
        justify-items: start;
      }
      .partner-logos { justify-content: flex-start; }
      .cat-grid, .products-grid, .trust-strip .section, .guide-grid, .review-grid, .mosaic {
        grid-template-columns: 1fr 1fr;
      }
      .mosaic { grid-template-rows: auto; }
      .mosaic-item:first-child { grid-row: auto; min-height: 240px; }
      .search { max-width: 220px; }
    }
    @media (max-width: 760px) {
      .header-inner { grid-template-columns: auto 1fr auto; }
      .search, .header-link span { display: none; }
      .menu-toggle { display: grid; }
      .nav-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
      .nav-inner a { white-space: nowrap; }
      .cat-grid, .products-grid, .trust-strip .section, .guide-grid, .review-grid, .mosaic {
        grid-template-columns: 1fr;
      }
      .hero { min-height: 70vh; }
      .split-media { min-height: 280px; }
      .seo-block.has-media { grid-template-rows: 180px 1fr; }
    }

/* ===== PrestaShop / Hummingbird bridges (Colchonerías González) ===== */
:root {
  --bs-primary: #654A94;
  --bs-primary-rgb: 101, 74, 148;
  --bs-link-color: #654A94;
  --bs-link-hover-color: #4f376f;
}

body {
  font-family: "Manrope", sans-serif !important;
  color: var(--ink);
  background: var(--paper);
}

h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4,
.product-miniature__title,
.section-title {
  font-family: "Outfit", sans-serif !important;
}

/* Hide conflicting default home modules */
.page-content--home .ps-imageslider,
.page-content--home #custom-text,
.page-content--home .banner,
#block-reassurance {
  display: none !important;
}

/* ---------- Topbar (attention strip — black) ---------- */
.cg-topbar {
  --cg-top-ink: #f7f4ef;
  --cg-top-soft: rgba(247, 244, 239, 0.78);
  position: relative;
  overflow: hidden;
  width: 100% !important;
  max-width: none !important;
  color: var(--cg-top-ink);
  background:
    radial-gradient(700px 120px at 8% 50%, rgba(101, 74, 148, 0.28), transparent 60%),
    radial-gradient(520px 100px at 92% 40%, rgba(37, 211, 102, 0.1), transparent 55%),
    linear-gradient(180deg, #121212 0%, #0a0a0a 100%);
  font-family: "Manrope", sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
.cg-topbar__glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(101, 74, 148, 0.12) 50%, transparent 100%);
  pointer-events: none;
  animation: cgTopbarGlow 6s ease-in-out infinite alternate;
}
.cg-topbar::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 30%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.07), transparent);
  transform: skewX(-18deg);
  animation: cgTopbarShine 5.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes cgTopbarGlow {
  from { opacity: 0.55; }
  to { opacity: 1; }
}
@keyframes cgTopbarShine {
  0%, 58% { left: -40%; opacity: 0; }
  68% { opacity: 1; }
  100% { left: 120%; opacity: 0; }
}
.cg-topbar__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto !important;
  padding: 0.55rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem 1.25rem;
  flex-wrap: wrap;
}
.cg-topbar__msg {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  flex: 1 1 280px;
}
.cg-topbar__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex: 0 0 auto;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0d78a 0%, #d4af37 100%);
  color: #1a1408;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow:
    0 0 0 1px rgba(255, 220, 120, 0.25),
    0 8px 18px rgba(212, 175, 55, 0.22);
}
.cg-topbar__pulse {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #ff4d4d;
  box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.55);
  animation: cgTopbarPulse 1.8s ease-out infinite;
}
@keyframes cgTopbarPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(255, 77, 77, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
}
.cg-topbar__text {
  margin: 0;
  color: var(--cg-top-soft);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.cg-topbar__actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex: 0 1 auto;
  flex-wrap: wrap;
}
.cg-topbar__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.45rem;
  padding: 0.35rem 0.75rem 0.35rem 0.45rem;
  border-radius: 999px;
  text-decoration: none !important;
  color: #f7f4ef !important;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.cg-topbar__chip:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
  color: #fff !important;
}
.cg-topbar__icon {
  display: grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  color: #fff;
  flex: 0 0 auto;
}
.cg-topbar__chip--call .cg-topbar__icon {
  background: linear-gradient(145deg, #7b61b0, #654a94);
  box-shadow: 0 0 0 1px rgba(123, 97, 176, 0.35);
}
.cg-topbar__chip--wa .cg-topbar__icon {
  background: linear-gradient(145deg, #2fe575, #1faa59);
  box-shadow: 0 0 0 1px rgba(47, 229, 117, 0.28);
}
.cg-topbar__chip-copy {
  display: grid;
  gap: 0.02rem;
  line-height: 1.1;
}
.cg-topbar__chip-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.58);
}
.cg-topbar__chip-value {
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: #fff;
}
.cg-topbar__chip--call {
  border-color: rgba(101, 74, 148, 0.45);
  background: linear-gradient(135deg, rgba(101, 74, 148, 0.22) 0%, rgba(255, 255, 255, 0.05) 100%);
}
.cg-topbar__chip--wa {
  border-color: rgba(37, 211, 102, 0.35);
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.16) 0%, rgba(255, 255, 255, 0.05) 100%);
}
.cg-topbar__chip--call:hover {
  border-color: rgba(139, 115, 181, 0.7);
  background: linear-gradient(135deg, rgba(101, 74, 148, 0.38) 0%, rgba(255, 255, 255, 0.08) 100%);
}
.cg-topbar__chip--wa:hover {
  border-color: rgba(47, 229, 117, 0.65);
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.28) 0%, rgba(255, 255, 255, 0.08) 100%);
}
@media (max-width: 767px) {
  .cg-topbar__inner {
    padding: 0.65rem 0.9rem;
    justify-content: center;
    text-align: center;
  }
  .cg-topbar__msg {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex-basis: 100%;
  }
  .cg-topbar__text {
    font-size: 0.8rem;
    max-width: 34ch;
  }
  .cg-topbar__actions {
    width: 100%;
    justify-content: center;
  }
  .cg-topbar__chip {
    flex: 1 1 calc(50% - 0.3rem);
    min-width: 0;
    justify-content: center;
    padding-right: 0.55rem;
  }
  .cg-topbar__chip-value {
    font-size: 0.88rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cg-topbar__glow,
  .cg-topbar::after,
  .cg-topbar__pulse {
    animation: none !important;
  }
}

.header-banner,
.header-top {
  display: none !important;
}

/* ---------- Page shell: never pin header left on wide screens ---------- */
html,
body {
  width: 100% !important;
  max-width: none !important;
  overflow-x: clip;
}
#header.header,
#header,
.header.js-sticky-header {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  left: 0 !important;
  right: 0 !important;
}
#header.sticky-header,
#header.is-sticky,
.header.sticky {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ---------- White logo header (centered 3-col) ---------- */
.header-bottom {
  background: #fff !important;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 60;
  width: 100% !important;
  max-width: none !important;
}
.cg-header-inner {
  max-width: 1320px !important;
  width: min(1320px, calc(100% - 2.5rem)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  min-height: 92px;
  padding: 0.75rem 1.25rem;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-areas: "search logo actions";
  align-items: center;
  column-gap: 1.5rem;
  box-sizing: border-box;
}
.cg-header-menu {
  grid-area: menu;
  display: none; /* desktop: menu lives in purple nav */
}
.cg-header-menu__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(101, 74, 148, 0.18);
  border-radius: 12px;
  background: #f7f5fa;
  color: var(--brand-deep, #4f376f);
  line-height: 1;
}
.cg-header-menu__btn .material-icons {
  font-size: 1.55rem;
  line-height: 1;
}
.cg-header-search {
  grid-area: search;
  justify-self: start;
  min-width: 0;
  width: 100%;
  max-width: 320px;
}
.cg-header-logo {
  grid-area: logo;
  justify-self: center;
  text-align: center;
  background: #fff;
}
.cg-header-actions {
  grid-area: actions;
}
.cg-header-logo img,
.cg-header-logo .logo {
  max-width: 250px;
  width: min(250px, 100%);
  height: auto;
  display: block;
  margin: 0 auto;
  background: #fff;
}
.cg-header-actions {
  justify-self: end;
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  flex-wrap: nowrap;
  min-width: 0;
}

/* ---------- Header account + cart chips ---------- */
.cg-header-actions #_desktop_ps_customersignin,
.cg-header-actions #_desktop_ps_shoppingcart,
.cg-header-actions .ps-customersignin,
.cg-header-actions .ps-shoppingcart,
.cg-header-actions .cg-user {
  display: flex;
  align-items: center;
}

.cg-header-actions .header-block.cg-action:not(.dropdown) {
  display: flex;
  align-items: center;
}

.cg-header-actions .dropdown.cg-action {
  display: block;
  position: relative;
}

.cg-action__btn {
  --cg-action-bg: #fff;
  --cg-action-border: rgba(101, 74, 148, 0.2);
  --cg-action-ink: #241c33;
  --cg-action-muted: #5c5470;
  appearance: none;
  box-sizing: border-box;
  display: inline-flex !important;
  align-items: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.4rem 0.95rem 0.4rem 0.4rem;
  border-radius: 999px !important;
  border: 1.5px solid var(--cg-action-border) !important;
  background: #fff !important;
  color: var(--cg-action-ink) !important;
  text-decoration: none !important;
  box-shadow: 0 8px 20px rgba(101, 74, 148, 0.1);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
  cursor: pointer;
  font: inherit;
  line-height: 1.15;
  white-space: nowrap;
}

.cg-action__btn:hover,
.cg-action__btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(101, 74, 148, 0.42) !important;
  box-shadow: 0 12px 26px rgba(101, 74, 148, 0.18);
  color: var(--brand-deep, #4e3878) !important;
}

.cg-action__btn:focus-visible {
  outline: 3px solid rgba(101, 74, 148, 0.28);
  outline-offset: 2px;
}

.cg-action__btn--account .cg-action__icon {
  background: linear-gradient(160deg, #efe8fa, #e2d7f5);
  color: var(--brand-deep, #4e3878);
  border-color: rgba(101, 74, 148, 0.14);
}

.cg-action__btn--cart {
  background: linear-gradient(160deg, #7a5cb0, var(--brand, #654a94) 52%, var(--brand-deep, #4e3878)) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(101, 74, 148, 0.3);
  padding-right: 0.75rem;
}

.cg-action__btn--cart:hover,
.cg-action__btn--cart:focus-visible {
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(101, 74, 148, 0.38);
}

.cg-action__btn--cart .cg-action__icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.cg-action__btn--cart .cg-action__hint,
.cg-action__btn--cart .cg-action__label {
  color: #fff !important;
}

.cg-action__btn--cart .cg-action__hint {
  color: rgba(255, 255, 255, 0.82) !important;
}

.cg-action__btn--cart .cg-action__badge {
  background: #fff !important;
  color: var(--brand-deep, #4e3878) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.cg-action--filled .cg-action__btn--cart .cg-action__badge,
.cg-action__badge.is-active {
  background: linear-gradient(160deg, #f0c96a, #d4a84b) !important;
  color: #2a2238 !important;
  box-shadow: 0 2px 8px rgba(212, 168, 75, 0.4);
}

.cg-action__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f4f0fa;
  border: 1px solid rgba(101, 74, 148, 0.12);
  color: var(--brand, #654a94);
  box-shadow: 0 2px 6px rgba(101, 74, 148, 0.08);
}

.cg-action__icon svg {
  display: block;
}

.cg-action__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.05rem;
  min-width: 0;
  padding-right: 0.1rem;
}

.cg-action__label {
  font-size: 0.9rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.015em;
  color: inherit !important;
  line-height: 1.15;
}

.cg-action__hint,
.cg-action__value {
  font-size: 0.74rem !important;
  font-weight: 600 !important;
  color: var(--cg-action-muted) !important;
  line-height: 1.1;
}

.cg-action__caret {
  width: 0;
  height: 0;
  margin-left: 0.1rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.45;
}

.cg-action__btn.dropdown-toggle::after {
  display: none !important;
}

.cg-action__badge {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  padding: 0 0.45rem;
  margin-left: 0.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92) !important;
  color: var(--brand-deep, #4e3878) !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Hide Hummingbird defaults inside the new chips */
.cg-header-actions .header-block__icon,
.cg-header-actions .header-block__title,
.cg-header-actions .header-block__badge,
.cg-header-actions .header-block__action-btn {
  display: none !important;
}

.cg-action__menu {
  margin-top: 0.45rem !important;
  border: 1px solid rgba(101, 74, 148, 0.12) !important;
  border-radius: 14px !important;
  box-shadow: 0 16px 36px rgba(31, 24, 48, 0.16) !important;
  padding: 0.4rem !important;
  min-width: 220px;
}

.cg-action__menu .dropdown-item {
  border-radius: 10px;
  font-weight: 600;
  padding: 0.55rem 0.75rem;
}

.cg-action__menu .dropdown-item:hover,
.cg-action__menu .dropdown-item:focus {
  background: #f4f0fa;
  color: var(--brand-deep, #4e3878);
}

@media (max-width: 991.98px) {
  .cg-action__btn {
    min-height: 44px;
    padding: 0.3rem 0.65rem 0.3rem 0.3rem;
    gap: 0.4rem;
  }

  .cg-action__icon {
    width: 34px;
    height: 34px;
  }

  .cg-action__label {
    font-size: 0.8rem !important;
  }
}

@media (max-width: 767.98px) {
  .cg-header-actions {
    gap: 0.4rem;
  }

  .cg-action__btn {
    padding: 0.28rem;
    min-width: 44px;
    justify-content: center;
  }

  .cg-action__btn--cart {
    padding-right: 0.35rem;
    gap: 0.25rem;
  }

  .cg-action__copy {
    display: none !important;
  }

  .cg-action__caret {
    display: none !important;
  }

  .cg-action__badge {
    min-width: 20px;
    height: 20px;
    font-size: 0.68rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cg-action__btn {
    transition: none !important;
  }
}

/* Kill Bootstrap leftovers from search/signin widgets inside header */
.cg-header-inner .col-auto,
.cg-header-inner .col,
.cg-header-inner .col-md,
.cg-header-inner .row,
.cg-header-inner .order-1,
.cg-header-inner .order-2,
.cg-header-inner .order-md-1,
.cg-header-inner .order-md-2,
.cg-header-inner .order-md-3,
.cg-header-inner .ms-auto,
.cg-header-search #_desktop_ps_searchbar,
.cg-header-search .ps-searchbar--mobile {
  width: auto !important;
  max-width: none !important;
  flex: none !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}
.cg-header-search #_desktop_ps_searchbar {
  display: block !important;
  width: 100% !important;
  max-width: 320px !important;
}
.cg-header-search .ps-searchbar--mobile {
  display: none !important; /* desktop: use inline search; mobile override below */
}
.cg-header-search .ps-searchbar {
  width: 100% !important;
  max-width: 320px;
}

/* Search pill */
.cg-header-search .ps-searchbar__form {
  position: relative;
  display: flex !important;
  align-items: center;
  width: 100%;
  min-height: 48px;
  background: #f7f5fa !important;
  border: 1px solid #e7e1f0 !important;
  border-radius: 999px !important;
  padding: 0.35rem 1rem 0.35rem 2.6rem !important;
  box-shadow: none !important;
}
.cg-header-search .ps-searchbar__magnifier {
  position: absolute !important;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-soft);
  font-size: 1.15rem !important;
  pointer-events: none;
  z-index: 1;
}
.cg-header-search .ps-searchbar__input,
.cg-header-search .ps-searchbar__input.form-control {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  width: 100% !important;
  padding: 0.45rem 0 !important;
  font-size: 0.92rem !important;
  color: var(--ink) !important;
}
.cg-header-search .ps-searchbar__clear {
  position: absolute;
  right: 0.5rem;
}
.header-block__badge:not(.cg-action__badge),
.cart-products-count {
  background: var(--brand) !important;
}

/* ---------- Purple nav + modern mega-menu ---------- */
.header-nav-full-width {
  --cg-nav-h: 48px;
  position: relative;
  z-index: 40;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-deep) 100%) !important;
  color: #fff;
  padding: 0 !important;
  min-height: var(--cg-nav-h);
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  overflow: visible !important;
}
.cg-nav-inner {
  position: relative;
  max-width: var(--max);
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 0.5rem;
  box-sizing: border-box;
  overflow: visible !important;
}
.cg-topbar {
  width: 100% !important;
  max-width: none !important;
}
.cg-topbar__inner {
  margin-left: auto !important;
  margin-right: auto !important;
}
/* Desktop nav bar only — never style the mobile offcanvas as a nav strip */
.header-nav-full-width .ps-mainmenu--desktop {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  flex: none !important;
  float: none !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
}
@media (min-width: 1200px) {
  .header-nav-full-width .ps-mainmenu__desktop.d-none,
  .header-nav-full-width .ps-mainmenu__desktop {
    display: block !important;
    width: 100% !important;
    position: static !important;
    overflow: visible !important;
  }
  .header-nav-full-width .ps-mainmenu__mobile-toggle {
    display: none !important;
  }
}
@media (max-width: 1199.98px) {
  /* One-row mobile header: menu | logo | search | login+cart */
  .header-nav-full-width {
    display: none !important; /* purple bar only on desktop */
  }
  .header-nav-full-width .ps-mainmenu__desktop {
    display: none !important;
  }
  .header-nav-full-width .ps-mainmenu__mobile-toggle {
    display: none !important;
  }

  .cg-header-inner {
    grid-template-columns: 44px minmax(0, 1fr) 44px auto;
    grid-template-areas: "menu logo search actions";
    min-height: 64px;
    column-gap: 0.45rem;
    width: 100% !important;
    max-width: none !important;
    padding: 0.45rem 0.7rem;
  }
  .cg-header-menu {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
  }
  .cg-header-menu__btn {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: #fff;
    border: 1px solid rgba(101, 74, 148, 0.16);
    box-shadow: 0 4px 12px rgba(101, 74, 148, 0.08);
  }
  .cg-header-logo {
    justify-self: start;
    min-width: 0;
  }
  .cg-header-logo img,
  .cg-header-logo .logo {
    width: auto;
    max-width: min(148px, 34vw);
    max-height: 40px;
    object-fit: contain;
    margin: 0;
  }
  .cg-header-search {
    display: flex !important;
    align-items: center;
    justify-content: center;
    justify-self: center;
    width: auto;
    max-width: none;
  }
  /* Hide only empty desktop slot — never hide .ps-searchbar inside #searchCanvas */
  .cg-header-search > #_desktop_ps_searchbar {
    display: none !important;
  }
  .cg-header-search .ps-searchbar--mobile {
    display: flex !important;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
  }
  .cg-header-search .ps-searchbar--mobile > .header-block {
    display: flex !important;
  }
  .cg-header-search .ps-searchbar--mobile .header-block__action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: #fff;
    border: 1px solid rgba(101, 74, 148, 0.16);
    box-shadow: 0 4px 12px rgba(101, 74, 148, 0.08);
    color: var(--brand-deep, #4f376f);
  }
  .cg-header-search .ps-searchbar--mobile .header-block__icon {
    font-size: 1.35rem;
    line-height: 1;
  }
  .cg-header-actions {
    gap: 0.3rem;
  }
  .cg-header-actions .cg-action__btn,
  .cg-header-actions .header-block__action-btn {
    min-width: 42px !important;
    min-height: 42px !important;
    width: 42px;
    height: 42px;
    padding: 0 !important;
    justify-content: center !important;
    border-radius: 11px !important;
    box-shadow: 0 4px 12px rgba(101, 74, 148, 0.08);
  }
  .cg-header-actions .cg-action__copy,
  .cg-header-actions .cg-action__caret,
  .cg-header-actions .cg-action__label {
    display: none !important;
  }
  .cg-header-actions .cg-action__icon {
    width: 22px !important;
    height: 22px !important;
    margin: 0 !important;
  }
  .cg-header-actions .cg-action__badge {
    top: -4px !important;
    right: -4px !important;
  }

  /* Compact topbar so header feels adult, not toy-like */
  .cg-topbar__text {
    display: none;
  }
  .cg-topbar__inner {
    padding: 0.45rem 0.7rem;
    gap: 0.45rem;
  }
  .cg-topbar__chip-label {
    display: none;
  }
  .cg-topbar__chip {
    min-height: 36px;
    padding: 0.25rem 0.55rem;
  }
}
.header-nav-full-width .ps-mainmenu__tree {
  display: flex !important;
  justify-content: center !important;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.15rem;
  margin: 0 auto !important;
  padding: 0 !important;
  list-style: none !important;
  width: 100%;
  overflow: visible !important;
}
.header-nav-full-width .ps-mainmenu__tree-item {
  position: static;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-nav-full-width .ps-mainmenu__tree-item-wrapper {
  display: flex;
  align-items: center;
  border-radius: 0.55rem 0.55rem 0 0;
  transition: background 0.22s ease;
}
.header-nav-full-width .ps-mainmenu__tree-item:hover > .ps-mainmenu__tree-item-wrapper,
.header-nav-full-width .ps-mainmenu__tree-item:focus-within > .ps-mainmenu__tree-item-wrapper,
.header-nav-full-width .ps-mainmenu__tree-item.is-open > .ps-mainmenu__tree-item-wrapper {
  background: rgba(255, 255, 255, 0.14);
}
.header-nav-full-width .ps-mainmenu__tree-link {
  color: #fff !important;
  font-family: "Outfit", "Manrope", sans-serif !important;
  font-size: 0.74rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.9rem 0.7rem !important;
  opacity: 0.96;
  text-decoration: none !important;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.header-nav-full-width .ps-mainmenu__tree-link:hover {
  opacity: 1;
  background: transparent !important;
}
.header-nav-full-width .ps-mainmenu__tree-dropdown-toggle {
  color: #fff !important;
  border: 0 !important;
  background: transparent !important;
  padding: 0.55rem 0.65rem 0.55rem 0 !important;
  opacity: 0.85;
}
.header-nav-full-width .ps-mainmenu__tree-dropdown-toggle::after {
  border-top-color: #fff !important;
  transition: transform 0.25s ease;
}
.header-nav-full-width .ps-mainmenu__tree-item:hover .ps-mainmenu__tree-dropdown-toggle::after,
.header-nav-full-width .ps-mainmenu__tree-item.is-open .ps-mainmenu__tree-dropdown-toggle::after,
.header-nav-full-width .ps-mainmenu__tree-dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

/* Mega panel — must NOT inherit nav white text */
.header-nav-full-width .submenu.cg-megamenu,
.header-nav-full-width .js-sub-menu.cg-megamenu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  margin-left: 0 !important;
  z-index: 1100 !important;
  display: none;
  color: var(--ink) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding-top: 0.35rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(0.45rem);
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.header-nav-full-width .ps-mainmenu__tree-item:hover > .submenu.cg-megamenu,
.header-nav-full-width .ps-mainmenu__tree-item:focus-within > .submenu.cg-megamenu,
.header-nav-full-width .ps-mainmenu__tree-item.is-open > .submenu.cg-megamenu,
.header-nav-full-width .submenu.cg-megamenu[style*="display: block"],
.header-nav-full-width .submenu.cg-megamenu[style*="display:block"] {
  display: block !important;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}
.cg-megamenu__shell {
  width: 100%;
  background:
    radial-gradient(1200px 280px at 12% 0%, rgba(101, 74, 148, 0.12), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8f5fb 100%);
  border-top: 3px solid var(--brand);
  box-shadow:
    0 28px 60px rgba(28, 24, 36, 0.18),
    0 2px 0 rgba(101, 74, 148, 0.08);
  color: var(--ink) !important;
}
.cg-megamenu__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  min-height: 320px;
  color: var(--ink) !important;
}
.cg-megamenu__rail,
.submenu__left.cg-megamenu__rail {
  display: flex !important;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.35rem 1rem 1.35rem 1.15rem;
  background:
    linear-gradient(165deg, #f3eef9 0%, #ebe4f5 55%, #e4dcf1 100%);
  border-right: 1px solid rgba(101, 74, 148, 0.12);
  color: var(--ink) !important;
}
.cg-megamenu__rail-label {
  margin: 0 0 0.65rem;
  padding: 0 0.75rem;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand) !important;
}
.cg-megamenu__rail-item,
.submenu__left-item.cg-megamenu__rail-item {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.72rem 0.85rem !important;
  border-radius: 0.7rem;
  color: var(--ink) !important;
  text-decoration: none !important;
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.25;
  background: transparent !important;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.cg-megamenu__rail-item::after,
.submenu__left-item.cg-megamenu__rail-item::after {
  display: none !important;
  content: none !important;
}
.cg-megamenu__rail-item:hover,
.cg-megamenu__rail-item.active,
.submenu__left-item.cg-megamenu__rail-item:hover,
.submenu__left-item.cg-megamenu__rail-item.active {
  color: var(--brand-deep) !important;
  background: rgba(255, 255, 255, 0.85) !important;
  box-shadow: 0 8px 20px rgba(101, 74, 148, 0.1);
  transform: translateX(2px);
}
.cg-megamenu__rail-chevron {
  width: 0.4rem;
  height: 0.4rem;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.55;
  flex: 0 0 auto;
}
.cg-megamenu__rail-all {
  margin-top: auto;
  padding: 0.85rem 0.9rem;
  border-radius: 0.75rem;
  background: var(--brand);
  color: #fff !important;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cg-megamenu__rail-all:hover {
  background: var(--brand-deep);
  color: #fff !important;
  transform: translateY(-1px);
}
.cg-megamenu__panels,
.submenu__right.cg-megamenu__panels {
  position: relative;
  padding: 1.35rem 1.5rem 1.6rem;
  color: var(--ink) !important;
  background: transparent !important;
}
.cg-megamenu__panel,
.submenu__right-items.cg-megamenu__panel {
  display: none !important;
  animation: cgMegaIn 0.28s ease both;
}
.cg-megamenu__panel.active,
.cg-megamenu__panel:first-child,
.submenu__right-items.cg-megamenu__panel.active,
.submenu__right-items.cg-megamenu__panel:first-child:not(.not-active) {
  display: block !important;
}
.submenu__right-items.cg-megamenu__panel.not-active {
  display: none !important;
}
@keyframes cgMegaIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.cg-megamenu__panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(101, 74, 148, 0.12);
}
.cg-megamenu__panel-title {
  margin: 0;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink) !important;
}
.cg-megamenu__panel-more {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand) !important;
  text-decoration: none !important;
  white-space: nowrap;
}
.cg-megamenu__panel-more:hover {
  color: var(--brand-deep) !important;
  text-decoration: underline !important;
}
.cg-megamenu__groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem 1rem;
}
.cg-megamenu__group:not(.cg-megamenu__group--has-children) {
  background: linear-gradient(160deg, #ffffff 0%, #f4eef9 100%);
  border: 1px solid rgba(101, 74, 148, 0.12);
  border-radius: 1rem;
  padding: 1rem 1.05rem;
  min-height: 88px;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.cg-megamenu__group:not(.cg-megamenu__group--has-children):hover {
  transform: translateY(-2px);
  border-color: rgba(101, 74, 148, 0.28);
  box-shadow: 0 14px 28px rgba(101, 74, 148, 0.12);
}
.cg-megamenu__group--has-children {
  padding: 0.15rem 0.1rem 0.35rem;
}
.cg-megamenu__group-title {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink) !important;
  text-decoration: none !important;
  transition: color 0.18s ease;
  width: 100%;
}
.cg-megamenu__group--has-children .cg-megamenu__group-title {
  margin-bottom: 0.55rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(101, 74, 148, 0.1);
}
.cg-megamenu__group-title:hover {
  color: var(--brand) !important;
}
.cg-megamenu__arrow {
  margin-left: auto;
  opacity: 0.35;
  transform: translateX(0);
  transition: opacity 0.18s ease, transform 0.18s ease;
  color: var(--brand);
  flex: 0 0 auto;
}
.cg-megamenu__group-title:hover .cg-megamenu__arrow,
.cg-megamenu__group:not(.cg-megamenu__group--has-children):hover .cg-megamenu__arrow {
  opacity: 1;
  transform: translateX(3px);
}
.cg-megamenu__list {
  margin: 0;
  padding: 0;
  list-style: none !important;
  display: grid;
  gap: 0.15rem;
}
.cg-megamenu__link {
  display: block;
  padding: 0.32rem 0.15rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft) !important;
  text-decoration: none !important;
  border-radius: 0.4rem;
  transition: color 0.16s ease, padding-left 0.16s ease, background 0.16s ease;
}
.cg-megamenu__link:hover {
  color: var(--brand) !important;
  padding-left: 0.4rem;
  background: rgba(101, 74, 148, 0.06);
}
.cg-megamenu__empty {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.5rem 0;
  color: var(--ink-soft) !important;
}
.cg-megamenu__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
}
.cg-megamenu__cta:hover {
  background: var(--brand-deep);
  color: #fff !important;
}

/* Hard overrides: nav sets color:#fff and `a{color:inherit}` would hide mega links */
.header-nav-full-width .cg-megamenu,
.header-nav-full-width .cg-megamenu .cg-megamenu__shell,
.header-nav-full-width .cg-megamenu .cg-megamenu__inner,
.header-nav-full-width .cg-megamenu .cg-megamenu__rail,
.header-nav-full-width .cg-megamenu .cg-megamenu__panels,
.header-nav-full-width .cg-megamenu .cg-megamenu__panel,
.header-nav-full-width .cg-megamenu .cg-megamenu__panel-title,
.header-nav-full-width .cg-megamenu .cg-megamenu__group-title,
.header-nav-full-width .cg-megamenu .cg-megamenu__link,
.header-nav-full-width .cg-megamenu .cg-megamenu__rail-item,
.header-nav-full-width .cg-megamenu .cg-megamenu__rail-text,
.header-nav-full-width .cg-megamenu .submenu__left-item,
.header-nav-full-width .cg-megamenu a {
  -webkit-text-fill-color: currentColor;
}
.header-nav-full-width .cg-megamenu,
.header-nav-full-width .cg-megamenu .cg-megamenu__shell {
  color: #1c1824 !important;
}
.header-nav-full-width .cg-megamenu a:not(.cg-megamenu__rail-all):not(.cg-megamenu__cta) {
  color: #1c1824 !important;
}
.header-nav-full-width .cg-megamenu .cg-megamenu__link {
  color: #5a5366 !important;
}
.header-nav-full-width .cg-megamenu .cg-megamenu__rail-item.active,
.header-nav-full-width .cg-megamenu .cg-megamenu__rail-item:hover,
.header-nav-full-width .cg-megamenu .cg-megamenu__group-title:hover,
.header-nav-full-width .cg-megamenu .cg-megamenu__link:hover,
.header-nav-full-width .cg-megamenu .cg-megamenu__panel-more {
  color: #654A94 !important;
}
.header-nav-full-width .cg-megamenu .cg-megamenu__rail-all,
.header-nav-full-width .cg-megamenu .cg-megamenu__cta {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
}

@media (max-width: 1199px) {
  .cg-megamenu__groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile header layout handled in max-width: 1199.98px block above */

/* ---------- PRODUCT GRID FIX (critical) ---------- */
.page-content--home .products-section,
.ps-featuredproducts .module-products,
.ps-specials .module-products,
.ps-newproducts .module-products,
.ps-bestsellers .module-products {
  max-width: var(--max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.page-content--home .products-section {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}

/* IMPORTANT: grid only on .products — never on .module-products__list */
.page-content--home .module-products__list {
  display: block !important;
  width: 100% !important;
}

.page-content--home .products,
.ps-featuredproducts .products,
.ps-specials .products,
.ps-newproducts .products,
.ps-bestsellers .products,
.module-products__list > .products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1.25rem !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.page-content--home .product-miniature,
.ps-featuredproducts .product-miniature,
.ps-specials .product-miniature,
.module-products__list .product-miniature {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
}

.product-miniature__inner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 !important;
  padding: 0.85rem;
  height: 100%;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.product-miniature__inner:hover {
  border-color: rgba(101, 74, 148, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(79, 55, 111, 0.1);
}
.product-miniature__image-container,
.product-miniature__image-link,
.product-miniature__image {
  width: 100% !important;
  max-width: 100% !important;
}
.product-miniature__image {
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--paper-warm, #efeae4);
}
.product-miniature__bottom,
.product-miniature__infos,
.product-miniature__prices,
.product-miniature__actions {
  text-align: center;
  align-items: center;
  justify-content: center;
}
.product-miniature__title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  display: block;
  min-height: 2.6em;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.product-miniature__prices {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  width: 100%;
}
.product-miniature__price {
  font-weight: 800;
  color: var(--brand-deep);
  text-align: center;
}
.product-miniature__regular-price {
  color: var(--ink-soft);
  text-align: center;
}
.product-miniature__discount-price {
  text-align: center;
}
.product-miniature__actions {
  display: flex;
  width: 100%;
  margin-top: 0.65rem;
}
.product-miniature__more-info {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  border-radius: 999px !important;
  padding-inline: 1.1rem !important;
  font-weight: 700;
  text-decoration: none;
}
.product-flags .badge,
.product-flags .product-flag {
  background: var(--brand) !important;
  border-radius: 0;
}
.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem !important;
}
.module-products__buttons .btn {
  border-radius: 999px !important;
  border-color: var(--brand) !important;
  color: var(--brand) !important;
}
.module-products__buttons .btn:hover {
  background: var(--brand) !important;
  color: #fff !important;
}

@media (max-width: 1100px) {
  .page-content--home .products,
  .ps-featuredproducts .products,
  .ps-specials .products,
  .module-products__list > .products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 760px) {
  .page-content--home .products,
  .ps-featuredproducts .products,
  .ps-specials .products,
  .module-products__list > .products {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

/* Buttons */
.btn-primary,
.btn.btn-primary,
button.btn-primary {
  --bs-btn-bg: #654A94;
  --bs-btn-border-color: #654A94;
  --bs-btn-hover-bg: #4f376f;
  --bs-btn-hover-border-color: #4f376f;
  --bs-btn-active-bg: #4f376f;
  border-radius: 999px !important;
  font-weight: 700;
}

/* ---------- Newsletter (removed site-wide) ---------- */
.ps-emailsubscription,
#emailsubscription_anchor_displayFooterBefore,
#emailsubscription_anchor_displayLeftColumn,
#emailsubscription_anchor_displayRightColumn {
  display: none !important;
}

/* ---------- Footer ---------- */
.footer,
.footer__main {
  background: linear-gradient(180deg, #2a2238, #1c1824) !important;
  color: rgba(255, 255, 255, 0.78) !important;
}
.footer .container,
.footer__main > .container,
.footer__bottom .container {
  max-width: var(--max, 1320px);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.footer a {
  color: rgba(255, 255, 255, 0.78);
}
.footer a:hover {
  color: #fff;
}
.footer h3,
.footer h4,
.footer__title,
.footer .h3,
.footer .footer-block__title {
  color: #fff !important;
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cg-footer-cols {
  --bs-gutter-x: 1.75rem;
  --bs-gutter-y: 1.5rem;
  margin-top: 0.25rem;
}
.cg-footer-cols .footer-block {
  margin-bottom: 0.5rem;
}
.cg-footer-store p {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}
.cg-footer-store__brand {
  margin-bottom: 0.65rem !important;
  color: #fff;
}
.cg-footer-store a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-block__list {
  display: grid;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
}
.footer-block__list a {
  font-size: 0.92rem;
}

.cg-footer-trust {
  max-width: 100%;
  margin: 2rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.cg-footer-trust > div {
  display: grid;
  gap: 0.75rem;
}
.cg-footer-trust h4 {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}
.cg-pay-logos,
.cg-partner-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}
.cg-pay-logos img {
  height: 34px;
  width: auto;
  background: #fff;
  border-radius: 8px;
  padding: 0.35rem 0.55rem;
}
.cg-footer-partners {
  margin-left: auto;
  text-align: right;
  justify-items: end;
}
.cg-partner-logos {
  justify-content: flex-end;
}
.cg-partner-logos img {
  height: auto;
  max-height: 52px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 0.45rem 0.7rem;
}
.cg-partner-logos img.madrid {
  max-height: 56px;
  padding: 0.35rem;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  text-align: center;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.55rem;
}
.copyright__sep {
  opacity: 0.55;
}
.copyright a,
.copyright__credit {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}
.copyright a:hover,
.copyright__credit:hover {
  color: #fff;
}

.page-content--home {
  padding: 0 !important;
  max-width: none !important;
}
#wrapper .breadcrumb {
  display: none;
}
.page-index #content-wrapper,
.page-home #content-wrapper {
  padding-top: 0 !important;
}

.cg-home .section {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (max-width: 760px) {
  .cg-footer-partners {
    margin-left: 0;
    text-align: left;
    justify-items: start;
  }
  .cg-partner-logos {
    justify-content: flex-start;
  }
}


/* ===== Product page redesign ===== */
body#product,
body.page-product {
  background: var(--paper, #f6f3ef);
}

.page-product .breadcrumb__wrapper {
  margin-bottom: 0.5rem;
  background: transparent;
}
.page-product .breadcrumb__wrapper .container {
  max-width: 1320px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.page-product .breadcrumb {
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.35rem;
  max-width: none;
  margin: 0;
  padding: 0.85rem 0 0.35rem;
  font-size: 0.85rem;
  overflow-x: auto;
  scrollbar-width: none;
  list-style: none;
}
.page-product .breadcrumb::-webkit-scrollbar {
  display: none;
}
.page-product .breadcrumb-item {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0;
  color: #6b6570;
}
.page-product .breadcrumb-item + .breadcrumb-item::before {
  float: none;
  padding-inline-end: 0.35rem;
  content: "/";
  color: #9a93a0;
}
.page-product .breadcrumb a,
.page-product .breadcrumb-link {
  color: var(--brand, #654A94);
  text-decoration: none;
}
.page-product .breadcrumb a:hover,
.page-product .breadcrumb-link:hover {
  text-decoration: underline;
}
.page-product .breadcrumb-item:last-child {
  color: #3a3540;
  min-width: 0;
  flex-shrink: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Override Hummingbird .product__container 2-col grid */
.cg-product.product__container,
.cg-product.product-container,
article.cg-product {
  display: flex !important;
  flex-direction: column;
  gap: 0 !important;
  grid-template-columns: none !important;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.5rem 1.25rem 3rem;
  width: 100%;
}

.cg-product__main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
  width: 100%;
}

/* Gallery */
.cg-product__gallery,
.cg-product__gallery .product__images,
.cg-product__gallery .product__carousel {
  position: sticky;
  top: 110px;
}
.cg-product__gallery .product__carousel,
.cg-product__gallery .carousel-inner,
.cg-product__gallery .carousel-item {
  background: #fff;
  border: 1px solid var(--line, rgba(28,24,36,0.1));
  overflow: hidden;
}
.cg-product__gallery .carousel-item img,
.cg-product__gallery .img-fluid {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1;
  background: #fff;
  transition: transform 0.6s ease;
}
.cg-product__gallery .carousel-item.active img {
  animation: cgProductFade 0.45s ease;
}
@keyframes cgProductFade {
  from { opacity: 0.65; transform: scale(1.02); }
  to { opacity: 1; transform: none; }
}
.cg-product__gallery .product-flags .badge {
  background: var(--brand, #654A94) !important;
  border-radius: 0;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.cg-product__gallery .product__thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.cg-product__gallery .product__thumbnail img {
  border: 1px solid var(--line, rgba(28,24,36,0.1));
  background: #fff;
  transition: border-color 0.2s, transform 0.2s;
}
.cg-product__gallery .product__thumbnail:hover img,
.cg-product__gallery .product__thumbnail.active img {
  border-color: var(--brand, #654A94);
  transform: translateY(-2px);
}

/* Buy box */
.cg-product__buybox {
  background: #fff;
  border: 1px solid var(--line, rgba(28,24,36,0.1));
  padding: 1.5rem 1.4rem 1.6rem;
  position: relative;
  overflow: visible;
  align-self: start;
  min-width: 0;
}
.cg-product__buybox::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-deep, #4f376f), var(--brand-soft, #8b73b5));
}
.cg-product__eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  align-items: center;
  margin-bottom: 0.65rem;
}
.cg-product__brand {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand, #654A94);
  text-decoration: none;
}
.cg-product__store {
  font-size: 0.78rem;
  color: var(--ink-soft, #5a5366);
}
.cg-product__title {
  font-family: "Outfit", sans-serif !important;
  font-size: clamp(1.7rem, 3vw, 2.35rem) !important;
  font-weight: 750 !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink, #1c1824);
  margin: 0 0 0.55rem;
}
.cg-product__seo-line {
  color: var(--ink-soft, #5a5366);
  font-size: 0.98rem;
  margin-bottom: 1rem;
}

/* Prices — one modern horizontal row */
.cg-product .product__prices,
.cg-product .cg-price-row {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(101, 74, 148, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(180deg, #fff 0%, #faf7ff 100%);
  box-shadow: 0 8px 22px rgba(101, 74, 148, 0.06);
}
.cg-product .product__prices-block,
.cg-product .cg-price-row__inner {
  display: block;
  width: 100%;
}
.cg-product .cg-price-row__main,
.cg-product .product__prices-inline,
.cg-product .product__discount-price {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
  margin: 0 !important;
}
.cg-product .product__price,
.cg-product .cg-price-row__current {
  display: inline-flex;
  align-items: baseline;
  margin: 0 !important;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.15rem);
  font-weight: 800;
  color: var(--brand-deep, #4f376f);
  letter-spacing: -0.03em;
  line-height: 1;
}
.cg-product .cg-price-row__value {
  white-space: nowrap;
}
.cg-product .product__regular-price,
.cg-product .cg-price-row__old {
  font-size: 1.05rem !important;
  font-weight: 600;
  color: #8a8299 !important;
  text-decoration: line-through;
  white-space: nowrap;
  order: 0;
}
.cg-product .product__discount-percentage,
.cg-product .product__discount-amount,
.cg-product .cg-price-row__badge {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0.2rem 0.65rem !important;
  border-radius: 999px !important;
  background: linear-gradient(160deg, #7a5cb0, var(--brand, #654A94)) !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(101, 74, 148, 0.22);
}
.cg-product .cg-price-row__sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c9c0d8;
  flex: 0 0 auto;
}
.cg-product .product__tax-infos,
.cg-product .cg-price-row__tax {
  display: inline-flex !important;
  align-items: center;
  margin: 0 !important;
  color: #6b6280;
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
}
.cg-product .product__tax-label {
  color: inherit;
}
.cg-product .cg-price-row__meta,
.cg-product .product__unit-price,
.cg-product .product__pack-price,
.cg-product .product__taxless-price {
  font-size: 0.84rem;
  color: #6b6280;
  font-weight: 600;
}
.cg-product .cg-product__total {
  margin-top: 0.55rem;
  width: 100%;
}

@media (max-width: 575.98px) {
  .cg-product .product__prices,
  .cg-product .cg-price-row {
    padding: 0.75rem 0.85rem;
  }
  .cg-product .cg-price-row__sep {
    display: none;
  }
  .cg-product .product__tax-infos,
  .cg-product .cg-price-row__tax {
    width: 100%;
    white-space: normal;
  }
}

.cg-product__short-details {
  margin: 1rem 0 1.1rem;
  border: 1px solid var(--line, rgba(28,24,36,0.1));
  background: #fff;
}
.cg-product__short-toggle {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--brand-deep, #4f376f);
  user-select: none;
}
.cg-product__short-toggle::-webkit-details-marker { display: none; }
.cg-product__short-toggle::after {
  content: "+";
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand, #654A94);
  line-height: 1;
}
.cg-product__short-details[open] .cg-product__short-toggle::after {
  content: "−";
}
.cg-product__short-toggle-label--open { display: none; }
.cg-product__short-details[open] .cg-product__short-toggle-label { display: none; }
.cg-product__short-details[open] .cg-product__short-toggle-label--open { display: inline; }
.cg-product__short {
  color: var(--ink-soft, #5a5366);
  font-size: 0.95rem;
  padding: 0 1rem 1rem;
  border-top: 1px solid var(--line, rgba(28,24,36,0.08));
}
.cg-product__short p { margin-bottom: 0.4rem; }

/* Keep buy controls tight under price */
.cg-product__actions {
  margin-top: 0.35rem;
}

.cg-product__trust-strip {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.cg-product__trust-strip li {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.4rem;
  background: var(--paper, #f6f3ef);
  border: 1px solid var(--line, rgba(28,24,36,0.1));
  padding: 0.7rem 0.75rem;
  font-size: 0.82rem;
}
.cg-product__trust-strip li .cg-product__trust-mark {
  grid-row: span 2;
  align-self: center;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand, #654A94);
  margin-top: 0.15rem;
}
.cg-product__trust-strip strong {
  font-family: "Outfit", sans-serif;
  font-size: 0.86rem;
  color: var(--ink, #1c1824);
}
.cg-product__trust-strip em {
  font-style: normal;
  color: var(--ink-soft, #5a5366);
  font-size: 0.78rem;
}

/* Variants as measure chips */
.cg-product .product__variants,
.cg-product .product-variants {
  margin-bottom: 1rem;
}
.cg-product .product-variant {
  margin-bottom: 0.9rem;
  border: 0;
  padding: 0;
}
.cg-product .product-variant__legend,
.cg-product .product-variant__label {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
}
.cg-product .product-variants__list,
.cg-product ul.product-variants-item,
.cg-product .product-variant ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.cg-product .product-variant__chips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(5.25rem, 1fr));
  gap: 0.45rem;
  max-height: none;
  overflow: visible;
  padding-right: 0;
}
.cg-product .product-variant__chips .product-variant__radio {
  margin: 0;
  padding: 0;
  min-height: 0;
}
.cg-product .product-variant__chips .form-check-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.cg-product .js-product-prices.is-updating {
  opacity: 0.55;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.cg-product__total {
  margin-top: 0.55rem;
  font-size: 0.95rem;
  color: var(--ink-soft, #5a5366);
}
.cg-product__total-value {
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  color: var(--brand-deep, #4f376f);
}
.cg-product .cg-measure-chip,
.cg-product .product-variant input[type="radio"] + label,
.cg-product .product-variant .input-radio label,
.cg-product label.radio-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0.45rem 0.55rem;
  border: 1px solid var(--line, rgba(28,24,36,0.14));
  background: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  margin: 0;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
}
.cg-product .product-variant__chips input:checked + .cg-measure-chip,
.cg-product .product-variant input[type="radio"]:checked + label,
.cg-product .product-variant .input-radio input:checked + label,
.cg-product label.radio-label.active {
  border-color: var(--brand, #654A94);
  background: var(--brand-mist, #ece6f5);
  color: var(--brand-deep, #4f376f);
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px var(--brand, #654A94);
}
.cg-product .cg-measure-chip:hover {
  border-color: var(--brand, #654A94);
}
.cg-product .form-select {
  border-radius: 0;
  border-color: #e7e1f0;
  min-height: 46px;
}
.cg-product .product-variant__label {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
}
.cg-product .product-variant__selected {
  color: var(--brand, #654A94);
  font-weight: 700;
}

/* Add to cart */
.cg-product .product__add-to-cart-container {
  margin-top: 0.5rem;
}
.cg-product .product__actions-qty-add,
.cg-product .product-quantity {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
}
.cg-product .product__add-to-cart-button,
.cg-product .btn-primary.product__add-to-cart-button {
  min-height: 54px;
  padding-inline: 1.5rem !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  background: var(--brand, #654A94) !important;
  border-color: var(--brand, #654A94) !important;
  box-shadow: 0 14px 28px rgba(101, 74, 148, 0.28);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.cg-product .product__add-to-cart-button:hover {
  background: var(--brand-deep, #4f376f) !important;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(79, 55, 111, 0.32);
}

.cg-product__help {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line, rgba(28,24,36,0.1));
}
.cg-product__help-title {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  margin-bottom: 0.55rem;
}
.cg-product__help-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
}
.cg-product__help-note {
  font-size: 0.84rem;
  color: var(--ink-soft, #5a5366);
  margin: 0;
}

.cg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.65rem 1.15rem;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none !important;
  border-radius: 999px;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.cg-btn:hover { transform: translateY(-2px); }
.cg-btn--primary {
  background: var(--brand, #654A94);
  color: #fff !important;
}
.cg-btn--whatsapp {
  background: #1faa55;
  color: #fff !important;
}
.cg-btn--ghost {
  border: 1px solid var(--brand, #654A94);
  color: var(--brand, #654A94) !important;
  background: #fff;
}
.cg-btn--ghost:hover {
  background: var(--brand, #654A94);
  color: #fff !important;
}

/* Hide leftover product details / blockreassurance policies on product page */
.cg-product #product_details,
.cg-product .blockreassurance,
.cg-product .block-reassurance,
body#product .blockreassurance--product,
body#product .product-reassurance,
.cg-product .product-comments-wrapper,
.cg-product .product-comments-additional-info,
body#product .product-comments-wrapper,
body#product #product-comments-list-header {
  display: none !important;
}

/* Product info tabs — description unique + CMS policy links */
.cg-product-tabs {
  margin: 0 0 1.75rem;
  border: 1px solid rgba(101, 74, 148, 0.14);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(36, 28, 51, 0.06);
  overflow: hidden;
}
.cg-product-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.65rem;
  background: linear-gradient(180deg, #f7f3fc 0%, #fff 100%);
  border-bottom: 1px solid rgba(101, 74, 148, 0.1);
}
.cg-product-tabs__tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: #5c5470;
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  min-height: 42px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.cg-product-tabs__tab:hover {
  background: rgba(101, 74, 148, 0.08);
  color: var(--brand-deep, #4f376f);
}
.cg-product-tabs__tab.is-active {
  background: linear-gradient(160deg, #7a5cb0, var(--brand, #654A94));
  color: #fff;
  box-shadow: 0 8px 18px rgba(101, 74, 148, 0.24);
}
.cg-product-tabs__tab:focus-visible {
  outline: 3px solid rgba(101, 74, 148, 0.28);
  outline-offset: 2px;
}
.cg-product-tabs__panels {
  padding: 1.35rem 1.35rem 1.5rem;
}
.cg-product-tabs__panel[hidden] {
  display: none !important;
}
.cg-product-tabs__panel-head {
  max-width: 48rem;
  margin-bottom: 1rem;
}
.cg-product-tabs__panel-head h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.4rem;
  color: #1f1830;
}
.cg-product-tabs__panel-head p {
  margin: 0;
  color: #5c5470;
}
.cg-product-tabs__rich {
  color: #1f1830;
  font-size: 1.02rem;
  line-height: 1.65;
}
.cg-product-tabs__rich h2,
.cg-product-tabs__rich h3 {
  font-family: "Outfit", sans-serif;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.cg-product-tabs__rich ul {
  padding-left: 1.1rem;
  margin: 0.55rem 0 1rem;
}
.cg-product-tabs__cms-card {
  max-width: 40rem;
  padding: 1.15rem 1.2rem;
  border-radius: 14px;
  background: linear-gradient(165deg, #fffcf8 0%, #f6f1ff 100%);
  border: 1px solid rgba(101, 74, 148, 0.12);
}
.cg-product-tabs__cms-card h2 {
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.55rem;
  color: #1f1830;
}
.cg-product-tabs__cms-card > p {
  margin: 0 0 0.65rem;
  color: #5c5470;
  line-height: 1.5;
}
.cg-product-tabs__seo-note {
  font-size: 0.86rem !important;
  color: #6b6280 !important;
}
.cg-product-tabs__cms-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(160deg, #7a5cb0, var(--brand, #654A94));
  color: #fff !important;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 10px 22px rgba(101, 74, 148, 0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.cg-product-tabs__cms-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(101, 74, 148, 0.3);
  color: #fff !important;
}
.cg-product-tabs__empty {
  margin: 0;
  color: #5c5470;
}

@media (max-width: 640px) {
  .cg-product-tabs__nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .cg-product-tabs__tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .cg-product-tabs__panels {
    padding: 1.1rem 1rem 1.25rem;
  }
}

/* Bottom + aside */
.cg-product__bottom,
.cg-product .product__bottom {
  display: block;
  width: 100%;
  margin-bottom: 1.25rem;
}
.cg-product .product__accordion .accordion-item {
  background: #fff;
  border: 1px solid var(--line, rgba(28,24,36,0.1));
  margin-bottom: 0.55rem;
}
.cg-product .accordion-button {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: var(--ink, #1c1824);
  box-shadow: none !important;
}
.cg-product .accordion-button:not(.collapsed) {
  background: var(--brand-mist, #ece6f5);
  color: var(--brand-deep, #4f376f);
}
.cg-trust-card,
.cg-trust-card--wide {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  margin: 0 0 1.75rem;
  padding: 1.35rem 1.4rem 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(101, 74, 148, 0.14);
  background:
    linear-gradient(165deg, #ffffff 0%, #fffcf8 55%, #f4eefb 100%);
  box-shadow: 0 14px 32px rgba(36, 28, 51, 0.08);
  box-sizing: border-box;
}
.cg-trust-card__glow {
  position: absolute;
  width: 220px;
  height: 220px;
  top: -70px;
  right: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(101, 74, 148, 0.16), transparent 68%);
  pointer-events: none;
}
.cg-trust-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  margin-bottom: 1.1rem;
}
.cg-trust-card__intro {
  flex: 1 1 280px;
  min-width: 0;
  max-width: 40rem;
}
.cg-trust-card__eyebrow {
  margin: 0 0 0.35rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand, #654A94);
}
.cg-trust-card__title {
  margin: 0 0 0.35rem;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1f1830;
}
.cg-trust-card__lead {
  margin: 0;
  color: #5c5470;
  font-size: 0.95rem;
  line-height: 1.45;
}
.cg-trust-card__list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}
.cg-trust-card__list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.7rem;
  align-items: center;
  min-height: 100%;
  padding: 0.8rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(101, 74, 148, 0.1);
}
.cg-trust-card__ico {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff;
  color: var(--brand, #654A94);
  border: 1px solid rgba(101, 74, 148, 0.14);
  box-shadow: 0 6px 14px rgba(101, 74, 148, 0.1);
}
.cg-trust-card__list strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  color: #1f1830;
  line-height: 1.2;
}
.cg-trust-card__list em {
  display: block;
  margin-top: 0.15rem;
  font-style: normal;
  font-size: 0.8rem;
  color: #6b6280;
  line-height: 1.25;
}
.cg-trust-card__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  flex: 0 1 auto;
}
.cg-trust-card__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(160deg, #2f9e6b, #1f7a52);
  color: #fff !important;
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(31, 122, 82, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.cg-trust-card__wa:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(31, 122, 82, 0.34);
  color: #fff !important;
}
.cg-trust-card__wa-ico {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}
.cg-trust-card__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.65rem 1.05rem;
  border-radius: 999px;
  border: 1.5px solid rgba(101, 74, 148, 0.22);
  background: #fff;
  color: var(--brand-deep, #4f376f) !important;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.cg-trust-card__call:hover {
  background: #f4f0fa;
  border-color: rgba(101, 74, 148, 0.4);
  transform: translateY(-1px);
  color: var(--brand-deep, #4f376f) !important;
}

@media (max-width: 1100px) {
  .cg-trust-card__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .cg-trust-card,
  .cg-trust-card--wide {
    padding: 1.15rem 1rem 1.2rem;
  }
  .cg-trust-card__list {
    grid-template-columns: 1fr;
  }
  .cg-trust-card__actions {
    width: 100%;
    justify-content: stretch;
  }
  .cg-trust-card__wa,
  .cg-trust-card__call {
    width: 100%;
  }
}

.cg-product .featured-products,
.cg-product .product-accessories,
.page-product .product-accessories {
  margin-top: 2rem;
}

/* ===== Mattress-only: Mejor precio garantizado ===== */
.cg-mpg {
  margin: 1.15rem 0 1.25rem;
  display: grid;
  gap: 0.65rem;
  animation: cgMpgIn 0.55s ease both;
}
@keyframes cgMpgIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.cg-mpg__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(105deg, #f0c14b 0%, #f7e08a 45%, #e8b23a 100%);
  color: #1c1824;
  box-shadow: 0 10px 24px rgba(232, 178, 58, 0.28);
  position: relative;
  overflow: hidden;
}
.cg-mpg__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.45) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: cgMpgShine 3.2s ease-in-out infinite;
}
@keyframes cgMpgShine {
  0%, 55% { transform: translateX(-120%); }
  80%, 100% { transform: translateX(120%); }
}
.cg-mpg__banner-icon {
  display: inline-flex;
  color: #4f376f;
  z-index: 1;
}
.cg-mpg__banner-text {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 1;
}
.cg-mpg__card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 1rem 1.05rem;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cg-mpg__card:hover {
  transform: translateY(-2px);
}
.cg-mpg__card--price {
  background: linear-gradient(160deg, #f4effa 0%, #ebe3f6 100%);
  border-color: rgba(101, 74, 148, 0.28);
  box-shadow: 0 12px 28px rgba(101, 74, 148, 0.1);
}
.cg-mpg__card--pickup {
  background: linear-gradient(160deg, #eef8f1 0%, #e3f2e8 100%);
  border-color: rgba(31, 122, 70, 0.28);
  box-shadow: 0 12px 28px rgba(31, 122, 70, 0.08);
}
.cg-mpg__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.cg-mpg__icon--shield {
  background: var(--brand, #654A94);
  color: #fff;
  box-shadow: 0 8px 18px rgba(101, 74, 148, 0.35);
}
.cg-mpg__icon--truck {
  background: #1f7a46;
  color: #fff;
  box-shadow: 0 8px 18px rgba(31, 122, 70, 0.3);
}
.cg-mpg__title {
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 750;
  font-weight: 700;
  margin: 0 0 0.3rem;
  color: var(--ink, #1c1824);
  letter-spacing: -0.02em;
}
.cg-mpg__text {
  margin: 0;
  color: var(--ink-soft, #5a5366);
  font-size: 0.9rem;
  line-height: 1.45;
}
.cg-mpg__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.8rem;
}
.cg-mpg__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 42px;
  padding: 0.45rem 0.85rem;
  background: #fff;
  border: 1px solid rgba(28, 24, 36, 0.12);
  color: var(--ink, #1c1824) !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.84rem;
  transition: transform 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}
.cg-mpg__btn:hover {
  transform: translateY(-2px);
}
.cg-mpg__btn--phone:hover {
  border-color: var(--brand, #654A94);
  color: var(--brand-deep, #4f376f) !important;
}
.cg-mpg__btn--wa {
  border-color: rgba(31, 170, 85, 0.35);
}
.cg-mpg__btn--wa:hover {
  background: #1faa55;
  border-color: #1faa55;
  color: #fff !important;
}

@media (max-width: 991px) {
  .cg-product__main,
  .cg-product__bottom,
  .cg-product .product__bottom {
    display: block;
  }
  .cg-product__gallery,
  .cg-product__gallery .product__images,
  .cg-product__gallery .product__carousel {
    position: static;
  }
  .cg-product__trust-strip {
    grid-template-columns: 1fr;
  }
  .cg-mpg__actions {
    flex-direction: column;
  }
  .cg-mpg__btn {
    justify-content: center;
  }
}

/* ---------- Category listing (full width, 4-col, filters) ---------- */
/* Live body classes: page-category / #category (not body.category) */
body.page-category #wrapper .columns-container,
body.page-category #wrapper .container,
body.page-category .page-content,
body#category #wrapper .columns-container,
body#category #wrapper .container,
body#category .page-content {
  max-width: var(--max, 1320px);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
body.page-category #left-column,
body.page-category .left-column,
body#category #left-column,
body#category .left-column {
  display: none !important;
}
body.page-category #center-column,
body.page-category .center-column,
body.page-category .page,
body#category #center-column,
body#category .center-column,
body#category .page {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
body.page-category.layout-full-width .products,
body.layout-full-width.page-category .products,
body#category.layout-full-width .products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1.35rem 1.15rem !important;
}
@media (max-width: 1199px) {
  body.page-category.layout-full-width .products,
  body.layout-full-width.page-category .products,
  body#category.layout-full-width .products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 991px) {
  body.page-category.layout-full-width .products,
  body.layout-full-width.page-category .products,
  body#category.layout-full-width .products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 767px) {
  body.page-category.layout-full-width .products,
  body.layout-full-width.page-category .products,
  body#category.layout-full-width .products {
    grid-template-columns: 1fr !important;
  }
}

.cg-category-header {
  margin: 0.5rem 0 0.25rem;
}
.cg-category-header .page-title-section,
.cg-category-header h1 {
  font-family: "Outfit", "Manrope", sans-serif !important;
  font-weight: 750 !important;
  letter-spacing: -0.02em;
  color: var(--ink) !important;
  margin-bottom: 1rem !important;
}
.cg-category-cover {
  margin: 0 0 1.25rem;
  border-radius: 1rem;
  overflow: hidden;
}
.cg-category-cover img {
  width: 100%;
  height: auto;
  display: block;
}
.cg-category-subcats {
  margin: 0 0 1rem;
}

body.page-category #products,
body#category #products {
  margin-top: 0.25rem;
}
body.page-category .products__selection,
body#category .products__selection,
.cg-category-page .products__selection {
  display: none !important;
}
body.page-category .products__filter-button,
body#category .products__filter-button {
  display: none !important;
}

.cg-category-footer {
  margin: 2.75rem 0 1.5rem;
  padding: 1.75rem 1.5rem;
  background:
    radial-gradient(700px 200px at 0% 0%, rgba(101, 74, 148, 0.08), transparent 60%),
    #fff;
  border: 1px solid var(--line, rgba(28, 24, 36, 0.1));
  border-radius: 1.15rem;
}
.cg-category-desc__check {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.cg-category-footer .cg-category-desc,
.cg-category-footer.is-collapsible .cg-category-desc,
.cg-category-footer.is-collapsible:not(.is-open) .cg-category-desc {
  position: relative;
  max-height: 220px;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.cg-category-footer .cg-category-desc::after,
.cg-category-footer.is-collapsible:not(.is-open) .cg-category-desc::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 80%);
  pointer-events: none;
}
.cg-category-footer .cg-category-desc__check:checked ~ .cg-category-desc,
.cg-category-footer.is-open .cg-category-desc,
.cg-category-footer.is-collapsible.is-open .cg-category-desc {
  max-height: none !important;
  overflow: visible !important;
}
.cg-category-footer .cg-category-desc__check:checked ~ .cg-category-desc::after,
.cg-category-footer.is-open .cg-category-desc::after {
  display: none !important;
}
.cg-category-footer.is-short .cg-category-desc {
  max-height: none !important;
  overflow: visible !important;
}
.cg-category-footer.is-short .cg-category-desc::after,
.cg-category-footer.is-short .cg-category-desc__toggle {
  display: none !important;
}
.cg-category-desc__toggle {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(101, 74, 148, 0.28);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-deep, #4f376f);
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 750;
  cursor: pointer;
  user-select: none;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.cg-category-desc__toggle:hover {
  background: rgba(101, 74, 148, 0.08);
  border-color: rgba(101, 74, 148, 0.45);
  transform: translateY(-1px);
}
.cg-category-desc__less {
  display: none;
}
.cg-category-desc__check:checked ~ .cg-category-desc__toggle .cg-category-desc__more {
  display: none;
}
.cg-category-desc__check:checked ~ .cg-category-desc__toggle .cg-category-desc__less {
  display: inline;
}
.cg-category-description {
  color: var(--ink-soft, #5a5366);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 75ch;
}
.cg-category-description + .cg-category-description {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line, rgba(28, 24, 36, 0.1));
}
.cg-category-description h2,
.cg-category-description h3 {
  font-family: "Outfit", "Manrope", sans-serif;
  color: var(--ink, #1c1824);
  margin-top: 1.25rem;
}

/* Instant add-to-cart feedback while AJAX runs */
.cg-cart-pending {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(28, 24, 36, 0.35);
  backdrop-filter: blur(2px);
}
.cg-cart-pending__panel {
  width: min(420px, 100%);
  padding: 1.5rem 1.35rem;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(28, 24, 36, 0.22);
  text-align: center;
}
.cg-cart-pending__spinner {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  border: 3px solid rgba(101, 74, 148, 0.18);
  border-top-color: var(--brand, #654A94);
  animation: cg-cart-spin 0.7s linear infinite;
}
.cg-cart-pending__title {
  margin: 0;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink, #1c1824);
}
.cg-cart-pending__name {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: var(--ink-soft, #5a5366);
}
@keyframes cg-cart-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== Cart page redesign ===== */
body.page-cart {
  background: var(--paper, #f6f3ef);
}

body.page-cart #wrapper .breadcrumb {
  display: none !important;
}

/* Hide PayPal express on cart page only (still available at checkout) */
body.page-cart .paypal-buttons,
body.page-cart .paypal_payment_form,
body.page-cart [id*="paypal-button"],
body.page-cart .js-paypal,
body.page-cart iframe[src*="paypal.com"] {
  display: none !important;
}

.cg-cart {
  --cg-cart-max: 1180px;
  max-width: var(--cg-cart-max);
  margin: 0 auto;
  padding: 1.25rem 1.25rem 3rem;
}

.cg-cart__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  margin-bottom: 1.5rem;
}

.cg-cart__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand, #654A94);
}

.cg-cart__title {
  margin: 0;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 750;
  line-height: 1.1;
  color: var(--ink, #1c1824);
}

.cg-cart__count {
  margin: 0.35rem 0 0;
  color: var(--ink-soft, #5a5366);
  font-size: 0.98rem;
}

.cg-cart__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cg-cart__step {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(28, 24, 36, 0.05);
  color: #7a7382;
  font-size: 0.82rem;
  font-weight: 600;
}

.cg-cart__step span {
  display: inline-grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: #fff;
  color: inherit;
  font-size: 0.75rem;
}

.cg-cart__step.is-active {
  background: rgba(101, 74, 148, 0.12);
  color: var(--brand, #654A94);
}

.cg-cart__step.is-active span {
  background: var(--brand, #654A94);
  color: #fff;
}

.cg-cart__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  align-items: start;
}

.cg-cart__section-title {
  margin: 0;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink, #1c1824);
}

.cg-cart__products-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.cg-cart__continue {
  color: var(--brand, #654A94);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.cg-cart__continue:hover {
  text-decoration: underline;
}

.cg-cart__products .cart__overview,
.cg-cart__products .cart-overview {
  background: #fff;
  border: 1px solid rgba(28, 24, 36, 0.08);
  border-radius: 18px;
  overflow: hidden;
}

.cg-cart__products .cart__list,
.cg-cart__products .js-cart-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  gap: 0;
}

.cg-cart__products .cart__item,
.cg-cart__products .js-cart-item {
  border-bottom: 1px solid rgba(28, 24, 36, 0.08);
}

.cg-cart__products .cart__item:last-child,
.cg-cart__products .js-cart-item:last-child {
  border-bottom: 0;
}

/* Product line */
.cg-cart-line.product-line {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 1rem 1.15rem;
  padding: 1.15rem 1.2rem;
  margin: 0;
  align-items: start;
}

.cg-cart-line__image {
  width: 96px;
}

.cg-cart-line__image img,
.cg-cart-line .product-line__img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
  background: #f3f0f7;
}

.cg-cart-line__body.product-line__content {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 150px 100px 72px !important;
  gap: 0.75rem 1rem;
  align-items: start;
  width: 100%;
}

.cg-cart-line__title {
  display: block;
  margin: 0 0 0.35rem;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink, #1c1824);
  text-decoration: none;
}

.cg-cart-line__title:hover {
  color: var(--brand, #654A94);
}

.cg-cart-line__attrs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin: 0 0 0.5rem;
  padding: 0;
  list-style: none;
  color: var(--ink-soft, #5a5366);
  font-size: 0.88rem;
}

.cg-cart-line__attrs span {
  color: #8a8292;
}

.cg-cart-line__unit {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 0.55rem;
}

.cg-cart-line__price {
  font-weight: 700;
  color: var(--brand, #654A94);
}

.cg-cart-line__regular {
  color: #9a93a0;
  text-decoration: line-through;
  font-size: 0.9rem;
}

.cg-cart-line__badge {
  display: inline-flex;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: rgba(101, 74, 148, 0.12);
  color: var(--brand, #654A94);
  font-size: 0.75rem;
  font-weight: 700;
}

.cg-cart-line__stock {
  margin: 0.45rem 0 0;
  font-size: 0.85rem;
}

.cg-cart-line__stock.is-ok {
  color: #2f7a46;
}

.cg-cart-line__stock.is-warn {
  color: #9a6b12;
}

.cg-cart-line__stock.is-bad {
  color: #a33a3a;
}

.cg-cart-line__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a8292;
}

.page-cart .cg-cart-line__qty.quantity-button,
.page-cart .cg-cart-line__qty.product-line__quantity-button {
  display: block !important;
  width: 150px !important;
  max-width: 150px;
}

.page-cart .cg-cart-line .quantity-button__group.input-group {
  display: inline-flex !important;
  flex-flow: row nowrap !important;
  align-items: center !important;
  width: auto !important;
  max-width: none !important;
  border: 1px solid rgba(28, 24, 36, 0.14);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.page-cart .cg-cart-line .quantity-button__group .btn,
.page-cart .cg-cart-line .js-increment-button,
.page-cart .cg-cart-line .js-decrement-button {
  flex: 0 0 2.25rem !important;
  width: 2.25rem !important;
  min-width: 2.25rem !important;
  height: 2.25rem !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--ink, #1c1824);
}

.page-cart .cg-cart-line .quantity-button__group .form-control,
.page-cart .cg-cart-line input.js-cart-line-product-quantity {
  flex: 0 0 2.75rem !important;
  width: 2.75rem !important;
  min-width: 2.75rem !important;
  max-width: 2.75rem !important;
  height: 2.25rem !important;
  margin: 0 !important;
  border: 0 !important;
  border-left: 1px solid rgba(28, 24, 36, 0.1) !important;
  border-right: 1px solid rgba(28, 24, 36, 0.1) !important;
  border-radius: 0 !important;
  text-align: center !important;
  box-shadow: none !important;
}

.page-cart .cg-cart-line__actions.product-line__actions {
  width: auto !important;
  min-width: 72px;
}

.cg-cart-line__total strong,
.cg-cart-line__total .product-line__price {
  display: block;
  font-size: 1.05rem;
  font-weight: 750;
  color: var(--ink, #1c1824);
}

.cg-cart-line__remove {
  display: inline-flex;
  margin-top: 1.35rem;
  color: #8a8292;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cg-cart-line__remove:hover {
  color: #a33a3a;
}

.cg-cart__promises {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft, #5a5366);
  font-size: 0.9rem;
}

.cg-cart__promises strong {
  color: var(--ink, #1c1824);
  font-weight: 700;
}

/* Summary aside */
.cg-cart__summary {
  position: sticky;
  top: 1rem;
  padding: 1.25rem 1.2rem 1.35rem;
  border: 1px solid rgba(28, 24, 36, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(28, 24, 36, 0.05);
}

.cg-cart__summary > .cg-cart__section-title {
  margin-bottom: 1rem;
}

.cg-cart-summary__lines {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.cg-cart-summary__line,
.page-cart .cart-summary__line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft, #5a5366);
}

.page-cart .cart-summary__value.is-free,
.page-cart #cart-subtotal-shipping .cart-summary__value {
  color: #2f7a46;
  font-weight: 700;
}

.page-cart .cart-summary__total,
.page-cart .js-cart-summary-totals {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(28, 24, 36, 0.1);
}

.page-cart .cart-summary__line--bold {
  font-size: 1.15rem;
  font-weight: 750;
  color: var(--ink, #1c1824);
}

.page-cart .cart-summary__line--bold .cart-summary__value {
  color: var(--brand, #654A94);
  font-size: 1.35rem;
}

.page-cart .cart-voucher {
  margin: 0.75rem 0 0.25rem;
  padding: 0.65rem 0 0;
  border-top: 1px dashed rgba(28, 24, 36, 0.12);
}

.cg-cart-actions {
  margin-top: 1rem;
}

.cg-cart-actions__cta {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 3.15rem;
  border: 0;
  border-radius: 14px !important;
  background: var(--brand, #654A94) !important;
  box-shadow: 0 10px 24px rgba(101, 74, 148, 0.28);
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.cg-cart-actions__cta:hover {
  filter: brightness(1.05);
}

.cg-cart-actions__note {
  margin: 0.55rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: #8a8292;
}

.cg-cart__help {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(28, 24, 36, 0.08);
}

.cg-cart__help-title {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink, #1c1824);
}

.cg-cart__help-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
}

.cg-cart__help-links a {
  color: var(--brand, #654A94);
  font-weight: 700;
  text-decoration: none;
}

.cg-cart__help-links a:hover {
  text-decoration: underline;
}

.cg-cart__crosssell {
  margin-top: 2.5rem;
}

.cg-cart__crosssell .featured-products,
.cg-cart__crosssell .products {
  max-width: none;
}

.cg-cart-empty {
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(28, 24, 36, 0.08);
  border-radius: 18px;
  background: #fff;
  text-align: center;
}

.cg-cart-empty__title {
  margin: 0 0 0.4rem;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 1.4rem;
  font-weight: 750;
}

.cg-cart-empty__text {
  margin: 0 0 1.25rem;
  color: var(--ink-soft, #5a5366);
}

/* Hide old continue button style leftovers */
.page-cart .cart__continue-shopping.btn {
  display: none;
}

.page-cart hr {
  display: none;
}

.page-cart .page-title-section {
  display: none;
}

@media (max-width: 991px) {
  .cg-cart__grid {
    grid-template-columns: 1fr;
  }

  .cg-cart__summary {
    position: static;
  }

  .cg-cart-line__body.product-line__content {
    grid-template-columns: 1fr 1fr !important;
    grid-template-areas:
      "info info"
      "qty total"
      "actions actions";
  }

  .page-cart .cg-cart-line__qty.quantity-button,
  .page-cart .cg-cart-line__qty.product-line__quantity-button {
    width: auto !important;
    max-width: none !important;
  }

  .page-cart .cg-cart-line .quantity-button__group .btn,
  .page-cart .cg-cart-line .js-increment-button,
  .page-cart .cg-cart-line .js-decrement-button {
    flex: 0 0 2.75rem !important;
    width: 2.75rem !important;
    min-width: 2.75rem !important;
    height: 2.75rem !important;
  }

  .cg-cart-line__info {
    grid-area: info;
  }

  .cg-cart-line__qty {
    grid-area: qty;
  }

  .cg-cart-line__total {
    grid-area: total;
    text-align: right;
  }

  .cg-cart-line__actions {
    grid-area: actions;
  }

  .cg-cart-line__remove {
    margin-top: 0.25rem;
  }
}

@media (max-width: 640px) {
  .cg-cart {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .cg-cart-line.product-line {
    grid-template-columns: 72px minmax(0, 1fr);
    padding: 1rem;
  }

  .cg-cart-line__image,
  .cg-cart-line__image img,
  .cg-cart-line .product-line__img {
    width: 72px;
    height: 72px;
  }

  .cg-cart__promises {
    flex-direction: column;
    gap: 0.35rem;
  }
}

/* ===== Advanced checkout (/pedido) ===== */
body.page-order {
  background:
    radial-gradient(1200px 420px at 10% -10%, rgba(101, 74, 148, 0.12), transparent 60%),
    radial-gradient(900px 380px at 100% 0%, rgba(101, 74, 148, 0.08), transparent 55%),
    var(--paper, #f6f3ef);
}

body.page-order #wrapper > .container,
body.page-order .columns-container.container {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

body.page-order #center-column,
body.page-order .center-column {
  padding: 0;
}

.cg-checkout {
  --cg-check-max: 1180px;
  max-width: var(--cg-check-max);
  margin: 0 auto;
  padding: 1.25rem 1.25rem 3.5rem;
}

.cg-checkout__top {
  margin-bottom: 1.5rem;
}

.cg-checkout__brandline {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.25rem;
}

.cg-checkout__back {
  justify-self: start;
  align-self: center;
  color: var(--brand, #654A94);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.cg-checkout__back:hover {
  text-decoration: underline;
}

.cg-checkout__heading {
  justify-self: center;
  text-align: center;
}

.cg-checkout__eyebrow {
  margin: 0 0 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand, #654A94);
}

.cg-checkout__title {
  margin: 0;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 780;
  line-height: 1.1;
  color: var(--ink, #1c1824);
}

.cg-checkout__trust {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cg-checkout__trust li {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(28, 24, 36, 0.08);
  color: #5a5366;
  font-size: 0.78rem;
  font-weight: 650;
}

/* Stepper — clean connected progress */
.cg-checkout-steps {
  margin: 0;
  padding: 1.1rem 1.25rem 1rem;
  border: 1px solid rgba(28, 24, 36, 0.08);
  border-radius: 16px;
  background: #fff;
}

.cg-checkout-steps .checkout-steps__desktop,
.cg-checkout-steps__list {
  position: relative;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Continuous line behind the step numbers */
.cg-checkout-steps__list::before {
  content: "";
  position: absolute;
  top: 1.05rem;
  left: calc(12.5% + 0.15rem);
  right: calc(12.5% + 0.15rem);
  height: 2px;
  background: rgba(28, 24, 36, 0.1);
  z-index: 0;
}

.cg-checkout-steps .checkout-steps__mobile {
  display: none;
}

.cg-checkout-steps__item {
  position: relative;
  z-index: 1;
  margin: 0;
  list-style: none;
}

/* Kill Hummingbird divider lines / leftover chrome */
.cg-checkout-steps__item::before,
.cg-checkout-steps__item::after,
.cg-checkout-steps .checkout-steps__step::before,
.cg-checkout-steps .checkout-steps__step::after,
.cg-checkout-steps .checkout-steps__number::before,
.cg-checkout-steps .checkout-steps__number::after,
.cg-checkout-steps .checkout-steps__btn::before,
.cg-checkout-steps .checkout-steps__btn::after {
  content: none !important;
  display: none !important;
  border: 0 !important;
  background: none !important;
  box-shadow: none !important;
}

.cg-checkout-steps__btn.btn-link {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start;
  gap: 0.45rem;
  width: 100%;
  min-height: 0;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #8a8292 !important;
  text-align: center;
  text-decoration: none !important;
  box-shadow: none !important;
}

.cg-checkout-steps__num,
.cg-checkout-steps .checkout-steps__number {
  display: inline-grid !important;
  place-items: center;
  width: 2.1rem !important;
  height: 2.1rem !important;
  margin: 0 !important;
  border: 2px solid #fff !important;
  border-radius: 50% !important;
  background: #e8e4ee !important;
  color: #6b6570 !important;
  font-size: 0.85rem !important;
  font-weight: 750 !important;
  box-shadow: 0 0 0 1px rgba(28, 24, 36, 0.08);
  line-height: 1;
}

.cg-checkout-steps__title {
  display: block;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.2;
  color: inherit;
}

.cg-checkout-steps__hint,
.cg-checkout-steps__copy {
  display: none !important;
}

body.page-order:has(#checkout-personal-information-step.js-current-step) [data-step="checkout-personal-information-step"] .cg-checkout-steps__btn,
body.page-order:has(#checkout-addresses-step.js-current-step) [data-step="checkout-addresses-step"] .cg-checkout-steps__btn,
body.page-order:has(#checkout-delivery-step.js-current-step) [data-step="checkout-delivery-step"] .cg-checkout-steps__btn,
body.page-order:has(#checkout-payment-step.js-current-step) [data-step="checkout-payment-step"] .cg-checkout-steps__btn,
.cg-checkout-steps__item .cg-checkout-steps__btn[aria-selected="true"],
.cg-checkout-steps__item.-current .cg-checkout-steps__btn,
.cg-checkout-steps__item.active .cg-checkout-steps__btn {
  background: transparent !important;
  border: 0 !important;
  color: var(--brand, #654A94) !important;
  transform: none;
}

body.page-order:has(#checkout-personal-information-step.js-current-step) [data-step="checkout-personal-information-step"] .cg-checkout-steps__num,
body.page-order:has(#checkout-addresses-step.js-current-step) [data-step="checkout-addresses-step"] .cg-checkout-steps__num,
body.page-order:has(#checkout-delivery-step.js-current-step) [data-step="checkout-delivery-step"] .cg-checkout-steps__num,
body.page-order:has(#checkout-payment-step.js-current-step) [data-step="checkout-payment-step"] .cg-checkout-steps__num,
.cg-checkout-steps__item .cg-checkout-steps__btn[aria-selected="true"] .cg-checkout-steps__num,
.cg-checkout-steps__item.-current .cg-checkout-steps__num,
.cg-checkout-steps__item.active .cg-checkout-steps__num {
  background: var(--brand, #654A94) !important;
  color: #fff !important;
  box-shadow: 0 0 0 4px rgba(101, 74, 148, 0.14);
}

body.page-order:has(#checkout-personal-information-step.js-current-step) [data-step="checkout-personal-information-step"] .cg-checkout-steps__title,
body.page-order:has(#checkout-addresses-step.js-current-step) [data-step="checkout-addresses-step"] .cg-checkout-steps__title,
body.page-order:has(#checkout-delivery-step.js-current-step) [data-step="checkout-delivery-step"] .cg-checkout-steps__title,
body.page-order:has(#checkout-payment-step.js-current-step) [data-step="checkout-payment-step"] .cg-checkout-steps__title,
.cg-checkout-steps__item .cg-checkout-steps__btn[aria-selected="true"] .cg-checkout-steps__title,
.cg-checkout-steps__item.-current .cg-checkout-steps__title,
.cg-checkout-steps__item.active .cg-checkout-steps__title {
  font-weight: 750;
  color: var(--brand, #654A94);
}

body.page-order:has(#checkout-personal-information-step.step--complete) [data-step="checkout-personal-information-step"] .cg-checkout-steps__num,
body.page-order:has(#checkout-addresses-step.step--complete) [data-step="checkout-addresses-step"] .cg-checkout-steps__num,
body.page-order:has(#checkout-delivery-step.step--complete) [data-step="checkout-delivery-step"] .cg-checkout-steps__num,
body.page-order:has(#checkout-payment-step.step--complete) [data-step="checkout-payment-step"] .cg-checkout-steps__num {
  background: #2f7a46 !important;
  color: #fff !important;
  box-shadow: none;
}

.cg-checkout__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.9fr);
  gap: 1.5rem;
  align-items: start;
}

.cg-checkout__main,
.cg-checkout-step {
  min-width: 0;
}

.cg-checkout-step {
  padding: 1.35rem 1.4rem 1.5rem;
  border: 1px solid rgba(28, 24, 36, 0.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(28, 24, 36, 0.05);
  animation: cg-checkout-in 0.35s ease;
}

@keyframes cg-checkout-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.cg-checkout-step__head {
  margin-bottom: 1.1rem;
}

.cg-checkout-step__title {
  margin: 0;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 750;
  color: var(--ink, #1c1824);
}

.cg-checkout-step__lead {
  margin: 0.35rem 0 0;
  color: #5a5366;
  font-size: 0.98rem;
  max-width: 42ch;
}

.cg-checkout-step .page-title-section,
.cg-checkout-step hr {
  display: none !important;
}

/* Auth tabs */
.cg-checkout-auth__tabs.nav-underline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
  border: 0;
}

.cg-checkout-auth__tabs .nav-link {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(28, 24, 36, 0.1) !important;
  border-radius: 14px !important;
  background: #f7f5f9;
  color: #5a5366;
  font-weight: 700;
  text-align: center;
}

.cg-checkout-auth__tabs .nav-link.active {
  background: rgba(101, 74, 148, 0.1);
  border-color: rgba(101, 74, 148, 0.35) !important;
  color: var(--brand, #654A94);
}

.cg-checkout-auth__note {
  margin: 0 0 1rem;
  color: #6b6570;
  font-size: 0.92rem;
}

.cg-checkout-account {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(101, 74, 148, 0.06);
}

.cg-checkout-account__hello {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.cg-checkout-account__meta,
.cg-checkout-account__note {
  margin: 0;
  color: #5a5366;
  font-size: 0.92rem;
}

.cg-checkout-account__note {
  margin-top: 0.45rem;
  font-size: 0.82rem;
  color: #8a8292;
}

/* Forms */
.page-order .cg-checkout .form-control,
.page-order .cg-checkout .form-select {
  min-height: 3rem;
  border-radius: 12px;
  border-color: rgba(28, 24, 36, 0.14);
  background: #fff;
}

.page-order .cg-checkout .form-control:focus,
.page-order .cg-checkout .form-select:focus {
  border-color: rgba(101, 74, 148, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(101, 74, 148, 0.12);
}

.page-order .cg-checkout .form-label {
  font-weight: 650;
  color: #3a3540;
}

.page-order .cg-checkout .form-control-comment,
.page-order .cg-checkout .form-text {
  color: #8a8292;
  font-size: 0.8rem;
}

.cg-checkout-cta.btn-primary,
.page-order .cg-checkout .btn-primary {
  min-height: 3.05rem;
  border: 0 !important;
  border-radius: 14px !important;
  background: var(--brand, #654A94) !important;
  box-shadow: 0 12px 26px rgba(101, 74, 148, 0.26);
  font-family: "Outfit", "Manrope", sans-serif;
  font-weight: 750;
}

.page-order .cg-checkout .btn-outline-primary {
  min-height: 3.05rem;
  border-radius: 14px !important;
  border-color: rgba(101, 74, 148, 0.35) !important;
  color: var(--brand, #654A94) !important;
}

.cg-checkout-nav {
  gap: 0.75rem;
}

/* Delivery / payment options as selectable cards */
.page-order .delivery-option__item,
.page-order .payment-option {
  margin-bottom: 0.75rem;
  border: 1px solid rgba(28, 24, 36, 0.1);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-order .delivery-option__label,
.page-order .payment-option__label {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 1rem 1.05rem;
  margin: 0;
  cursor: pointer;
}

.page-order .delivery-option__item:has(input:checked),
.page-order .payment-option:has(input:checked) {
  border-color: rgba(101, 74, 148, 0.45);
  box-shadow: 0 0 0 3px rgba(101, 74, 148, 0.1);
}

.page-order .delivery-option__price,
.page-order .payment-option__call-to-action {
  margin-left: auto;
  font-weight: 750;
  color: var(--brand, #654A94);
}

.page-order .payment-option__additional-information,
.page-order .delivery-option__extra-content {
  padding: 0 1.05rem 1rem;
  color: #5a5366;
  font-size: 0.92rem;
}

/* Payment methods: ordered, aligned radio + logo + title */
.page-order .cg-payment-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.page-order .cg-payment-option {
  margin-bottom: 0;
}

.page-order .cg-payment-option__label {
  display: grid;
  grid-template-columns: auto 56px minmax(0, 1fr);
  align-items: center;
  column-gap: 0.9rem;
  width: 100%;
  min-height: 4.35rem;
  margin: 0;
  padding: 0.95rem 1.1rem;
  cursor: pointer;
}

.page-order .cg-payment-option:not(:has(.cg-payment-option__logo)) .cg-payment-option__label {
  grid-template-columns: auto minmax(0, 1fr);
}

.page-order .cg-payment-option__radio {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.page-order .cg-payment-option__radio .form-check-input,
.page-order .cg-payment-option__input.form-check-input {
  float: none;
  margin: 0;
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid rgba(28, 24, 36, 0.28);
  box-shadow: none;
  cursor: pointer;
}

.page-order .cg-payment-option__radio .form-check-input:checked,
.page-order .cg-payment-option__input.form-check-input:checked {
  background-color: var(--brand, #654A94);
  border-color: var(--brand, #654A94);
}

.page-order .cg-payment-option__radio .form-check-input:focus,
.page-order .cg-payment-option__input.form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(101, 74, 148, 0.18);
  border-color: var(--brand, #654A94);
}

.page-order .cg-payment-option__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 36px;
  padding: 0.2rem;
  border-radius: 8px;
  background: #f6f4f8;
}

.page-order .cg-payment-option__logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 28px;
  object-fit: contain;
}

.page-order .cg-payment-option__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.page-order .cg-payment-option__title {
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.25;
  color: #1c1824;
}

.page-order .cg-payment-option__extra {
  padding: 0 1.1rem 1rem 3.2rem;
  border-top: 1px solid rgba(28, 24, 36, 0.06);
}

.page-order .cg-payment-option__extra .paypal-buttons,
.page-order .cg-payment-option__extra iframe,
.page-order .cg-payment-option__extra img {
  max-width: 100%;
}

/* Preferred visual order: tarjeta/bizum, Cofidis, then PayPal */
.page-order .cg-payment-option[data-module="redsyspur"] {
  order: 1;
}

.page-order .cg-payment-option[data-module="redsyspur"] ~ .cg-payment-option[data-module="redsyspur"] {
  order: 2;
}

.page-order .cg-payment-option[data-module="cofidis"] {
  order: 5;
}

.page-order .cg-payment-option[data-module="ps_wirepayment"] {
  order: 8;
}

.page-order .cg-payment-option[data-module="paypal"] {
  order: 10;
}

/* Terms checkbox aligned with payment cards */
.page-order .cg-conditions {
  margin-top: 1.15rem;
  margin-bottom: 0.25rem;
}

.page-order .cg-conditions__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  margin: 0;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(28, 24, 36, 0.1);
  border-radius: 14px;
  background: #faf9fb;
  cursor: pointer;
}

.page-order .cg-conditions__input.form-check-input {
  float: none;
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.15rem 0 0;
  border: 2px solid rgba(28, 24, 36, 0.28);
  box-shadow: none;
  cursor: pointer;
}

.page-order .cg-conditions__input.form-check-input:checked {
  background-color: var(--brand, #654A94);
  border-color: var(--brand, #654A94);
}

.page-order .cg-conditions__input.form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(101, 74, 148, 0.18);
  border-color: var(--brand, #654A94);
}

.page-order .cg-conditions__text {
  color: #3d3648;
  font-size: 0.92rem;
  line-height: 1.45;
}

.page-order .cg-conditions__text a {
  color: var(--brand, #654A94);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-order .address__list,
.page-order .js-address-selector {
  display: grid;
  gap: 0.75rem;
}

.page-order .address-item,
.page-order .address {
  border: 1px solid rgba(28, 24, 36, 0.1);
  border-radius: 16px;
  padding: 1rem;
  background: #fff;
}

.page-order .address-item:has(input:checked),
.page-order .address:has(input:checked) {
  border-color: rgba(101, 74, 148, 0.45);
  box-shadow: 0 0 0 3px rgba(101, 74, 148, 0.1);
}

/* Summary aside */
.cg-checkout__summary {
  position: sticky;
  top: 1rem;
  padding: 1.2rem 1.15rem 1.3rem;
  border: 1px solid rgba(28, 24, 36, 0.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(28, 24, 36, 0.07);
}

.cg-checkout__summary-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.cg-checkout__summary-title {
  margin: 0;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 750;
}

.cg-checkout__summary-count {
  margin: 0;
  color: #8a8292;
  font-size: 0.88rem;
  font-weight: 650;
}

.cg-checkout-summary-products__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(28, 24, 36, 0.08);
}

.cg-checkout-summary-products .cart-summary-product,
.cg-checkout-summary-products__item .cart-summary-product {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 0.7rem;
}

.cg-checkout-summary-products .cart-summary-product__img,
.cg-checkout-summary-products img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
  background: #f3f0f7;
}

.cg-checkout-summary-products .cart-summary-product__link {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink, #1c1824);
  text-decoration: none;
  line-height: 1.25;
}

.cg-checkout-summary-products .cart-summary-product__attribute,
.cg-checkout-summary-products .cart-summary-product__quantity {
  font-size: 0.78rem;
  color: #8a8292;
}

.cg-checkout-summary-products .cart-summary-product__total {
  margin-top: 0.2rem;
  font-weight: 750;
  color: var(--brand, #654A94);
}

.page-order .cg-checkout .cart-summary__line {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0.45rem 0;
  color: #5a5366;
  font-size: 0.95rem;
}

.page-order .cg-checkout #cart-subtotal-shipping .cart-summary__value {
  color: #2f7a46;
  font-weight: 750;
}

.page-order .cg-checkout .cart-summary__line--bold {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(28, 24, 36, 0.1);
  font-size: 1.08rem;
  font-weight: 780;
  color: var(--ink, #1c1824);
}

.page-order .cg-checkout .cart-summary__line--bold .cart-summary__value {
  color: var(--brand, #654A94);
  font-size: 1.3rem;
}

.page-order .cg-checkout .cart-voucher {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(28, 24, 36, 0.12);
}

.cg-checkout__help {
  margin-top: 1rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(28, 24, 36, 0.08);
}

.cg-checkout__help-title {
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
  font-weight: 750;
}

.cg-checkout__help-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.9rem;
}

.cg-checkout__help-links a {
  color: var(--brand, #654A94);
  font-weight: 750;
  text-decoration: none;
}

.cg-checkout__help-links a:hover {
  text-decoration: underline;
}

/* Hide leftover accordion chrome */
.page-order .checkout__summary-accordion,
.page-order .checkout__summary-accordion-header,
.page-order .checkout-grid,
.page-order .checkout-steps__desktop + .checkout-steps__mobile {
  /* keep mobile handled below */
}

.page-order .checkout__summary-accordion-header {
  display: none !important;
}

@media (max-width: 991px) {
  .cg-checkout__brandline {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .cg-checkout__heading,
  .cg-checkout__trust {
    justify-self: start;
    text-align: left;
  }

  .cg-checkout__trust {
    justify-content: flex-start;
  }

  .cg-checkout-steps .checkout-steps__list,
  .cg-checkout-steps__list {
    display: none !important;
  }

  .cg-checkout-steps .checkout-steps__mobile {
    display: flex !important;
    align-items: center;
    gap: 0.85rem;
  }

  .cg-checkout__grid {
    grid-template-columns: 1fr;
  }

  .cg-checkout__summary {
    position: static;
    order: -1;
  }

  .cg-checkout__aside {
    order: -1;
  }
}

@media (max-width: 640px) {
  .cg-checkout {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .cg-checkout-step {
    padding: 1.1rem;
  }

  .cg-checkout__trust li {
    font-size: 0.72rem;
  }
}

/* Keep Cofidis hook area; hide social share that shares the same hook */
.page-product .product__additional-info .ps-sharebuttons {
  display: none !important;
}

/* Product financing strips: PayPal + Cofidis (one-line) */
.cg-product .cg-paypal-finance,
.page-product .cg-paypal-finance,
.cg-product .cg-cofidis,
.page-product .cg-cofidis {
  width: 100%;
  margin: 0.55rem 0 0;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(28, 24, 36, 0.1);
  border-radius: 12px;
  background: #f7f6f9;
}

.cg-product .cg-paypal-finance__row,
.page-product .cg-paypal-finance__row,
.cg-product .cg-cofidis__row,
.page-product .cg-cofidis__row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.65rem;
  min-height: 1.6rem;
}

.cg-product .cg-paypal-finance__logo,
.page-product .cg-paypal-finance__logo {
  width: 62px;
  height: auto;
  flex: 0 0 auto;
}

.cg-product .cg-cofidis__logo,
.page-product .cg-cofidis__logo {
  width: 68px;
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

.cg-product .cg-paypal-finance__label,
.page-product .cg-paypal-finance__label,
.cg-product .cg-cofidis__label,
.page-product .cg-cofidis__label {
  flex: 0 0 auto;
  color: #1c1824;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 750;
  white-space: nowrap;
}

.cg-product .cg-paypal-finance__msg,
.page-product .cg-paypal-finance__msg {
  flex: 1 1 auto;
  min-width: 0;
  color: #5a5366;
  font-size: 0.88rem;
  line-height: 1.25;
  overflow: hidden;
}

.cg-product .cg-paypal-finance__msg [paypal-messaging-banner],
.page-product .cg-paypal-finance__msg [paypal-messaging-banner] {
  display: block;
  max-width: 100%;
}

.cg-product .cg-paypal-finance__msg iframe,
.page-product .cg-paypal-finance__msg iframe {
  max-width: 100% !important;
}

.cg-product .cg-paypal-finance__fallback,
.page-product .cg-paypal-finance__fallback {
  display: none;
  color: #5a5366;
  font-size: 0.88rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* If PayPal SDK leaves the message empty, show our one-line fallback */
.cg-product .cg-paypal-finance:not(:has([paypal-messaging-banner] iframe)) .cg-paypal-finance__fallback,
.page-product .cg-paypal-finance:not(:has([paypal-messaging-banner] iframe)) .cg-paypal-finance__fallback {
  display: inline;
}

.cg-product .cg-paypal-finance:not(:has([paypal-messaging-banner] iframe)) .cg-paypal-finance__msg,
.page-product .cg-paypal-finance:not(:has([paypal-messaging-banner] iframe)) .cg-paypal-finance__msg {
  display: none;
}

.cg-product .cg-cofidis__text,
.page-product .cg-cofidis__text {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  color: #5a5366;
  font-size: 0.88rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cg-product .cg-cofidis__text strong,
.page-product .cg-cofidis__text strong {
  color: var(--brand, #654A94);
  font-weight: 750;
}

.cg-product .product-quantity,
.page-product .product-quantity {
  flex-wrap: wrap;
}

.cg-product .product-quantity [installment-container],
.page-product .product-quantity [installment-container],
.cg-product .product-quantity .cg-paypal-finance,
.page-product .product-quantity .cg-paypal-finance {
  flex-basis: 100%;
}

@media (max-width: 991.98px) {
  .cg-product .cg-paypal-finance__row,
  .page-product .cg-paypal-finance__row,
  .cg-product .cg-cofidis__row,
  .page-product .cg-cofidis__row {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .cg-product .cg-paypal-finance__msg,
  .page-product .cg-paypal-finance__msg,
  .cg-product .cg-paypal-finance__fallback,
  .page-product .cg-paypal-finance__fallback,
  .cg-product .cg-cofidis__text,
  .page-product .cg-cofidis__text {
    flex: 1 1 100%;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .cg-product .cg-paypal-finance__msg iframe,
  .page-product .cg-paypal-finance__msg iframe,
  .cg-product .cg-paypal-finance__msg [paypal-messaging-banner],
  .page-product .cg-paypal-finance__msg [paypal-messaging-banner] {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* =========================================================
   Global responsive polish — phones, tablets, all browsers
   ========================================================= */
/* Keep flex children shrinkable, but do NOT kill Bootstrap .container max-widths
   (that stretched category + footer full-bleed on desktop). */
#wrapper,
#content-wrapper,
#main,
.page-content,
.columns-container,
.container {
  min-width: 0;
}
@media (max-width: 575.98px) {
  .container,
  .columns-container {
    max-width: 100%;
  }
}

.page-content img,
.product-miniature img,
.carousel-item img {
  max-width: 100%;
  height: auto;
}

/* ---------- Mobile menu offcanvas (do not override Bootstrap transform) ---------- */
#mobileMenu.ps-mainmenu--mobile.offcanvas {
  z-index: 1080 !important;
  width: min(92vw, 22rem) !important;
  max-width: 100% !important;
  color: var(--ink, #1c1824) !important;
  background: #fff !important;
  border: 0 !important;
  box-shadow: 8px 0 28px rgba(28, 24, 36, 0.18);
}
#mobileMenu.ps-mainmenu--mobile.offcanvas.show,
#mobileMenu.ps-mainmenu--mobile.offcanvas.showing {
  visibility: visible !important;
  transform: none !important;
  translate: none !important;
}
#mobileMenu .offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(28, 24, 36, 0.08);
  background: #fff;
}
/* Visible close — global `button { background: none }` hides Bootstrap .btn-close SVG */
#mobileMenu .cg-menu-close,
#mobileMenu .btn-close {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  margin: 0 0 0 auto;
  padding: 0.35rem 0.65rem !important;
  border: 1px solid rgba(101, 74, 148, 0.22) !important;
  border-radius: 999px !important;
  background: #f7f5fa !important;
  color: var(--brand-deep, #4f376f) !important;
  font-family: "Outfit", "Manrope", sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  opacity: 1 !important;
  box-shadow: none !important;
}
#mobileMenu .cg-menu-close .material-icons {
  font-size: 1.35rem;
  line-height: 1;
}
#mobileMenu .btn-close {
  /* fallback if old markup is cached: draw an X */
  width: 2.75rem;
  height: 2.75rem;
  padding: 0 !important;
  background-image: none !important;
  position: relative;
}
#mobileMenu .btn-close::before,
#mobileMenu .btn-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.1rem;
  height: 2px;
  background: var(--brand-deep, #4f376f);
  border-radius: 2px;
}
#mobileMenu .btn-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#mobileMenu .btn-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#mobileMenu .ps-mainmenu__mobile {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}
#mobileMenu .menu--mobile {
  padding: 0.35rem 0 1rem;
}
#mobileMenu .menu--mobile.menu--child {
  /* Hummingbird nested panels */
  background: #fff;
}
#mobileMenu .menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
#mobileMenu .menu__list > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  border-bottom: 1px solid rgba(28, 24, 36, 0.06);
  margin: 0;
  padding: 0;
}
#mobileMenu .menu__link {
  display: flex !important;
  align-items: center;
  flex: 1 1 auto;
  min-height: 48px;
  padding: 0.75rem 1rem !important;
  color: var(--ink, #1c1824) !important;
  font-family: "Outfit", "Manrope", sans-serif !important;
  font-size: 1rem !important;
  font-weight: 650 !important;
  text-decoration: none !important;
  background: transparent !important;
  white-space: normal;
}
#mobileMenu .menu__link:hover,
#mobileMenu .menu__link:focus {
  color: var(--brand, #654A94) !important;
  background: #f7f5fa !important;
}
#mobileMenu .menu__toggle-child {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: var(--brand, #654A94) !important;
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
}
#mobileMenu .menu__title {
  padding: 0.85rem 1rem;
  font-family: "Outfit", "Manrope", sans-serif;
  font-weight: 750;
  color: var(--brand-deep, #4f376f);
  background: #f7f5fa;
}
#mobileMenu .ps-mainmenu__additionnals {
  border-top: 1px solid rgba(28, 24, 36, 0.08);
  padding: 0.85rem 1rem 1.1rem;
  background: #faf9fc;
}
body .offcanvas-backdrop.show {
  z-index: 1075;
}

/* Offcanvas search — must work on mobile */
#searchCanvas.offcanvas,
#searchCanvas.js-search-offcanvas {
  z-index: 1090 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 90vh !important;
  background: #fff !important;
  color: var(--ink, #1c1824) !important;
  border: 0 !important;
  box-shadow: 0 12px 32px rgba(28, 24, 36, 0.18);
}
#searchCanvas.offcanvas.show,
#searchCanvas.offcanvas.showing {
  visibility: visible !important;
  transform: none !important;
  translate: none !important;
}
#searchCanvas .offcanvas-header {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: #fff;
}
#searchCanvas #_mobile_ps_searchbar,
#searchCanvas .ps-searchbar__container,
#searchCanvas .ps-searchbar,
#searchCanvas #ps_searchbar,
#searchCanvas .ps-searchbar__form {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  flex: 1 1 auto !important;
  visibility: visible !important;
}
#searchCanvas .ps-searchbar__form {
  display: flex !important;
  align-items: center;
  min-height: 48px;
  border-radius: 999px !important;
  background: #f7f5fa !important;
  border: 1px solid #e7e1f0 !important;
  padding: 0.35rem 1rem 0.35rem 2.6rem !important;
  position: relative;
}
#searchCanvas .ps-searchbar__magnifier {
  position: absolute !important;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-soft, #5a5366);
  pointer-events: none;
}
#searchCanvas .ps-searchbar__input {
  display: block !important;
  width: 100% !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 16px !important; /* prevents iOS zoom */
  min-height: 40px;
}
#searchCanvas .ps-searchbar__dropdown {
  position: static !important;
  width: 100% !important;
  max-width: none !important;
  box-shadow: none !important;
  border: 0 !important;
  margin-top: 0.5rem;
}

@media (max-width: 1199.98px) {
  .cg-product__main {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .cg-product__gallery,
  .cg-product__gallery .product__images,
  .cg-product__gallery .product__carousel {
    position: static;
  }
}

@media (max-width: 991.98px) {
  article.cg-product {
    padding: 0.35rem 0.9rem 2.25rem;
  }

  .cg-product__buybox {
    padding: 1.15rem 1rem 1.25rem;
  }

  .cg-product .product__actions-qty-add,
  .cg-product .product-quantity {
    width: 100%;
  }

  .cg-product .product__add-to-cart-button,
  .cg-product .btn-primary.product__add-to-cart-button {
    flex: 1 1 100%;
    width: 100% !important;
    justify-content: center;
  }

  .cg-product .quantity-button,
  .cg-product .product-quantity .quantity-button {
    width: 100%;
  }

  .cg-product-tabs__nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.35rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.25rem;
  }

  .cg-product-tabs__nav [data-cg-tab] {
    flex: 0 0 auto;
    min-height: 44px;
    white-space: nowrap;
  }

  .cg-footer-partners,
  .cg-partner-logos {
    text-align: center;
    justify-content: center;
    justify-items: center;
  }

  .cg-footer-partners {
    margin-left: 0;
    width: 100%;
  }

  body.page-order .checkout-step,
  .page-order .form-control,
  .page-order .form-select,
  .page-cart .form-control,
  .js-address-form .form-control {
    font-size: 16px; /* prevents iOS input zoom */
  }
}

@media (max-width: 767.98px) {
  .hero {
    min-height: 58vh !important;
  }

  .cg-topbar__chip-label {
    display: none;
  }

  .cg-topbar__chip {
    min-height: 44px;
  }

  .cg-product .product-variant__chips {
    grid-template-columns: repeat(auto-fill, minmax(4.75rem, 1fr));
  }

  .page-cart .cart-grid,
  .page-cart .cg-cart__grid {
    gap: 1rem;
  }

  .page-cart .checkout-button,
  .page-cart .btn-primary,
  .cg-cart .btn-primary {
    width: 100%;
    min-height: 48px;
  }
}

@media (max-width: 575.98px) {
  .topbar-inner,
  .header-inner,
  .nav-inner,
  .section,
  .band-inner {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  article.cg-product {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .cg-product__buybox {
    padding: 1rem 0.85rem 1.1rem;
  }

  .cg-header-logo img,
  .cg-header-logo .logo {
    width: min(148px, 42vw);
  }

  .cg-product .product__price,
  .page-product .product__price {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }
}

/* Landscape phones: keep sticky header usable */
@media (max-height: 480px) and (orientation: landscape) {
  .cg-product__gallery,
  .cg-product__gallery .product__images,
  .cg-product__gallery .product__carousel {
    position: static !important;
  }

  .header-bottom {
    position: sticky;
  }
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cg-product .carousel-item.active img,
  .cg-product .product__add-to-cart-button,
  .cg-measure-chip {
    animation: none !important;
    transition: none !important;
  }
}
