/* TQO Shop Page styles copied from supplied HTML. */

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --terra:  #C48479;
      --terra2: #B87068;
      --cream:  #FAF7F2;
      --cream2: #F2EAE0;
      --dark:   #1E1410;
      --dark2:  #3A2B27;
      --grey:   #6B5550;
      --white:  #ffffff;
      --soft:   #E9DDCE;
      --shadow: rgba(30, 20, 16, 0.16);
    }

    html { scroll-behavior: smooth; }

    body {
      background-color: var(--cream);
      color: var(--dark);
      font-family: 'Inter', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
    }

    a { color: inherit; }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 56px;
      background-color: rgba(250, 247, 242, 0.94);
      border-bottom: 1px solid rgba(196, 132, 121, 0.2);
      backdrop-filter: blur(12px);
    }

    .nav-logo {
      font-family: 'Lora', serif;
      font-size: 28px;
      font-style: italic;
      color: var(--dark);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 12px;
      white-space: nowrap;
    }

    .nav-links {
      display: flex;
      gap: 38px;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--dark2);
      text-decoration: none;
      transition: color 0.2s, transform 0.2s;
    }

    .nav-links a:hover { color: var(--terra); }

    .nav-cta {
      background-color: var(--terra) !important;
      color: var(--white) !important;
      padding: 11px 26px !important;
      border-radius: 3px;
    }

    .nav-cta:hover { background-color: var(--terra2) !important; }

    .cart-pill {
      border: 1px solid rgba(196, 132, 121, 0.35);
      padding: 10px 16px !important;
      border-radius: 100px;
      display: inline-flex;
      gap: 8px;
      align-items: center;
    }

    .cart-count {
      min-width: 20px;
      height: 20px;
      border-radius: 99px;
      background: var(--terra);
      color: var(--white);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      letter-spacing: 0;
    }

    .btn-primary,
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-family: 'Inter', sans-serif;
      font-size: 12.5px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 17px 42px;
      border-radius: 3px;
      text-decoration: none;
      transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.25s, box-shadow 0.25s;
      align-self: flex-start;
      border: none;
      cursor: pointer;
    }

    .btn-primary {
      background-color: var(--terra);
      color: var(--white);
      box-shadow: 0 14px 34px rgba(196, 132, 121, 0.20);
    }

    .btn-primary:hover {
      background-color: var(--terra2);
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(184, 112, 104, 0.26);
    }

    .btn-secondary {
      background: transparent;
      color: var(--dark2);
      border: 1px solid rgba(196, 132, 121, 0.35);
    }

    .btn-secondary:hover {
      border-color: var(--terra);
      color: var(--terra2);
      transform: translateY(-2px);
    }

    .eyebrow {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--terra);
      margin-bottom: 24px;
    }

    /* ── SHOP HERO ── */
    .shop-hero {
      padding-top: 88px;
      background-color: var(--cream);
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      min-height: 92vh;
    }

    .shop-hero-content {
      padding: 72px 60px 72px 72px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .shop-hero-title {
      font-family: 'Lora', serif;
      font-size: clamp(38px, 4.4vw, 64px);
      font-weight: 400;
      line-height: 1.12;
      color: var(--dark);
      margin-bottom: 26px;
      max-width: 680px;
    }

    .shop-hero-title em {
      font-style: italic;
      color: var(--terra);
    }

    .shop-hero-body {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 18px;
      line-height: 1.75;
      color: var(--grey);
      margin-bottom: 16px;
      max-width: 520px;
    }

    .shop-hero-plain {
      font-size: 15px;
      line-height: 1.85;
      color: var(--dark2);
      max-width: 520px;
      margin-bottom: 36px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .shop-hero-visual {
      min-height: 500px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 4px;
      perspective: 1300px;
    }

    .feature-panel {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      background: var(--cream2);
      border-top: 2px solid var(--terra);
      min-height: 250px;
    }

    .feature-panel.dark {
      background: radial-gradient(120% 90% at 18% 12%, #34211B 0%, #1E1410 55%, #160E0B 100%);
    }

    .feature-panel.dark::before {
      content: '';
      position: absolute;
      inset: -40%;
      background: radial-gradient(closest-side, rgba(196,132,121,0.16), transparent 70%);
      opacity: 0.9;
      z-index: 0;
      animation: insideGlow 14s ease-in-out infinite alternate;
      pointer-events: none;
    }

    @keyframes insideGlow {
      0%   { transform: translate(-12%, -8%) scale(1); }
      100% { transform: translate(14%, 10%) scale(1.15); }
    }

    .hero-shop-slider {
      grid-row: span 2;
      display: flex;
      flex-direction: column;
      min-height: 520px;
    }

    .slider-head {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 24px 0;
    }

    .slider-eyebrow {
      font-weight: 400;
      font-size: 10px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--terra);
    }

    .slider-count {
      font-weight: 300;
      font-size: 10px;
      letter-spacing: 1px;
      color: rgba(250, 247, 242, 0.45);
      font-variant-numeric: tabular-nums;
    }

    .slider-stage {
      position: relative;
      flex: 1;
      min-height: 0;
      z-index: 2;
      transform-style: preserve-3d;
    }

    .slider-item {
      position: absolute;
      inset: 0;
      padding: 30px 30px 32px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      opacity: 0;
      visibility: hidden;
      transform: rotateY(-32deg) translateZ(-60px) translateX(24px);
      transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0.6s ease;
      pointer-events: none;
    }

    .slider-item.active {
      opacity: 1;
      visibility: visible;
      transform: rotateY(0deg) translateZ(0) translateX(0);
      pointer-events: auto;
    }

    .slider-item .tag {
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(196, 132, 121, 0.9);
      margin-bottom: 12px;
    }

    .slider-item h2 {
      font-family: 'Lora', serif;
      font-style: italic;
      font-weight: 500;
      font-size: clamp(31px, 3vw, 48px);
      line-height: 1.05;
      color: var(--cream);
      margin-bottom: 14px;
      max-width: 360px;
      text-shadow: 0 6px 22px rgba(0,0,0,0.45);
    }

    .slider-item p {
      font-size: 14px;
      line-height: 1.7;
      color: rgba(250, 247, 242, 0.72);
      max-width: 330px;
      margin-bottom: 24px;
    }

    .slider-price {
      color: var(--cream);
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 22px;
      margin-bottom: 20px;
    }

    .slider-dots {
      position: relative;
      z-index: 3;
      display: flex;
      gap: 7px;
      padding: 0 26px 22px;
    }

    .slider-dots button {
      width: 22px;
      height: 3px;
      border: none;
      padding: 0;
      border-radius: 2px;
      background-color: rgba(250, 247, 242, 0.18);
      cursor: pointer;
      overflow: hidden;
      position: relative;
      transition: background-color 0.4s ease;
    }

    .slider-dots button.on { background-color: rgba(196, 132, 121, 0.35); }

    .slider-dots button.on::after {
      content: '';
      position: absolute;
      inset: 0;
      transform-origin: left center;
      transform: scaleX(0);
      background-color: var(--terra);
      animation: dotFill var(--dur, 4200ms) linear forwards;
    }

    @keyframes dotFill {
      from { transform: scaleX(0); }
      to   { transform: scaleX(1); }
    }

    .mini-proof {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 26px;
      background: radial-gradient(130% 100% at 50% 12%, #F2EAE0 0%, #E9DDCE 60%, #E0D2C0 100%);
    }

    .proof-card {
      width: min(80%, 260px);
      min-height: 210px;
      background: var(--white);
      border: 3px solid var(--white);
      box-shadow: 0 16px 34px rgba(30, 20, 16, 0.24);
      padding: 24px;
      transform: rotate(-4deg);
      transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.55s ease;
    }

    .mini-proof:hover .proof-card {
      transform: rotate(2deg) translateY(-8px);
      box-shadow: 0 22px 42px rgba(30, 20, 16, 0.28);
    }

    .proof-card .small-label,
    .delivery-card .small-label {
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--terra2);
      margin-bottom: 18px;
    }

    .proof-card h3 {
      font-family: 'Lora', serif;
      font-size: 27px;
      font-weight: 400;
      line-height: 1.18;
      margin-bottom: 14px;
    }

    .proof-card p {
      color: var(--grey);
      line-height: 1.7;
      font-size: 13.5px;
    }

    .delivery-card {
      padding: 28px;
      background: #D4A898;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .delivery-card h3 {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 30px;
      line-height: 1.12;
      font-weight: 400;
      margin-bottom: 12px;
    }

    .delivery-card p {
      color: rgba(30, 20, 16, 0.72);
      line-height: 1.65;
      font-size: 14px;
    }

    .floating-dot {
      position: absolute;
      border-radius: 99px;
      background: rgba(250, 247, 242, 0.30);
      animation: floaty 6s ease-in-out infinite;
      pointer-events: none;
    }

    .floating-dot.one { width: 58px; height: 58px; top: 22%; right: 12%; }
    .floating-dot.two { width: 22px; height: 22px; top: 14%; left: 18%; animation-delay: 1.4s; }
    .floating-dot.three { width: 34px; height: 34px; bottom: 12%; right: 26%; animation-delay: 2.3s; }

    @keyframes floaty {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-14px); }
    }

    /* ── STRIP ── */
    .strip {
      background-color: var(--terra);
      padding: 18px 0;
      overflow: hidden;
    }

    .strip-track {
      display: flex;
      gap: 52px;
      animation: slide 24s linear infinite;
      white-space: nowrap;
    }

    .strip-track span {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 15.5px;
      color: rgba(255,255,255,0.9);
      flex-shrink: 0;
    }

    .strip-dot {
      font-style: normal !important;
      color: rgba(255,255,255,0.35) !important;
    }

    @keyframes slide {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ── MAIN SHOP ── */
    .shop-section {
      background: var(--cream2);
      padding: 100px 80px;
    }

    .shop-inner {
      max-width: 1180px;
      margin: 0 auto;
    }

    .section-head {
      display: grid;
      grid-template-columns: 1fr 0.9fr;
      gap: 60px;
      align-items: end;
      margin-bottom: 44px;
    }

    .section-title {
      font-family: 'Lora', serif;
      font-size: clamp(32px, 3.8vw, 52px);
      font-weight: 400;
      line-height: 1.18;
      color: var(--dark);
    }

    .section-title em {
      font-style: italic;
      color: var(--terra);
    }

    .section-copy {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 17px;
      line-height: 1.75;
      color: var(--grey);
      max-width: 470px;
    }

    .filter-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 36px;
    }

    .filter-btn {
      background: rgba(255, 255, 255, 0.58);
      border: 1px solid rgba(196, 132, 121, 0.24);
      color: var(--dark2);
      cursor: pointer;
      border-radius: 99px;
      padding: 12px 18px;
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      transition: background-color 0.22s, color 0.22s, border-color 0.22s, transform 0.22s;
    }

    .filter-btn:hover,
    .filter-btn.active {
      background: var(--dark);
      color: var(--cream);
      border-color: var(--dark);
      transform: translateY(-2px);
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 4px;
    }

    .product-card {
      background: var(--white);
      min-height: 570px;
      border-top: 3px solid var(--terra);
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
      transform: translateY(18px);
      opacity: 0;
      transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.35s ease;
    }

    .product-card.revealed { opacity: 1; transform: translateY(0); }

    .product-card:hover {
      z-index: 3;
      box-shadow: 0 20px 50px rgba(30, 20, 16, 0.14);
    }

    .product-media {
      min-height: 250px;
      padding: 34px 30px;
      background: radial-gradient(130% 100% at 50% 12%, #F7F1EA 0%, #E9DDCE 65%, #E0D2C0 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .product-media::before,
    .product-media::after {
      content: '';
      position: absolute;
      border-radius: 99px;
      background: rgba(196, 132, 121, 0.12);
      transition: transform 0.6s ease;
    }

    .product-media::before { width: 160px; height: 160px; top: -48px; right: -42px; }
    .product-media::after  { width: 90px; height: 90px; bottom: 18px; left: 18px; }

    .product-card:hover .product-media::before { transform: translate(-20px, 18px) scale(1.08); }
    .product-card:hover .product-media::after  { transform: translate(18px, -14px) scale(1.12); }

    .product-art {
      position: relative;
      width: min(72%, 190px);
      aspect-ratio: 3 / 4;
      background: linear-gradient(145deg, #FFF 0%, #F7F1EA 100%);
      border: 6px solid #fff;
      box-shadow: 0 18px 34px rgba(30, 20, 16, 0.22);
      transform: rotate(-3deg) translateY(0);
      transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.55s ease;
      z-index: 2;
      padding: 22px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .product-card:hover .product-art {
      transform: rotate(2deg) translateY(-8px) scale(1.03);
      box-shadow: 0 24px 42px rgba(30, 20, 16, 0.26);
    }

    .product-art .art-kicker {
      font-size: 8.5px;
      letter-spacing: 0.20em;
      color: var(--terra2);
      text-transform: uppercase;
    }

    .product-art .art-title {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 25px;
      line-height: 1.08;
      color: var(--dark);
      margin-top: 18px;
    }

    .product-art .art-lines {
      display: grid;
      gap: 7px;
      margin-top: 22px;
    }

    .product-art .art-lines span {
      height: 5px;
      background: rgba(196, 132, 121, 0.20);
      border-radius: 99px;
    }

    .product-art .art-lines span:nth-child(2) { width: 78%; }
    .product-art .art-lines span:nth-child(3) { width: 62%; }

    .product-body {
      padding: 34px 30px 32px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .product-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
    }

    .product-type {
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--terra);
      font-weight: 400;
    }

    .product-price {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 18px;
      color: var(--dark);
      white-space: nowrap;
    }

    .product-title {
      font-family: 'Lora', serif;
      font-size: 26px;
      font-weight: 400;
      line-height: 1.18;
      color: var(--dark);
      margin-bottom: 14px;
    }

    .product-text {
      font-size: 14px;
      line-height: 1.82;
      color: var(--grey);
      margin-bottom: 24px;
      flex: 1;
    }

    .product-bullets {
      display: grid;
      gap: 8px;
      margin-bottom: 26px;
      list-style: none;
    }

    .product-bullets li {
      color: var(--dark2);
      font-size: 13px;
      line-height: 1.5;
      padding-left: 20px;
      position: relative;
    }

    .product-bullets li::before {
      content: '✦';
      position: absolute;
      left: 0;
      top: 0;
      color: var(--terra);
      font-size: 11px;
    }

    .product-actions {
      display: flex;
      gap: 10px;
      align-items: center;
      flex-wrap: wrap;
    }

    .product-actions .btn-primary,
    .product-actions .btn-secondary {
      padding: 13px 18px;
      font-size: 10.8px;
      flex: 1;
      min-width: 132px;
    }

    .soon-badge {
      position: absolute;
      top: 18px;
      right: 18px;
      z-index: 4;
      background: var(--dark);
      color: var(--cream);
      border-radius: 100px;
      padding: 9px 12px;
      font-size: 9px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    /* ── FEATURED BUNDLE ── */
    .bundle-section {
      background: var(--cream);
      padding: 100px 80px;
    }

    .bundle-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 4px;
      align-items: stretch;
      background: var(--cream2);
    }

    .bundle-copy {
      padding: 60px;
      background: var(--dark);
      color: var(--cream);
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    .bundle-copy::before {
      content: '';
      position: absolute;
      width: 320px;
      height: 320px;
      border-radius: 99em;
      background: rgba(196, 132, 121, 0.14);
      top: -90px;
      right: -110px;
      animation: insideGlow 11s ease-in-out infinite alternate;
      z-index: -1;
    }

    .bundle-copy .eyebrow { margin-bottom: 20px; }

    .bundle-copy h2 {
      font-family: 'Lora', serif;
      font-weight: 400;
      font-size: clamp(30px, 3.5vw, 50px);
      line-height: 1.17;
      margin-bottom: 20px;
    }

    .bundle-copy h2 em { color: var(--terra); font-style: italic; }

    .bundle-copy p {
      font-family: 'Lora', serif;
      font-style: italic;
      color: rgba(250, 247, 242, 0.62);
      line-height: 1.75;
      font-size: 17px;
      margin-bottom: 28px;
      max-width: 450px;
    }

    .bundle-list {
      list-style: none;
      display: grid;
      gap: 14px;
      margin-bottom: 34px;
    }

    .bundle-list li {
      color: rgba(250, 247, 242, 0.80);
      font-size: 14px;
      line-height: 1.6;
      padding-left: 28px;
      position: relative;
    }

    .bundle-list li::before {
      content: '';
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--terra);
      position: absolute;
      left: 0;
      top: 8px;
      box-shadow: 0 0 0 8px rgba(196, 132, 121, 0.12);
    }

    .bundle-visual {
      min-height: 540px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      background: radial-gradient(130% 100% at 50% 12%, #F2EAE0 0%, #E9DDCE 60%, #E0D2C0 100%);
      perspective: 1300px;
    }

    .bundle-fan {
      position: relative;
      width: min(55%, 300px);
      aspect-ratio: 3 / 4;
      transform-style: preserve-3d;
    }

    .bundle-page {
      position: absolute;
      inset: 0;
      background: linear-gradient(145deg, #fff 0%, #F7F1EA 100%);
      border: 5px solid #fff;
      border-radius: 4px;
      box-shadow: 0 14px 32px rgba(30, 20, 16, 0.22);
      padding: 26px;
      transform-origin: bottom center;
      transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.65s ease;
    }

    .bundle-page:nth-child(1) { transform: rotate(-15deg) translateX(-27%) translateY(6%); z-index: 1; }
    .bundle-page:nth-child(2) { transform: rotate(-5deg) translateX(-9%) translateY(0%); z-index: 2; }
    .bundle-page:nth-child(3) { transform: rotate(6deg) translateX(10%) translateY(1%); z-index: 3; }
    .bundle-page:nth-child(4) { transform: rotate(16deg) translateX(27%) translateY(6%); z-index: 4; }

    .bundle-visual:hover .bundle-page:nth-child(1) { transform: rotate(-24deg) translateX(-43%) translateY(9%); }
    .bundle-visual:hover .bundle-page:nth-child(2) { transform: rotate(-9deg) translateX(-15%) translateY(-2%); }
    .bundle-visual:hover .bundle-page:nth-child(3) { transform: rotate(9deg) translateX(15%) translateY(-2%); }
    .bundle-visual:hover .bundle-page:nth-child(4) { transform: rotate(24deg) translateX(43%) translateY(9%); }

    .bundle-page small {
      display: block;
      font-size: 9px;
      letter-spacing: 0.20em;
      text-transform: uppercase;
      color: var(--terra2);
      margin-bottom: 22px;
    }

    .bundle-page strong {
      display: block;
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 28px;
      line-height: 1.1;
      color: var(--dark);
      margin-bottom: 22px;
    }

    .bundle-page span {
      display: block;
      height: 7px;
      background: rgba(196, 132, 121, 0.18);
      border-radius: 99px;
      margin-bottom: 9px;
    }

    .bundle-page span:nth-of-type(2) { width: 74%; }
    .bundle-page span:nth-of-type(3) { width: 56%; }

    /* ── TESTIMONIAL / QUOTE ── */
    .quote {
      background-color: var(--cream);
      padding: 90px 80px;
      text-align: center;
    }

    .quote-mark {
      font-family: 'Lora', serif;
      font-size: 110px;
      color: rgba(196,132,121,0.2);
      line-height: 0.7;
      display: block;
      margin-bottom: 32px;
    }

    .quote-text {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: clamp(22px, 2.8vw, 36px);
      line-height: 1.55;
      color: var(--dark);
      max-width: 760px;
      margin: 0 auto 24px;
      font-weight: 400;
    }

    .quote-attr {
      font-size: 11.5px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--terra);
    }

    /* ── FAQ ── */
    .faq-section {
      background: var(--cream2);
      padding: 100px 80px;
    }

    .faq-inner {
      max-width: 980px;
      margin: 0 auto;
    }

    .faq-head { text-align: center; margin-bottom: 46px; }

    .faq-item {
      background: var(--white);
      border-top: 2px solid rgba(196, 132, 121, 0.7);
      margin-bottom: 4px;
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      background: transparent;
      border: 0;
      padding: 25px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      cursor: pointer;
      text-align: left;
      color: var(--dark);
      font-family: 'Lora', serif;
      font-size: 22px;
      font-weight: 400;
    }

    .faq-question span:last-child {
      color: var(--terra);
      font-family: 'Inter', sans-serif;
      transition: transform 0.25s;
    }

    .faq-item.open .faq-question span:last-child { transform: rotate(45deg); }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }

    .faq-answer p {
      padding: 0 28px 26px;
      font-size: 14px;
      line-height: 1.85;
      color: var(--grey);
      max-width: 780px;
    }

    /* ── WAITLIST ── */
    .waitlist {
      background-color: #2A1C18;
      padding: 90px 80px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .waitlist h2 {
      font-family: 'Lora', serif;
      font-size: clamp(28px, 3.2vw, 44px);
      font-weight: 400;
      color: var(--cream);
      line-height: 1.25;
      margin-bottom: 18px;
    }

    .waitlist h2 em {
      font-style: italic;
      color: var(--terra);
    }

    .waitlist-body {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 17px;
      color: rgba(250,247,242,0.6);
      line-height: 1.75;
    }

    .waitlist-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .waitlist-form input {
      background-color: rgba(250,247,242,0.08);
      border: 1px solid rgba(250,247,242,0.2);
      border-radius: 3px;
      padding: 16px 20px;
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 16px;
      color: var(--cream);
      outline: none;
      transition: border-color 0.2s;
    }

    .waitlist-form input::placeholder { color: rgba(250,247,242,0.38); }
    .waitlist-form input:focus { border-color: var(--terra); }

    .waitlist-form button {
      margin-top: 4px;
      background-color: var(--terra);
      color: var(--white);
      font-size: 12.5px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 17px;
      border: none;
      border-radius: 3px;
      cursor: pointer;
      transition: background-color 0.2s;
    }

    .waitlist-form button:hover { background-color: var(--terra2); }

    .waitlist-note {
      font-size: 12px;
      color: rgba(250,247,242,0.3);
      text-align: center;
    }

    /* ── FOOTER ── */
    footer {
      background-color: var(--dark);
      padding: 52px 80px 36px;
    }

    .footer-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(250,247,242,0.08);
      margin-bottom: 28px;
    }

    .footer-brand-name {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 20px;
      color: var(--cream);
      margin-bottom: 10px;
    }

    .footer-brand-tag {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 13px;
      color: rgba(250,247,242,0.35);
    }

    .footer-cols {
      display: flex;
      gap: 56px;
      flex-wrap: wrap;
    }

    .footer-col h4 {
      font-size: 10.5px;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--terra);
      margin-bottom: 16px;
    }

    .footer-col a {
      display: block;
      font-size: 13.5px;
      font-weight: 300;
      color: rgba(250,247,242,0.42);
      text-decoration: none;
      margin-bottom: 10px;
      transition: color 0.2s;
    }

    .footer-col a:hover { color: var(--cream); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom p,
    .footer-bottom a {
      font-size: 12px;
      font-weight: 300;
      color: rgba(250,247,242,0.22);
      text-decoration: none;
    }

    .footer-bottom a:hover { color: rgba(250,247,242,0.6); }

    /* ── CART DRAWER ── */
    .cart-drawer {
      position: fixed;
      right: 0;
      top: 0;
      width: min(420px, 92vw);
      height: 100vh;
      background: var(--cream);
      z-index: 160;
      box-shadow: -22px 0 60px rgba(30, 20, 16, 0.18);
      transform: translateX(105%);
      transition: transform 0.38s cubic-bezier(0.22, 0.61, 0.36, 1);
      display: flex;
      flex-direction: column;
    }

    .cart-drawer.open { transform: translateX(0); }

    .cart-top {
      padding: 28px;
      border-bottom: 1px solid rgba(196, 132, 121, 0.18);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .cart-top h3 {
      font-family: 'Lora', serif;
      font-size: 26px;
      font-weight: 400;
    }

    .cart-close {
      border: 0;
      background: var(--dark);
      color: var(--cream);
      width: 38px;
      height: 38px;
      border-radius: 99px;
      cursor: pointer;
      font-size: 20px;
      line-height: 1;
    }

    .cart-items {
      padding: 24px 28px;
      overflow-y: auto;
      flex: 1;
    }

    .cart-empty {
      font-family: 'Lora', serif;
      font-style: italic;
      color: var(--grey);
      line-height: 1.7;
      padding-top: 30px;
    }

    .cart-line {
      display: grid;
      grid-template-columns: 62px 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 15px 0;
      border-bottom: 1px solid rgba(196, 132, 121, 0.16);
    }

    .cart-thumb {
      height: 76px;
      background: var(--cream2);
      border: 3px solid #fff;
      box-shadow: 0 9px 22px rgba(30, 20, 16, 0.10);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Lora', serif;
      font-style: italic;
      color: var(--terra);
    }

    .cart-line h4 {
      font-family: 'Lora', serif;
      font-size: 17px;
      font-weight: 400;
      margin-bottom: 6px;
    }

    .cart-line p {
      font-size: 12px;
      color: var(--grey);
    }

    .cart-line button {
      border: 0;
      background: transparent;
      color: var(--terra2);
      cursor: pointer;
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .cart-bottom {
      padding: 24px 28px 28px;
      border-top: 1px solid rgba(196, 132, 121, 0.18);
    }

    .subtotal {
      display: flex;
      justify-content: space-between;
      font-family: 'Lora', serif;
      font-size: 22px;
      margin-bottom: 18px;
    }

    .cart-bottom .btn-primary { width: 100%; }

    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(30, 20, 16, 0.28);
      z-index: 150;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
    }

    .overlay.show { opacity: 1; visibility: visible; }

    .toast {
      position: fixed;
      left: 50%;
      bottom: 28px;
      transform: translate(-50%, 18px);
      background: var(--dark);
      color: var(--cream);
      z-index: 190;
      padding: 14px 18px;
      border-radius: 3px;
      box-shadow: 0 14px 34px rgba(30, 20, 16, 0.24);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
      font-size: 13px;
    }

    .toast.show {
      opacity: 1;
      visibility: visible;
      transform: translate(-50%, 0);
    }

    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1020px) {
      nav { padding: 18px 24px; }
      .nav-links { gap: 22px; }
      .products-grid { grid-template-columns: repeat(2, 1fr); }
      .shop-hero { grid-template-columns: 1fr; }
      .shop-hero-content { padding: 66px 48px 52px; }
      .shop-hero-visual { min-height: auto; grid-template-columns: 1fr 1fr; }
      .hero-shop-slider { min-height: 430px; }
      .bundle-inner { grid-template-columns: 1fr; }
    }

    @media (max-width: 860px) {
      nav { padding: 18px 24px; }
      .nav-links { display: none; }
      .nav-logo { font-size: 22px; }
      .nav-logo img { height: 38px; }

      .shop-hero { min-height: auto; }
      .shop-hero-content { padding: 60px 28px 48px; }
      .shop-hero-visual { grid-template-columns: 1fr; grid-template-rows: auto; gap: 3px; }
      .feature-panel { min-height: 260px; }
      .hero-shop-slider { min-height: 420px; }

      .shop-section,
      .bundle-section,
      .faq-section,
      .quote { padding: 72px 28px; }

      .section-head { grid-template-columns: 1fr; gap: 28px; align-items: start; }
      .products-grid { grid-template-columns: 1fr; gap: 4px; }
      .product-card { min-height: auto; }
      .bundle-copy { padding: 46px 30px; }
      .bundle-visual { min-height: 420px; }
      .bundle-fan { width: min(58%, 220px); }

      .waitlist {
        grid-template-columns: 1fr;
        padding: 72px 28px;
        gap: 48px;
      }

      footer { padding: 48px 24px 28px; }
      .footer-row { flex-direction: column; }
      .footer-cols { gap: 36px; }
    }

    @media (max-width: 560px) {
      .hero-actions .btn-primary,
      .hero-actions .btn-secondary { width: 100%; }
      .shop-hero-title { font-size: 38px; }
      .slider-item h2 { font-size: 34px; }
      .product-actions .btn-primary,
      .product-actions .btn-secondary { min-width: 100%; }
      .filter-btn { width: 100%; justify-content: center; }
      .faq-question { font-size: 19px; padding: 22px; }
      .faq-answer p { padding: 0 22px 24px; }
      .cart-drawer { width: 100vw; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
      }
      .slider-item { transform: none; }
      .slider-item.active { transform: none; }
    }
  