/* ============================================================
       RESET & ROOT
    ============================================================ */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --bg:         #faf8f5;
      --bg2:        #f2ede6;
      --card:       #ffffff;
      --text:       #1a1612;
      --muted:      #7a6f65;
      --accent:     #c8521a;
      --accent2:    #e8855a;
      --border:     rgba(0, 0, 0, 0.09);
      --shadow:     0 2px 24px rgba(0, 0, 0, 0.07);
      --tag-shopee: #f05a28;
      --tag-amazon: #ff9900;
      --tag-shein:  #000000;
    }

    [data-theme="dark"] {
      --bg:      #130f0b;
      --bg2:     #1d1710;
      --card:    #1f1a14;
      --text:    #f0ebe3;
      --muted:   #9a8e82;
      --accent:  #e06b30;
      --accent2: #f09060;
      --border:  rgba(255, 255, 255, 0.07);
      --shadow:  0 2px 24px rgba(0, 0, 0, 0.4);
    }

    /* ============================================================
       BASE
    ============================================================ */
    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    * {
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    *::-webkit-scrollbar {
      display: none;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      font-weight: 400;
      line-height: 1.7;
      min-height: 100vh;
      transition: background 0.35s, color 0.35s;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    body.nav-open {
      overflow: hidden;
      position: fixed;
      width: 100%;
    }

    a, button {
      -webkit-tap-highlight-color: transparent;
    }

    /* ============================================================
       HEADER
    ============================================================ */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 200;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 40px;
      background: var(--card);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(8px);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0;
      font-family: 'DM Serif Display', serif;
      font-size: 1.5rem;
      font-weight: bold;
      color: var(--accent);
      letter-spacing: -0.01em;
      text-decoration: none;
    }

    .logo span {
      color: var(--text);
    }

    .logo-img {
      width: 40px;
      height: 40px;
      object-fit: contain;
    }

    .theme-btn {
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      background: transparent;
      border: none;
      border-radius: 50%;
      color: var(--muted);
      font-size: 1.15rem;
      cursor: pointer;
      transition: color 0.2s, transform 0.18s;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .saved-nav-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      height: 36px;
      padding: 0 14px;
      border-radius: 999px;
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      color: var(--muted);
      background: transparent;
      border: none;
      transition: color 0.2s ease, transform 0.18s ease;
      white-space: nowrap;
    }

    .saved-nav-btn:hover {
      color: var(--accent);
      transform: translateY(-1px);
    }

    .saved-nav-btn:active {
      transform: translateY(0);
    }

    .saved-nav-btn:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    .theme-btn:hover {
      color: var(--accent);
      transform: scale(1.15);
    }

    /* ============================================================
       PLATFORM NAV
    ============================================================ */
    .header-platform-nav {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .platform-nav-link {
      display: inline-flex;
      align-items: center;
      gap: 0;
      padding: 6px 14px;
      border-radius: 999px;
      text-decoration: none;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: var(--muted);
      background: transparent;
      border: 1px solid transparent;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
    }

    .platform-nav-link:hover {
      color: var(--accent);
      border-color: var(--border);
      background: var(--bg2);
    }

    .platform-dot {
      display: none;
    }

    /* ============================================================
       HERO
    ============================================================ */
    .hero {
      position: relative;
      overflow: hidden;
      background: var(--bg2);
      border-bottom: 1px solid var(--border);
      margin-top: 64px;
    }

    @media (max-width: 600px) {
      .hero {
        margin-top: 58px;
      }
    }

    .hero-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 32px 40px 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 20px;
    }

    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 1.5px;
      background: var(--accent);
      border-radius: 2px;
    }

    .hero h1 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(2.4rem, 4.5vw, 3.8rem);
      font-weight: 400;
      line-height: 1.08;
      color: var(--text);
      margin-bottom: 20px;
      letter-spacing: -0.02em;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--accent);
    }

    .hero-sub {
      font-size: 1rem;
      color: var(--muted);
      font-weight: 300;
      line-height: 1.75;
      max-width: 420px;
      margin-bottom: 32px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }

    .hero-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--accent);
      color: #fff;
      padding: 13px 28px;
      border-radius: 6px;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
    }

    .hero-btn-primary:hover {
      background: var(--accent2);
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(200, 82, 26, 0.28);
    }

    .hero-btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: transparent;
      color: var(--text);
      padding: 13px 24px;
      border-radius: 6px;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1.5px solid var(--border);
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }

    .hero-btn-secondary:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: var(--bg);
    }

    .hero-platforms {
      display: flex;
      align-items: center;
      gap: 16px;
      padding-top: 28px;
      border-top: 1px solid var(--border);
    }

    .hero-platforms-label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .hero-platform-badges {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hero-platform-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 5px 12px;
      border-radius: 999px;
      border: 1px solid var(--border);
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--muted);
      background: var(--card);
      letter-spacing: 0.04em;
    }

    .hero-visual-side {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .hero-visual-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .hero-mini-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform 0.22s, box-shadow 0.22s;
    }

    .hero-mini-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    }

    .hero-mini-card-img {
      width: 100%;
      aspect-ratio: 1;
      background: var(--bg2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: var(--muted);
      font-family: 'DM Serif Display', serif;
      overflow: hidden;
    }

    .hero-mini-card-body {
      padding: 10px 12px 12px;
    }

    .hero-mini-card-tag {
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 4px;
    }

    .hero-mini-card-title {
      font-family: 'DM Serif Display', serif;
      font-size: 0.82rem;
      line-height: 1.3;
      color: var(--text);
    }

    .hero-mini-card-logo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hero-stat-bar {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
    }

    .hero-stat {
      background: var(--card);
      padding: 16px 18px;
      text-align: center;
    }

    .hero-stat-number {
      font-family: 'DM Serif Display', serif;
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--text);
      display: block;
      line-height: 1;
      margin-bottom: 4px;
    }

    .hero-stat-label {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* ============================================================
       DISCLOSURE
    ============================================================ */
    .disclosure {
      padding: 11px 40px;
      background: var(--bg2);
      border-bottom: 1px solid var(--border);
      font-size: 0.72rem;
      color: var(--muted);
      text-align: center;
      letter-spacing: 0.01em;
    }

    .disclosure strong {
      color: var(--accent);
    }

    /* ============================================================
       MAIN LAYOUT
    ============================================================ */
    main {
      max-width: 1600px;
      margin: 0 auto;
      padding: 32px 16px 16px;
    }

    /* ============================================================
       SHOP SECTION
    ============================================================ */
    .shop-section {
      margin-bottom: 16px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    /* Section Header */
    .section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 28px;
      border-bottom: 1px solid var(--border);
    }

    .section-header-left {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .shop-badge {
      padding: 4px 12px;
      border-radius: 4px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #fff;
    }

    .badge-shopee { background: #f05a28; }
    .badge-amazon { background: #ff9900; }
    .badge-shein  { background: #1a1a1a; }

    .section-title {
      font-family: 'DM Serif Display', serif;
      font-size: 1.25rem;
      color: var(--text);
    }

    .cards-wrap {
      padding: 24px;
    }

    /* Section subheading */
    .section-subheading {
      font-family: 'DM Serif Display', serif;
      font-size: 1.1rem;
      color: var(--text);
      margin-bottom: 18px;
    }

    /* ============================================================
       SLIDER
    ============================================================ */
    .slider-wrapper {
      margin: 0 28px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      overflow: visible;
    }

    .slider-row {
      position: relative;
      overflow: visible;
    }

    .slider-viewport {
      overflow: hidden;
      width: 100%;
    }

    .slider-grid {
      display: inline-grid !important;
      grid-template-rows: 1fr;
      grid-auto-flow: column;
      grid-auto-columns: calc((100vw - 130px) / 5.6);
      grid-auto-rows: 1fr;
      gap: 14px;
      width: max-content;
      max-width: max-content;
      align-items: stretch;
      padding: 4px 2px;
      transform: translateX(0);
      transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
      -webkit-overflow-scrolling: touch;
    }

    .slider-btn {
      position: absolute;
      top: 45%;
      transform: translateY(-50%);
      z-index: 10;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(10px);
      color: var(--text);
      font-size: 1.1rem;
      line-height: 1;
      cursor: pointer;
      opacity: 0;
      pointer-events: none;
      transition: background 0.25s, color 0.25s, border-color 0.25s, opacity 0.25s;
    }

    [data-theme="dark"] .slider-btn {
      background: rgba(0, 0, 0, 0.35);
    }

    .slider-btn.visible {
      opacity: 1;
      pointer-events: all;
    }

    .slider-btn:hover {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
    }

    .slider-btn-left  { left:  -22px; }
    .slider-btn-right { right: -22px; }

    /* ============================================================
       PRODUCT CARD
    ============================================================ */
    .card {
      display: flex;
      flex-direction: column;
      height: 100%;
      align-self: stretch;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      text-decoration: none;
      color: var(--text);
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
      border-color: var(--accent);
    }

    /* Slider: all cards same height per row */
    .slider-grid .card {
      height: 100%;
      align-self: stretch;
    }

    /* Category grid: all cards same height per row */
    .category-cards .card {
      height: 100%;
      align-self: stretch;
    }

    .card-img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      display: block;
      background: var(--bg2);
    }

    .card-img.pin-portrait {
        aspect-ratio: 1 / 1;
        object-position: center top;
    }
    
    .card-body {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: 14px 14px 16px;
    }

    .card h3 {
      font-family: 'DM Serif Display', serif;
      font-size: 0.97rem;
      font-weight: 400;
      line-height: 1.35;
      color: var(--text);
      min-height: unset;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .card-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: auto;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent);
    }

    .card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: auto;
    }

    .save-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border: none;
      background: transparent;
      cursor: pointer;
      border-radius: 999px;
      color: inherit;
      opacity: 0.55;
      transition:
        opacity 0.2s ease,
        transform 0.18s ease,
        background-color 0.2s ease;
      flex-shrink: 0;
      -webkit-tap-highlight-color: transparent;
    }

    .save-btn:hover {
      opacity: 1;
      transform: scale(1.06);
    }

    .save-btn:active {
      transform: scale(0.94);
    }

    .save-btn:focus-visible {
      outline: 2px solid currentColor;
      outline-offset: 2px;
    }

    .save-btn.saved {
      opacity: 1;
    }

    .save-btn svg {
      width: 19px;
      height: 19px;
      pointer-events: none;
    }

    .save-btn.saved svg {
      fill: currentColor;
    }

    .card:hover .card-cta {
      gap: 10px;
    }

    /* ============================================================
       CATEGORY FILTER
    ============================================================ */
    .category-tags {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid var(--border);
    }

    .cat-tag {
      padding: 11px 26px;
      background: var(--card);
      border: 1.5px solid var(--accent);
      border-radius: 999px;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      color: var(--accent);
      cursor: pointer;
      user-select: none;
      transition: border-color 0.2s, color 0.2s, background 0.2s,
                  box-shadow 0.2s, transform 0.15s;
    }

    .cat-tag:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    .cat-tag.active {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
    }

    /* Category Panel (animated container) */
    .category-panel {
      max-height: 0;
      overflow: hidden;
      transition:
        max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        margin-top 0.35s ease;
    }

    .category-panel.open {
      max-height: 4000px;
    }

    /* Category Grid */
    .category-cards {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 18px;
      height: 0;
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      margin-top: 0;
      transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .category-cards.active {
      height: auto;
      opacity: 1;
      visibility: visible;
      margin-top: 20px;
    }

    /* ============================================================
       CATEGORY SECTION LABEL
    ============================================================ */
    .category-section {
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid var(--border);
    }

    .category-label {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 14px;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      cursor: pointer;
      user-select: none;
    }
    
    .cat-chevron {
      margin-left: auto;
      font-size: 0.9rem;
      line-height: 1;
      color: var(--muted);
      transition: transform 0.3s ease;
    }
    
    .category-section.cat-open .cat-chevron {
      transform: rotate(180deg);
    }

    .category-label svg {
      flex-shrink: 0;
      transition: transform 0.2s ease;
    }

    .category-tags {
      margin-top: 0;
      padding-top: 0;
      border-top: none;
    }

    .cat-tag {
      box-shadow: 0 2px 8px rgba(200, 82, 26, 0.12);
      cursor: pointer;
    }
    .cat-tag:hover {
      background: var(--accent);
      color: #fff;
      border-color: var(--accent);
      box-shadow: 0 4px 16px rgba(200, 82, 26, 0.28);
      transform: translateY(-2px);
    }
    .cat-tag:active {
      transform: translateY(0px) scale(0.97);
      box-shadow: 0 1px 4px rgba(200, 82, 26, 0.2);
    }
    .cat-tag.active {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
      box-shadow: 0 4px 18px rgba(200, 82, 26, 0.32);
      transform: translateY(-1px);
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      background: var(--card);
      border-top: 1px solid var(--border);
      font-size: 0.75rem;
      color: var(--muted);
      line-height: 1.8;
    }
    
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 56px 40px 40px;
    }
    
    /* Brand Block */
    .footer-brand {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      margin-bottom: 10px;
      text-align: center;
    }
    
    .footer-brand-logo {
      width: 32px;
      height: 32px;
      object-fit: contain;
      opacity: 0.9;
    }
    
    .footer-brand-name {
      font-family: 'DM Serif Display', serif;
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--text);
      letter-spacing: -0.01em;
    }
    
    .footer-brand-name strong {
      color: var(--accent);
    }
    
    .footer-brand-tagline {
      font-size: 0.75rem;
      color: var(--muted);
      font-weight: 300;
      max-width: 320px;
    }
    
    /* Full-width divider */
    .footer-rule {
      border: none;
      border-top: 1px solid var(--border);
      margin: 36px 0;
    }
    
    /* Nav grid */
    .footer-nav {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      text-align: left;
      margin-bottom: 40px;
    }
    
    .footer-col-title {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 14px;
    }
    
    .footer-col a {
      display: block;
      font-size: 0.78rem;
      color: var(--muted);
      text-decoration: none;
      padding: 3px 0;
      transition: color 0.2s, transform 0.15s;
    }
    
    .footer-col a:hover {
      color: var(--accent);
      transform: translateX(3px);
    }
    
    /* Marketplace buttons */
    .footer-shop-label {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 14px;
      text-align: center;
    }
    
    .footer-platforms {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 36px;
    }
    
    .footer-platform-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 20px;
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 999px;
      text-decoration: none;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: 0.03em;
      transition: border-color 0.2s, color 0.2s, background 0.2s,
                  transform 0.15s, box-shadow 0.2s;
    }
    
    .footer-platform-link:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: var(--card);
      box-shadow: 0 3px 12px rgba(200, 82, 26, 0.18);
      transform: translateY(-2px);
    }
    
    .footer-platform-link:active {
      transform: translateY(0) scale(0.97);
    }
    
    .footer-platform-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    
    .dot-shopee { background: #f05a28; }
    .dot-amazon { background: #ff9900; }
    .dot-shein  { background: #1a1a1a; }
    
    [data-theme="dark"] .dot-shein { background: #c8c8c8; }
    
    /* Bottom bar */
    .footer-bottom {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 24px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
      font-size: 0.72rem;
      color: var(--muted);
    }
    
    .footer-bottom a {
      font-weight: 600;
      color: var(--accent);
      text-decoration: none;
      transition: opacity 0.2s;
    }
    
    .footer-bottom a:hover {
      opacity: 0.75;
    }
    
    /* Disclosure */
    .footer-disclosure {
      text-align: center;
      font-size: 0.7rem;
      color: var(--muted);
      opacity: 0.75;
      max-width: 640px;
      margin: 0 auto 28px;
      line-height: 1.7;
    }
    
    .footer-disclosure strong {
      color: var(--accent);
      opacity: 1;
    }
    
    /* ============================================================
       FOOTER REDESIGN STYLES
    ============================================================ */
    .footer-top-grid {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 48px;
      margin-bottom: 0;
    }

    .footer-brand-block {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-brand-logo {
      width: 32px;
      height: 32px;
      object-fit: contain;
    }

    .footer-brand-name {
      font-family: 'DM Serif Display', serif;
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--text);
    }

    .footer-brand-name strong {
      color: var(--accent);
    }

    .footer-brand-tagline {
      font-size: 0.8rem;
      color: var(--muted);
      font-weight: 300;
      line-height: 1.65;
      max-width: 240px;
    }

    /* Pinterest Analytics Card */
    .footer-pinterest-card {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 10px;
      margin-top: 4px;
    }

    .footer-pinterest-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(230, 0, 35, 0.08);
      border: 1px solid rgba(230, 0, 35, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .footer-pinterest-stats {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .footer-pinterest-number {
      font-family: 'DM Serif Display', serif;
      font-size: 1.15rem;
      color: var(--text);
      line-height: 1;
    }

    .footer-pinterest-label {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      color: var(--muted);
    }

    .footer-pinterest-link {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      color: var(--accent);
      text-decoration: none;
      white-space: nowrap;
      transition: opacity 0.2s;
    }

    .footer-pinterest-link:hover {
      opacity: 0.7;
    }

    /* Footer nav columns */
    .footer-nav {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      text-align: left;
    }

    .footer-col-title {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 14px;
    }

    .footer-col a {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.78rem;
      color: var(--muted);
      text-decoration: none;
      padding: 3px 0;
      transition: color 0.2s, transform 0.15s;
    }

    .footer-col a:hover {
      color: var(--accent);
      transform: translateX(3px);
    }

    .footer-col-dot {
      display: none;
    }

    /* footer rule */
    .footer-rule {
      border: none;
      border-top: 1px solid var(--border);
      margin: 36px 0 20px;
    }

    /* Disclosure */
    .footer-disclosure {
      text-align: center;
      font-size: 0.7rem;
      color: var(--muted);
      opacity: 0.75;
      max-width: 640px;
      margin: 0 auto 24px;
      line-height: 1.7;
    }

    .footer-disclosure strong {
      color: var(--accent);
      opacity: 1;
    }

    /* Bottom bar */
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      padding-top: 20px;
      border-top: 1px solid var(--border);
      font-size: 0.72rem;
      color: var(--muted);
    }

    .footer-bottom-links {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-bottom a {
      font-weight: 600;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-bottom a:hover {
      color: var(--accent);
    }

    /* ── FOOTER MOBILE ── */
    @media (max-width: 600px) {
      .footer-inner {
        padding: 40px 20px 32px;
      }

      .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .footer-brand-tagline {
        max-width: none;
      }

      .footer-nav {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
      }

      .footer-bottom-links {
        justify-content: center;
      }
    }

    /* ── HERO MOBILE ── */
    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: 1fr;
        padding: 48px 24px 40px;
        gap: 32px;
      }

      .hero-visual-side {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
      }

      .hero-sub {
        max-width: none;
      }
    }

    @media (max-width: 600px) {
      .hero-inner {
        padding: 36px 20px 32px;
      }

      .hero h1 {
        font-size: 2.2rem;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-btn-primary,
      .hero-btn-secondary {
        justify-content: center;
        width: 100%;
      }

      .hero-platforms {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }

      .hero-visual-cards {
        grid-template-columns: 1fr 1fr;
      }

      .header-platform-nav {
        display: none;
      }
    }

    /* ============================================================
       MOBILE HAMBURGER MENU
    ============================================================ */
    .mobile-menu-btn {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 36px;
      height: 36px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 4px;
      border-radius: 6px;
      transition: background 0.2s;
    }

    .mobile-menu-btn:hover {
      background: var(--bg2);
    }

    .mobile-menu-btn span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--muted);
      border-radius: 2px;
      transition: background 0.2s;
    }

    .mobile-menu-btn:hover span {
      background: var(--accent);
    }

    .mobile-nav-drawer {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: 99999;
      pointer-events: none;
      visibility: hidden;
      transition: visibility 0s linear 0.35s;
    }

    .mobile-nav-drawer.open {
      pointer-events: all;
      visibility: visible;
      transition: visibility 0s linear 0s;
    }

    .mobile-nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0,0,0,0.4);
      backdrop-filter: blur(3px);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .mobile-nav-drawer.open .mobile-nav-overlay {
      opacity: 1;
    }

    .mobile-nav-panel {
      position: fixed;
      top: 0;
      right: 0;
      width: 260px;
      max-width: 82vw;
      height: 100vh;
      background: var(--card);
      border-left: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      overflow-y: auto;
      overflow-x: hidden;
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: -8px 0 48px rgba(0,0,0,0.18);
      will-change: transform;
      z-index: 1;
    }

    .mobile-nav-drawer.open .mobile-nav-panel {
      transform: translateX(0);
    }

    .mobile-nav-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      border-bottom: 1px solid var(--border);
    }

    .mobile-nav-title {
      font-family: 'DM Serif Display', serif;
      font-size: 1rem;
      color: var(--text);
    }

    .mobile-nav-close {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      border: none;
      cursor: pointer;
      color: var(--muted);
      font-size: 1.3rem;
      border-radius: 50%;
      transition: background 0.2s, color 0.2s;
    }

    .mobile-nav-close:hover {
      background: var(--bg2);
      color: var(--accent);
    }

    .mobile-nav-links {
      display: flex;
      flex-direction: column;
      padding: 12px 0;
      flex: 1;
    }

    .mobile-nav-link {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 20px;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text);
      border-bottom: 1px solid var(--border);
      transition: background 0.18s, color 0.18s;
    }

    .mobile-nav-link:last-child {
      border-bottom: none;
    }

    .mobile-nav-link:hover {
      background: var(--bg2);
      color: var(--accent);
    }

    .mobile-nav-link-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .mobile-nav-link svg {
      flex-shrink: 0;
      opacity: 0.7;
    }

    .mobile-nav-divider {
      height: 1px;
      background: var(--border);
      margin: 8px 20px;
    }

    /* ============================================================
       BACK TO TOP BUTTON
    ============================================================ */
    .back-to-top {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 9px 20px;
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 999px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      cursor: pointer;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s;
    }

    .back-to-top:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: var(--card);
      transform: translateY(-2px);
    }

    .back-to-top:active {
      transform: translateY(0);
    }

    /* Footer nav link */
    .footer-nav-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      border-radius: 999px;
      text-decoration: none;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: var(--muted);
      background: transparent;
      border: 1px solid transparent;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
    }

    .footer-nav-link:hover {
      color: var(--accent);
      border-color: var(--border);
      background: var(--bg2);
    }

    /* ============================================================
       RESPONSIVE - MOBILE (≤600px)
    ============================================================ */
    @media (max-width: 600px) {
      /* Header */
      header {
        padding: 12px 18px;
      }

      .logo {
        font-size: 1.25rem;
      }

      .logo-img {
        width: 34px;
        height: 34px;
      }

      .theme-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
      }

      /* Hero */
      .hero {
        padding: 40px 20px 36px;
      }

      .hero h1 {
        font-size: 1.9rem;
      }

      .hero p {
        font-size: 0.92rem;
      }

      /* Disclosure */
      .disclosure {
        padding: 10px 16px;
        font-size: 0.75rem;
      }

      /* Main */
      main {
        padding: 16px 0 60px;
      }

      /* Section fills full width */
      .shop-section {
        border-radius: 0;
        border-left: none;
        border-right: none;
        margin-bottom: 8px;
      }

      main {
        padding: 12px 0 60px;
      }

      .section-header {
        padding: 16px 20px;
      }

      .section-title {
        font-size: 1.35rem;
      }

      .shop-badge {
        font-size: 0.68rem;
        padding: 5px 13px;
      }

      .chevron {
        font-size: 1.2rem;
      }

      /* Cards wrap override for mobile */
      /* WITH THIS */
      .cards-wrap {
        padding: 12px 0;
      }

      .section-subheading {
        font-size: 1.05rem;
        padding: 18px 20px 10px;
        margin-bottom: 0;
      }

      /* Slider: show ~2.4 cards so third is partially visible */
      .slider-wrapper {
        margin: 0;
        gap: 10px;
        padding: 0 0 4px;
        overflow: visible;
      }

      .slider-row {
        overflow: visible;
      }

      .slider-grid {
        grid-auto-columns: calc((100vw - 48px) / 2.2) !important;
        gap: 10px !important;
        padding: 4px 20px !important;
        align-items: start !important;
      }

      .card-img {
        aspect-ratio: 3 / 4;
        max-height: 220px;
      }

      .card-img.pin-portrait {
        aspect-ratio: 3 / 4;
        max-height: 220px;
        object-position: center top;
      }

      .card h3 {
        min-height: unset;
        -webkit-line-clamp: 2;
      }

      /* Card text */
      .card h3 {
        font-size: 0.9rem;
        line-height: 1.3;
      }

      .card-body {
        padding: 10px 12px 12px;
        gap: 8px;
      }

      .card-cta {
        font-size: 0.7rem;
      }

      /* Category tags: 2-column grid */
      .category-tags {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        gap: 10px;
        padding: 8px 20px 4px;
        margin-top: 6px;
      }

      .cat-tag {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 0.85rem;
        padding: 13px 8px;
        border-width: 1.5px;
        min-height: 48px;
      }

      /* Category grid on mobile */
      .category-cards.active {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 20px 24px;
        margin-top: 14px;
      }

      .category-section {
        padding-bottom: 8px;
        padding-left: 20px;
        padding-right: 20px;
      }

      /* Hide slider arrow buttons on mobile (swipe only) */
      .slider-btn {
        display: none !important;
      }

      .nav-actions {
        gap: 8px;
      }

      .saved-nav-btn {
        height: 34px;
        padding: 0 10px;
        font-size: 0.76rem;
      }

      .header-platform-nav {
        display: none;
      }

      .mobile-menu-btn {
        display: flex;
      }
    }

    @media (min-width: 601px) {
      .mobile-menu-btn {
        display: none !important;
      }

      .mobile-nav-drawer {
        visibility: hidden !important;
        pointer-events: none !important;
      }
    }

    /* ============================================================
       SEARCH SYSTEM
    ============================================================ */

    /* Header hide/show on scroll */
    header {
      transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                  background 0.35s, color 0.35s;
      will-change: transform;
    }

    header.header-hidden {
      transform: translateY(-110%);
    }

    .search-wrapper {
      position: relative;
      display: flex;
      align-items: center;
    }

    .search-toggle-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      height: 36px;
      padding: 0 12px;
      border-radius: 999px;
      border: none;
      background: transparent;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      color: var(--muted);
      cursor: pointer;
      transition: color 0.2s ease, transform 0.18s ease;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .search-toggle-btn:hover {
      color: var(--accent);
      transform: translateY(-1px);
    }

    .search-toggle-btn:active {
      transform: translateY(0);
    }

    .search-toggle-btn .search-icon {
      font-size: 1rem;
      line-height: 1;
    }

    /* Desktop: inline expanding input */
    .search-input-wrap {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 0;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
      transition: width 0.32s cubic-bezier(0.4, 0, 0.2, 1),
                  opacity 0.22s ease;
      background: var(--card);
      border: 1.5px solid var(--border);
      border-radius: 999px;
      display: flex;
      align-items: center;
      box-shadow: var(--shadow);
    }

    .search-input-wrap.open {
      width: 280px;
      opacity: 1;
      pointer-events: all;
    }

    .search-input-wrap input {
      flex: 1;
      height: 36px;
      padding: 0 14px 0 16px;
      border: none;
      background: transparent;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      color: var(--text);
      outline: none;
    }

    .search-input-wrap input::placeholder {
      color: var(--muted);
      font-weight: 400;
    }

    .search-input-clear {
      width: 30px;
      height: 30px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      border: none;
      cursor: pointer;
      color: var(--muted);
      font-size: 0.85rem;
      border-radius: 50%;
      margin-right: 3px;
      transition: color 0.18s, background 0.18s;
      opacity: 0;
      pointer-events: none;
    }

    .search-input-clear.visible {
      opacity: 1;
      pointer-events: all;
    }

    .search-input-clear:hover {
      color: var(--accent);
      background: var(--bg2);
    }

   /* Mobile-only: full-width overlay bar */
    .search-overlay-bar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 9000;
      background: var(--card);
      border-bottom: 1px solid var(--border);
      display: none;
      align-items: center;
      gap: 12px;
      padding: 10px 16px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.10);
      transform: translateY(-110%);
      opacity: 0;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                  opacity 0.25s ease;
      pointer-events: none;
    }

    .search-overlay-bar.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: all;
    }

    .search-overlay-input-wrap {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--bg2);
      border: 1.5px solid var(--border);
      border-radius: 999px;
      padding: 0 16px;
      height: 40px;
      transition: border-color 0.2s;
    }

    .search-overlay-bar.open .search-overlay-input-wrap {
      border-color: var(--accent);
    }

    .search-overlay-icon {
      font-size: 0.95rem;
      color: var(--muted);
      flex-shrink: 0;
      line-height: 1;
    }

    .search-overlay-input {
      flex: 1;
      background: transparent;
      border: none;
      outline: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.92rem;
      color: var(--text);
      min-width: 0;
    }

    .search-overlay-input::placeholder {
      color: var(--muted);
    }

    .search-overlay-clear {
      width: 26px;
      height: 26px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      border: none;
      cursor: pointer;
      color: var(--muted);
      font-size: 0.78rem;
      border-radius: 50%;
      transition: color 0.18s, background 0.18s;
      opacity: 0;
      pointer-events: none;
    }

    .search-overlay-clear.visible {
      opacity: 1;
      pointer-events: all;
    }

    .search-overlay-clear:hover {
      color: var(--accent);
      background: var(--bg2);
    }

    .search-overlay-cancel {
      flex-shrink: 0;
      background: transparent;
      border: none;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      color: var(--muted);
      padding: 0 4px;
      transition: color 0.2s;
      white-space: nowrap;
    }

    .search-overlay-cancel:hover {
      color: var(--accent);
    }

    /* Dropdown — desktop: anchored to search wrapper; mobile: fixed centered */
    .search-dropdown {
      position: fixed;
      top: 60px;
      right: 16px;
      width: 500px;
      max-height: 600px;
      overflow-y: auto;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      box-shadow: 0 8px 48px rgba(0, 0, 0, 0.16);
      z-index: 9999;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-6px);
      transition: opacity 0.22s ease, transform 0.22s ease;
    }

    .search-dropdown.visible {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0);
    }

   /* Scrim — mobile only */
    .search-scrim {
      position: fixed;
      inset: 0;
      z-index: 160;
      background: rgba(0, 0, 0, 0.38);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.28s ease;
      display: none;
    }

    .search-scrim.visible {
      opacity: 1;
      pointer-events: all;
    }

    @media (max-width: 600px) {
      .search-scrim {
        display: block;
      }
    }

    .search-dropdown-header {
      padding: 12px 16px 8px;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      border-bottom: 1px solid var(--border);
    }

   .search-result-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 14px 20px;
      text-decoration: none;
      color: var(--text);
      border-bottom: 1px solid var(--border);
      transition: background 0.15s ease;
      cursor: pointer;
    }

    .search-result-item:last-child {
      border-bottom: none;
    }

    .search-result-item:hover,
    .search-result-item:active {
      background: var(--bg2);
    }

    .search-result-img {
      width: 64px;
      height: 64px;
      border-radius: 10px;
      object-fit: cover;
      flex-shrink: 0;
      background: var(--bg2);
      border: 1px solid var(--border);
    }

    .search-result-info {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .search-result-title {
      font-family: 'DM Serif Display', serif;
      font-size: 0.97rem;
      line-height: 1.35;
      color: var(--text);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .search-result-platform {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .srp-shopee { color: #f05a28; }
    .srp-amazon { color: #ff9900; }
    .srp-shein  { color: var(--text); opacity: 0.6; }

    .search-result-arrow {
      font-size: 0.75rem;
      color: var(--muted);
      flex-shrink: 0;
      opacity: 0;
      transform: translateX(-4px);
      transition: opacity 0.15s, transform 0.15s;
    }

    .search-result-item:hover .search-result-arrow {
      opacity: 1;
      transform: translateX(0);
    }

    .search-no-results {
      padding: 24px 16px;
      text-align: center;
      font-size: 0.82rem;
      color: var(--muted);
    }

    /* ── VIRTUAL SEARCH PAGE ── */
    .search-virtual-page {
      position: fixed;
      inset: 0;
      z-index: 10000;
      background: var(--bg);
      display: flex;
      flex-direction: column;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.28s ease;
      overflow: hidden;
    }

    .search-virtual-page.open {
      opacity: 1;
      pointer-events: all;
    }

    .svp-header {
      background: var(--card);
      border-bottom: 1px solid var(--border);
      padding: 14px 28px;
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;
    }

    .svp-back-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: transparent;
      border: none;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      padding: 0;
      transition: color 0.2s;
      flex-shrink: 0;
    }

    .svp-back-btn:hover {
      color: var(--accent);
    }

    .svp-search-bar {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--bg2);
      border: 1.5px solid var(--border);
      border-radius: 999px;
      padding: 0 18px;
      height: 42px;
      transition: border-color 0.2s;
    }

    .svp-search-bar:focus-within {
      border-color: var(--accent);
    }

    .svp-search-icon {
      font-size: 1rem;
      color: var(--muted);
      flex-shrink: 0;
    }

    .svp-search-input {
      flex: 1;
      background: transparent;
      border: none;
      outline: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.92rem;
      color: var(--text);
    }

    .svp-search-input::placeholder {
      color: var(--muted);
    }

    .svp-body {
      flex: 1;
      overflow-y: auto;
      padding: 28px 28px 60px;
    }

    .svp-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .svp-count {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .svp-count strong {
      color: var(--accent);
    }

    .svp-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 18px;
    }

    .svp-empty {
      text-align: center;
      padding: 80px 20px;
    }

    .svp-empty-icon {
      font-size: 2.5rem;
      margin-bottom: 16px;
      opacity: 0.35;
    }

    .svp-empty-title {
      font-family: 'DM Serif Display', serif;
      font-size: 1.4rem;
      color: var(--text);
      margin-bottom: 8px;
    }

    .svp-empty-sub {
      font-size: 0.85rem;
      color: var(--muted);
    }

    @media (max-width: 600px) {
      /* Show overlay bar on mobile, hide desktop input */
      .search-overlay-bar {
        display: flex;
      }

      .search-input-wrap {
        display: none !important;
      }

      /* Dropdown on mobile: fixed, centered below overlay bar */
      .search-dropdown {
        top: 62px;
        left: 10px;
        right: 10px;
        width: auto;
        max-height: 55vh;
        border-radius: 16px;
        transform: translateY(-6px);
        z-index: 99999;
        background: var(--card) !important;
        box-shadow: 0 12px 48px rgba(0, 0, 0, 0.28), 0 2px 8px rgba(0, 0, 0, 0.12);
        isolation: isolate;
      }

      .search-dropdown.visible {
        transform: translateY(0);
      }

      .svp-header {
        padding: 12px 16px;
        gap: 10px;
      }

      .svp-body {
        padding: 16px 12px 60px;
      }

      .svp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }

      .svp-back-btn span {
        display: none;
      }
    }

/* ============================================================
       FAQ SECTION
    ============================================================ */
    .faq-section {
      max-width: 860px;
      margin: 0 auto 0;
      padding: 0 24px 64px;
    }

    .faq-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 12px;
    }

    .faq-eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 1.5px;
      background: var(--accent);
      border-radius: 2px;
    }

    .faq-heading {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 400;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--text);
      margin-bottom: 40px;
    }

    .faq-heading em {
      font-style: italic;
      color: var(--accent);
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      background: var(--card);
      box-shadow: var(--shadow);
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
    }

    .faq-item:last-child {
      border-bottom: none;
    }

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      width: 100%;
      padding: 20px 24px;
      background: transparent;
      border: none;
      text-align: left;
      cursor: pointer;
      font-family: 'DM Serif Display', serif;
      font-size: 1rem;
      font-weight: 400;
      color: var(--text);
      line-height: 1.4;
      transition: background 0.18s ease, color 0.18s ease;
      -webkit-tap-highlight-color: transparent;
    }

    .faq-question:hover {
      background: var(--bg2);
      color: var(--accent);
    }

    .faq-item.open .faq-question {
      color: var(--accent);
    }

    .faq-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 26px;
      height: 26px;
      flex-shrink: 0;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      font-size: 1rem;
      line-height: 1;
      color: var(--muted);
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                  border-color 0.2s ease,
                  color 0.2s ease,
                  background 0.2s ease;
      user-select: none;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      border-color: var(--accent);
      color: var(--accent);
      background: rgba(200, 82, 26, 0.07);
    }

    .faq-answer-wrap {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-answer {
      padding: 0 24px 22px;
      font-size: 0.92rem;
      font-weight: 300;
      line-height: 1.8;
      color: var(--muted);
      border-top: 1px solid var(--border);
      padding-top: 18px;
    }

    @media (max-width: 600px) {
      .faq-section {
        padding: 40px 16px 52px;
      }

      .faq-question {
        padding: 17px 18px;
        font-size: 0.93rem;
      }

      .faq-answer {
        padding: 16px 18px 20px;
        font-size: 0.88rem;
      }
    }