:root {
      --pink:        #e8668a;
      --pink-light:  #f9d4e0;
      --pink-pale:   #fff0f5;
      --pink-deep:   #c43e6b;
      --blush:       #fce8ef;
      --white:       #ffffff;
      --dark:        #1a0a10;
      --mid:         #5c3347;
      --sidebar-w:   260px;
      --topbar-h:    64px;
      --transition:  0.35s cubic-bezier(.4,0,.2,1);
    }

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

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--pink-pale);
      color: var(--dark);
      overflow-x: hidden;
    }

    /* ─── TOPBAR ─────────────────────────────────────── */
    #topbar {
      position: fixed; 
      top: 0; 
      left: 0; 
      right: 0; 
      z-index: 200;
      height: var(--topbar-h);
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--pink-light);
      display: flex; 
      align-items: center; 
      padding: 0 24px;
      gap: 16px;
    }

    #hamburger {
      background: none; 
      border: none; 
      cursor: pointer;
      display: flex; 
      flex-direction: column; 
      gap: 5px; 
      padding: 4px;
    }
    #hamburger span {
      display: block; width: 24px; 
      height: 2px;
      background: var(--pink-deep);
      transition: var(--transition);
      transform-origin: center;
    }
    body.sidebar-open #hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    body.sidebar-open #hamburger span:nth-child(2) { opacity: 0; }
    body.sidebar-open #hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .topbar-logo {
      font-family: 'Playfair Display', serif;
      font-weight: 900; font-size: 1.4rem;
      color: var(--pink-deep);
      letter-spacing: 0.02em;
      text-decoration: none;
      flex: 1;
      display: flex; align-items: center; gap: 10px;
    }
    .topbar-logo span { color: var(--pink); font-style: italic; }
    .topbar-logo img {
      height: 38px; width: auto;
      object-fit: contain;
    }

    /* Search bar */
    #search-wrap {
      display: flex; align-items: center;
      background: var(--blush);
      border: 1.5px solid var(--pink-light);
      border-radius: 30px;
      padding: 6px 16px;
      gap: 8px;
      flex: 0 0 280px;
      transition: border-color var(--transition), box-shadow var(--transition);
    }
    #search-wrap:focus-within {
      border-color: var(--pink);
      box-shadow: 0 0 0 3px rgba(232,102,138,0.15);
    }
    #search-input {
      border: none; background: none; outline: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem; color: var(--dark);
      width: 100%;
    }
    #search-input::placeholder { color: #b89aaa; }
    .search-icon-img {
      width: 16px; height: 16px;
      object-fit: contain; flex-shrink: 0;
      opacity: 0.6;
    }

    #search-results {
      display: none;
      position: absolute;
      top: calc(var(--topbar-h) + 4px);
      right: 24px;
      width: 320px;
      background: white;
      border: 1px solid var(--pink-light);
      border-radius: 16px;
      box-shadow: 0 8px 32px rgba(196,62,107,0.12);
      z-index: 300;
      overflow: hidden;
    }
    #search-results.active { display: block; }
    .search-result-item {
      padding: 12px 18px;
      cursor: pointer;
      border-bottom: 1px solid var(--blush);
      display: flex; align-items: center; gap: 10px;
      transition: background var(--transition);
    }
    .search-result-item:hover { background: var(--blush); }
    .search-result-item:last-child { border-bottom: none; }
    .sri-thumb {
      width: 36px; height: 36px;
      border-radius: 8px;
      object-fit: cover;
      background: var(--blush);
      flex-shrink: 0;
    }
    .sri-text { font-size: 0.85rem; color: var(--mid); }
    .sri-text strong { color: var(--dark); display: block; font-size: 0.92rem; }

    .topbar-cta {
      background: linear-gradient(135deg, var(--pink), var(--pink-deep));
      color: white;
      border: none; border-radius: 24px;
      padding: 8px 18px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.82rem; font-weight: 500;
      cursor: pointer;
      white-space: nowrap;
      transition: opacity var(--transition), transform var(--transition);
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .topbar-cta:hover { opacity: 0.9; transform: translateY(-1px); }
    .topbar-cta img {
      width: 16px; height: 16px; object-fit: contain;
    }

    /* ─── SIDEBAR ────────────────────────────────────── */
    #sidebar {
      position: fixed; top: var(--topbar-h); left: 0; bottom: 0;
      width: var(--sidebar-w);
      background: white;
      border-right: 1px solid var(--pink-light);
      transform: translateX(-100%);
      transition: transform var(--transition);
      z-index: 150;
      overflow-y: auto;
      display: flex; flex-direction: column;
    }
    body.sidebar-open #sidebar { transform: translateX(0); }

    #overlay {
      display: none;
      position: fixed; inset: 0; z-index: 140;
      background: rgba(26,10,16,0.3);
      backdrop-filter: blur(2px);
    }
    body.sidebar-open #overlay { display: block; }

    .sidebar-section-title {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.68rem; font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #c4a0b0;
      padding: 20px 20px 8px;
    }

    .sidebar-nav { list-style: none; }
    .sidebar-nav li a {
      display: flex; align-items: center; gap: 12px;
      padding: 11px 20px;
      text-decoration: none;
      font-size: 0.9rem;
      color: var(--mid);
      border-left: 3px solid transparent;
      transition: background var(--transition), color var(--transition), border-color var(--transition);
    }
    .sidebar-nav li a:hover,
    .sidebar-nav li a.active {
      background: var(--blush);
      color: var(--pink-deep);
      border-left-color: var(--pink);
    }
    .nav-icon-img {
      width: 20px; height: 20px;
      object-fit: contain; flex-shrink: 0;
      opacity: 0.7;
    }
    .sidebar-nav li a.active .nav-icon-img,
    .sidebar-nav li a:hover .nav-icon-img { opacity: 1; }

    .sidebar-divider {
      height: 1px; background: var(--pink-light);
      margin: 10px 20px;
    }

    .sidebar-footer {
      margin-top: auto;
      padding: 20px;
      font-size: 0.78rem;
      color: #c4a0b0;
      text-align: center;
      border-top: 1px solid var(--pink-light);
    }
    .sidebar-footer a {
      color: var(--pink);
      text-decoration: none;
      display: flex; align-items: center; gap: 6px;
      justify-content: center; margin-bottom: 6px;
    }
    .sidebar-footer img { width: 16px; height: 16px; object-fit: contain; }

    /* ─── MAIN CONTENT ───────────────────────────────── */
    #main {
      padding-top: var(--topbar-h);
      transition: margin-left var(--transition);
    }

    /* ─── PAGES ──────────────────────────────────────── */
    .page { display: none; }
    .page.active { display: block; }

    /* ─── HERO (HOME) ────────────────────────────────── */
    #hero {
      position: relative;
      height: calc(100vh - var(--topbar-h));
      overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }

    /* Image slideshow */
    .hero-img-wrap {
      position: absolute; inset: 0; z-index: 0;
    }
    .hero-slide {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1.2s ease;
    }
    .hero-slide.active { opacity: 1; }

    .hero-overlay {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(
        135deg,
        rgba(26,10,16,0.55) 0%,
        rgba(196,62,107,0.2) 60%,
        rgba(232,102,138,0.1) 100%
      );
    }

    .hero-content {
      position: relative; z-index: 2;
      text-align: center;
      color: white;
      padding: 0 24px;
      animation: heroFadeUp 1s ease both;
    }
    @keyframes heroFadeUp {
      from { opacity: 0; transform: translateY(32px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-tag {
      display: inline-block;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.3);
      backdrop-filter: blur(8px);
      color: white;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 6px 18px;
      border-radius: 20px;
      margin-bottom: 20px;
    }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 7vw, 6rem);
      font-weight: 900;
      line-height: 1.05;
      text-shadow: 0 4px 24px rgba(0,0,0,0.3);
      margin-bottom: 12px;
    }
    .hero-title em { font-style: italic; color: var(--pink-light); }

    .hero-sub {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1rem, 2.2vw, 1.5rem);
      font-weight: 300;
      opacity: 0.9;
      letter-spacing: 0.06em;
      margin-bottom: 36px;
    }

    .hero-btns {
      display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--pink), var(--pink-deep));
      color: white; border: none;
      padding: 14px 32px;
      border-radius: 50px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem; font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: transform var(--transition), box-shadow var(--transition);
      box-shadow: 0 8px 24px rgba(196,62,107,0.4);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(196,62,107,0.5); }
    .btn-ghost {
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(8px);
      color: white;
      border: 1.5px solid rgba(255,255,255,0.5);
      padding: 13px 28px;
      border-radius: 50px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: background var(--transition);
    }
    .btn-ghost:hover { background: rgba(255,255,255,0.25); }

    /* Video indicators */
    .hero-indicators {
      position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
      z-index: 3; display: flex; gap: 8px;
    }
    .hero-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
      border: none; cursor: pointer;
      transition: background var(--transition), transform var(--transition);
      padding: 0;
    }
    .hero-dot.active {
      background: white;
      transform: scale(1.4);
    }

    /* ─── SECTION WRAPPER ────────────────────────────── */
    .section {
      padding: 80px 40px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .section-header {
      text-align: center; margin-bottom: 56px;
    }
    .section-eyebrow {
      font-size: 0.72rem; font-weight: 500;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--pink); margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 700; color: var(--dark);
      line-height: 1.15;
    }
    .section-title em { font-style: italic; color: var(--pink-deep); }
    .section-sub {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; color: var(--mid);
      margin-top: 10px; font-weight: 400;
    }

    /* ─── CATEGORY CARDS ─────────────────────────────── */
    .cat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
      gap: 20px;
    }
    .cat-card {
      background: white;
      border-radius: 20px;
      padding: 28px 16px 22px;
      text-align: center;
      cursor: pointer;
      border: 2px solid transparent;
      transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
      text-decoration: none; color: inherit;
      display: block;
    }
    .cat-card:hover {
      border-color: var(--pink);
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(232,102,138,0.18);
    }
    .cat-img-wrap {
      width: 64px; height: 64px;
      margin: 0 auto 14px;
      border-radius: 16px;
      background: var(--blush);
      overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .cat-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .cat-name {
      font-family: 'Playfair Display', serif;
      font-size: 1rem; font-weight: 600;
      color: var(--dark); margin-bottom: 4px;
    }
    .cat-count {
      font-size: 0.78rem; color: #b89aaa;
    }

    /* ─── PRODUCTS GRID ──────────────────────────────── */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 28px;
    }
    .product-card {
      background: white;
      border-radius: 24px;
      overflow: hidden;
      transition: transform var(--transition), box-shadow var(--transition);
      cursor: pointer;
      border: 1px solid var(--pink-light);
    }
    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(232,102,138,0.2);
    }
    .product-img {
      width: 100%; aspect-ratio: 4/3;
      background: var(--blush);
      overflow: hidden;
    }
    .product-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform var(--transition);
    }
    .product-card:hover .product-img img { transform: scale(1.04); }
    .product-info { padding: 18px 20px; }
    .product-category {
      font-size: 0.72rem; text-transform: uppercase;
      letter-spacing: 0.1em; color: var(--pink); font-weight: 500;
    }
    .product-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem; font-weight: 600;
      color: var(--dark); margin: 4px 0 10px;
    }
    .product-footer {
      display: flex; justify-content: space-between; align-items: center;
    }
    .product-price {
      font-size: 0.95rem; font-weight: 700;
      color: var(--pink-deep);
    }
    .product-btn {
      background: var(--blush);
      color: var(--pink-deep);
      border: none; border-radius: 20px;
      padding: 6px 14px;
      font-size: 0.78rem; font-weight: 500;
      cursor: pointer;
      transition: background var(--transition);
    }
    .product-btn:hover { background: var(--pink-light); }

    /* ─── WHATSAPP STRIP ─────────────────────────────── */
    .wa-strip {
      background: linear-gradient(135deg, var(--pink-deep) 0%, var(--pink) 100%);
      color: white;
      padding: 48px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .wa-strip::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    }
    .wa-strip h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem; margin-bottom: 10px;
      position: relative;
    }
    .wa-strip p {
      opacity: 0.9; margin-bottom: 24px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      position: relative;
    }
    .wa-btn {
      display: inline-flex; align-items: center; gap: 10px;
      background: white; color: var(--pink-deep);
      padding: 14px 32px; border-radius: 50px;
      text-decoration: none;
      font-weight: 700; font-size: 1rem;
      position: relative;
      transition: transform var(--transition), box-shadow var(--transition);
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }
    .wa-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
    .wa-btn img { width: 22px; height: 22px; object-fit: contain; }

    /* ─── PAGE HERO BANNER ───────────────────────────── */
    .page-banner {
      background: linear-gradient(135deg, var(--pink-deep) 0%, var(--pink) 60%, var(--pink-light) 100%);
      padding: 80px 40px;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
      display: flex; flex-direction: column; align-items: center; gap: 10px;
    }
    .page-banner::after {
      content: '';
      position: absolute; bottom: -2px; left: 0; right: 0;
      height: 40px;
      background: var(--pink-pale);
      clip-path: ellipse(55% 100% at 50% 100%);
    }
    .page-banner-icon {
      width: 56px; height: 56px;
      object-fit: contain;
      margin-bottom: 4px;
      filter: brightness(0) invert(1);
      opacity: 0.9;
    }
    .page-banner h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 900;
      text-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }
    .page-banner p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      opacity: 0.9;
    }

    /* ─── FILTER BAR ─────────────────────────────────── */
    .filter-bar {
      display: flex; gap: 10px; flex-wrap: wrap;
      padding: 32px 40px 0;
      max-width: 1200px; margin: 0 auto;
    }
    .filter-btn {
      background: white; border: 1.5px solid var(--pink-light);
      color: var(--mid); border-radius: 24px;
      padding: 8px 18px; font-size: 0.84rem;
      cursor: pointer; font-family: 'DM Sans', sans-serif;
      transition: all var(--transition);
    }
    .filter-btn.active,
    .filter-btn:hover {
      background: var(--pink); color: white; border-color: var(--pink);
    }

    /* ─── ABOUT PAGE ─────────────────────────────────── */
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
      align-items: center;
    }
    @media (max-width: 768px) {
      .about-grid { grid-template-columns: 1fr; }
    }
    .about-visual {
      border-radius: 32px;
      background: linear-gradient(135deg, var(--pink-light), var(--blush));
      aspect-ratio: 1;
      overflow: hidden;
      position: relative;
    }
    .about-visual img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .about-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem; font-weight: 700;
      color: var(--dark); margin-bottom: 20px;
    }
    .about-text h2 em { color: var(--pink-deep); font-style: italic; }
    .about-text p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; line-height: 1.8;
      color: var(--mid); margin-bottom: 16px;
    }
    .stats-row {
      display: flex; gap: 32px; margin-top: 32px;
    }
    .stat { text-align: center; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem; font-weight: 900;
      color: var(--pink-deep);
    }
    .stat-label {
      font-size: 0.78rem; color: #b89aaa;
      text-transform: uppercase; letter-spacing: 0.1em;
    }

    /* ─── CONTACT PAGE ───────────────────────────────── */
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px;
    }
    @media (max-width: 768px) {
      .contact-grid { grid-template-columns: 1fr; }
    }
    .contact-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem; margin-bottom: 24px; color: var(--dark);
    }
    .contact-item {
      display: flex; gap: 14px; align-items: flex-start;
      margin-bottom: 24px;
    }
    .contact-ico {
      width: 44px; height: 44px;
      background: var(--blush);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .contact-ico img {
      width: 22px; height: 22px;
      object-fit: contain;
    }
    .contact-label {
      font-size: 0.72rem; text-transform: uppercase;
      letter-spacing: 0.1em; color: #b89aaa; margin-bottom: 2px;
    }
    .contact-value {
      font-size: 0.95rem; color: var(--dark); font-weight: 500;
    }

    .contact-form {
      background: white; border-radius: 24px;
      padding: 40px; border: 1px solid var(--pink-light);
    }
    .contact-form h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem; margin-bottom: 24px; color: var(--dark);
    }
    .form-group { margin-bottom: 20px; }
    .form-group label {
      display: block; font-size: 0.82rem;
      color: var(--mid); margin-bottom: 6px; font-weight: 500;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      border: 1.5px solid var(--pink-light);
      border-radius: 12px;
      padding: 12px 16px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      color: var(--dark);
      background: var(--pink-pale);
      outline: none;
      transition: border-color var(--transition), box-shadow var(--transition);
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--pink);
      box-shadow: 0 0 0 3px rgba(232,102,138,0.12);
    }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-submit {
      width: 100%;
      background: linear-gradient(135deg, var(--pink), var(--pink-deep));
      color: white; border: none; border-radius: 50px;
      padding: 14px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem; font-weight: 600;
      cursor: pointer;
      transition: opacity var(--transition), transform var(--transition);
    }
    .form-submit:hover { opacity: 0.9; transform: translateY(-1px); }

    /* ─── FOOTER ─────────────────────────────────────── */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,0.7);
      padding: 60px 40px 32px;
    }
    .footer-grid {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
      margin-bottom: 48px;
    }
    @media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
    .footer-brand .brand-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem; font-weight: 900;
      color: white; margin-bottom: 12px;
      display: flex; align-items: center; gap: 10px;
    }
    .footer-brand .brand-name em { color: var(--pink); font-style: italic; }
    .footer-brand .brand-name img { height: 36px; width: auto; object-fit: contain; }
    .footer-brand p {
      font-size: 0.88rem; line-height: 1.7;
      font-family: 'Cormorant Garamond', serif;
    }
    .footer-tag {
      margin-top: 16px;
      font-style: italic;
      font-family: 'Cormorant Garamond', serif;
      color: var(--pink-light);
      font-size: 0.95rem;
    }
    .footer-col h4 {
      font-family: 'Playfair Display', serif;
      color: white; font-size: 1rem;
      margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a {
      color: rgba(255,255,255,0.6); text-decoration: none;
      font-size: 0.88rem;
      transition: color var(--transition);
    }
    .footer-col ul li a:hover { color: var(--pink-light); }
    .footer-bottom {
      max-width: 1200px; margin: 0 auto;
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center;
      font-size: 0.82rem;
      flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom a { color: var(--pink-light); text-decoration: none; }

    /* ─── GROUNDNUTS PAGE ────────────────────────────── */
    .groundnut-hero {
      background: linear-gradient(135deg, #7a4a1e 0%, #b5701a 100%);
      color: white; padding: 80px 40px;
      text-align: center; position: relative; overflow: hidden;
    }
    .groundnut-hero-img {
      width: 120px; height: 120px;
      object-fit: contain;
      margin-bottom: 20px;
      filter: brightness(0) invert(1);
      opacity: 0.9;
    }
    .groundnut-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900;
    }
    .groundnut-hero p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem; opacity: 0.9; margin-top: 10px;
    }

    .sizes-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
      gap: 24px;
    }
    .size-card {
      background: white; border-radius: 20px;
      padding: 28px 20px; text-align: center;
      border: 2px solid var(--pink-light);
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .size-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(232,102,138,0.18);
    }
    .size-img {
      width: 80px; height: 80px;
      object-fit: contain;
      margin: 0 auto 14px;
      display: block;
    }
    .size-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem; font-weight: 600; margin-bottom: 6px;
    }
    .size-price {
      font-size: 1.1rem; font-weight: 700;
      color: var(--pink-deep); margin-bottom: 14px;
    }

    /* ─── SCROLL REVEAL ──────────────────────────────── */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ─── RESPONSIVE ─────────────────────────────────── */
    @media (max-width: 600px) {
      #search-wrap { flex: 0 0 160px; }
      .section { padding: 60px 20px; }
      .page-banner { padding: 60px 20px; }
      .filter-bar { padding: 24px 20px 0; }
      footer { padding: 40px 20px 24px; }
    }