  :root {
    --forest: #1a3d2b;
    --forest-light: #2a5c40;
    --forest-dark: #0f2419;
    --gold: #c9a84c;
    --gold-light: #e8c97e;
    --gold-pale: #f5e9c8;
    --cream: #faf6ee;
    --cream-dark: #f0e8d4;
    --brown: #5c3d1e;
    --text: #2c2c2c;
    --text-muted: #6b6b6b;
    --white: #ffffff;
    --radius: 4px;
    --shadow: 0 8px 32px rgba(26,61,43,0.12);
    --shadow-lg: 0 20px 60px rgba(26,61,43,0.18);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }
  h1,h2,h3,h4 { font-family: 'Playfair Display', serif; }
  a { text-decoration: none; color: inherit; }
  img { max-width: 100%; display: block; }
  ul { list-style: none; }

  /* ── TOPBAR ── */
  .topbar {
    background: var(--forest-dark);
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    padding: 7px 0;
  }
  .topbar-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
  }
  .topbar a { color: var(--gold-light); transition: color .2s; }
  .topbar a:hover { color: var(--white); }
  .topbar-right { display: flex; gap: 20px; align-items: center; }

  /* ── NAVBAR ── */
  nav {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 3px solid var(--gold);
  }
  .nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; height: 72px;
  }
  .logo {
    display: flex; align-items: center; gap: 12px;
  }
  .logo-icon {
    width: 44px; height: 44px;
    background: var(--forest);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
  }
  .logo-text { line-height: 1.1; }
  .logo-text .brand { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 800; color: var(--forest); letter-spacing: -0.01em; }
  .logo-text .tagline { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
  .nav-links { display: flex; gap: 4px; align-items: center; }
  .nav-links a, .nav-links .dropdown-trigger {
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 6px 14px; border-radius: var(--radius);
    color: var(--forest); cursor: pointer;
    transition: background .2s, color .2s;
    position: relative;
  }
  .nav-links a:hover, .nav-links .dropdown-trigger:hover { background: var(--forest); color: var(--white); }
  .nav-links a.active { color: var(--gold); font-weight: 600; }
  .dropdown { position: relative; }
  .dropdown-menu {
    display: none; position: absolute; top: calc(100% + 8px); left: 0;
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--gold);
    min-width: 180px; overflow: hidden; z-index: 999;
  }
  .dropdown:hover .dropdown-menu { display: block; }
  .dropdown-menu a {
    display: block; padding: 11px 18px;
    font-size: 0.82rem; font-weight: 400; letter-spacing: 0.02em;
    text-transform: none; border-radius: 0;
    color: var(--text);
    transition: background .15s, color .15s;
  }
  .dropdown-menu a:hover { background: var(--forest); color: var(--white); }
  .nav-cta {
    background: var(--gold) !important; color: var(--forest-dark) !important;
    font-weight: 700 !important; padding: 8px 20px !important;
    border-radius: 2px !important;
  }
  .nav-cta:hover { background: var(--forest) !important; color: var(--white) !important; }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--forest); transition: .3s; }
  .mobile-menu {
    display: none; position: fixed; inset: 0; background: var(--forest-dark);
    z-index: 9999; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { color: var(--white); font-size: 1.4rem; font-family: 'Playfair Display', serif; font-weight: 600; }
  .mobile-menu a:hover { color: var(--gold-light); }
  .mobile-close { position: absolute; top: 24px; right: 28px; color: var(--white); font-size: 2rem; cursor: pointer; }

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

  /* ── HERO ── */
  .hero {
    position: relative; overflow: hidden;
    min-height: 92vh; display: flex; align-items: center;
    background: var(--forest-dark);
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: 
      radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.15) 0%, transparent 65%),
      radial-gradient(ellipse 60% 80% at 20% 80%, rgba(42,92,64,0.4) 0%, transparent 60%),
      linear-gradient(135deg, #0f2419 0%, #1a3d2b 50%, #0d2015 100%);
  }
  .hero-pattern {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
    background-size: 24px 24px;
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }
  .hero-text { animation: fadeUp .9s ease both; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold-light); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
    padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
  }
  .hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; display: block; }
  .hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 800; line-height: 1.1;
    color: var(--white); margin-bottom: 20px;
  }
  .hero h1 span { color: var(--gold-light); font-style: italic; }
  .hero-desc { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.75; margin-bottom: 36px; font-weight: 300; }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold); color: var(--forest-dark);
    font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 14px 30px; border-radius: 2px; border: none; cursor: pointer;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.45); }
  .btn-outline {
    background: transparent; color: var(--white);
    font-weight: 600; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 13px 28px; border-radius: 2px; border: 1.5px solid rgba(255,255,255,0.35); cursor: pointer;
    transition: .2s;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
  .hero-stats {
    display: flex; gap: 32px; margin-top: 44px; padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .hero-stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; color: var(--gold-light); }
  .hero-stat-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 2px; }
  .hero-visual { animation: fadeUp .9s .25s ease both; position: relative; }
  .hero-card {
    background: rgba(255,255,255,0.07); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12); border-radius: 12px;
    padding: 40px; text-align: center;
  }
  .hero-rice-icon { font-size: 7rem; display: block; margin: 0 auto 20px; filter: drop-shadow(0 8px 24px rgba(201,168,76,0.3)); }
  .hero-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 8px; }
  .hero-card p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
  .hero-floating-badge {
    position: absolute; top: -16px; right: -16px;
    background: var(--gold); color: var(--forest-dark);
    border-radius: 50%; width: 80px; height: 80px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    font-weight: 800; box-shadow: 0 4px 20px rgba(201,168,76,0.5);
    line-height: 1.1;
  }
  .hero-floating-badge .num { font-family: 'Playfair Display', serif; font-size: 1.4rem; }
  .hero-floating-badge .lbl { font-size: 0.5rem; letter-spacing: 0.1em; text-transform: uppercase; }

  /* ── SCROLL INDICATOR ── */
  .scroll-line {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.4); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; z-index: 2;
  }
  .scroll-line::after {
    content: ''; width: 1px; height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    display: block; animation: scrollPulse 2s ease-in-out infinite;
  }

  /* ── SECTION COMMONS ── */
  .section { padding: 96px 24px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-label {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--gold); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
    margin-bottom: 14px;
  }
  .section-label::before, .section-label::after {
    content: ''; flex: 1; width: 30px; height: 1px; background: var(--gold);
  }
  .section-label::before { display: block; }
  .section-label::after { display: block; }
  .section-title { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.2; color: var(--forest); margin-bottom: 16px; }
  .section-desc { color: var(--text-muted); font-size: 1rem; line-height: 1.75; max-width: 560px; }
  .section-header { margin-bottom: 56px; }
  .section-header.center { text-align: center; }
  .section-header.center .section-label { justify-content: center; }
  .section-header.center .section-desc { margin: 0 auto; }

  /* ── ABOUT STRIP ── */
  .about-strip { background: var(--white); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-visual { position: relative; }
  .about-image-box {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
    border-radius: 12px; aspect-ratio: 4/3;
    display: flex; align-items: center; justify-content: center;
    font-size: 8rem; position: relative; overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .about-image-box::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(201,168,76,0.2), transparent 60%);
  }
  .about-accent-box {
    position: absolute; bottom: -24px; right: -24px;
    background: var(--gold); color: var(--forest-dark);
    border-radius: 10px; padding: 22px 28px;
    box-shadow: var(--shadow);
  }
  .about-accent-box .num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 800; line-height: 1; }
  .about-accent-box .lbl { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; margin-top: 4px; }
  .about-text .section-desc { max-width: 100%; margin-bottom: 28px; }
  .about-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
  .about-list-item { display: flex; align-items: flex-start; gap: 12px; }
  .about-list-icon { width: 24px; height: 24px; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; flex-shrink: 0; margin-top: 1px; }
  .about-list-item p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }

  /* ── BRANDS ── */
  .brands-section { background: var(--cream); }
  .brands-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .brand-card {
    background: var(--white); border-radius: 10px;
    padding: 36px 24px; text-align: center;
    border: 1px solid var(--cream-dark);
    transition: transform .25s, box-shadow .25s, border-color .25s;
    cursor: pointer;
  }
  .brand-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
  .brand-icon { font-size: 3.5rem; margin: 0 auto 16px; display: block; }
  .brand-card h3 { font-size: 1.2rem; color: var(--forest); margin-bottom: 8px; }
  .brand-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
  .brand-card .brand-link {
    display: inline-block; margin-top: 18px;
    font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
    color: var(--gold); border-bottom: 1px solid var(--gold-pale);
    padding-bottom: 2px; transition: color .2s, border-color .2s;
  }
  .brand-card:hover .brand-link { color: var(--forest); border-color: var(--forest); }

  /* ── PRODUCTS ── */
  .products-section { background: var(--white); }
  .filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 44px; justify-content: center; }
  .filter-tab {
    padding: 9px 22px; border-radius: 100px;
    font-size: 0.8rem; font-weight: 500; letter-spacing: 0.05em;
    border: 1.5px solid var(--cream-dark); background: transparent; color: var(--text-muted);
    cursor: pointer; transition: .2s;
  }
  .filter-tab.active, .filter-tab:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }
  .products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .product-card {
    background: var(--cream); border-radius: 10px; overflow: hidden;
    border: 1px solid var(--cream-dark);
    transition: transform .25s, box-shadow .25s;
  }
  .product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
  .product-image {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
    aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
    font-size: 4.5rem; position: relative; overflow: hidden;
  }
  .product-image::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(201,168,76,0.15), transparent 60%);
  }
  .product-badge {
    position: absolute; top: 12px; right: 12px;
    background: var(--gold); color: var(--forest-dark);
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 100px;
  }
  .product-info { padding: 20px; }
  .product-info .category { font-size: 0.9rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
  .product-info h3 { font-size: 1.05rem; color: var(--forest); margin-bottom: 8px; }
  .product-info p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
  .product-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--cream-dark); }
  .product-footer .origin { font-size: 0.72rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
  .product-link { font-size: 0.72rem; font-weight: 600; color: var(--forest); border: 1.5px solid var(--forest); padding: 5px 14px; border-radius: 2px; letter-spacing: 0.06em; text-transform: uppercase; transition: .2s; }
  .product-link:hover { background: var(--forest); color: var(--white); }

  /* ── WHY CHOOSE ── */
  .why-section {
    background: var(--forest);
    position: relative; overflow: hidden;
  }
  .why-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.1) 0%, transparent 60%);
    pointer-events: none;
  }
  .why-section .section-title { color: var(--white); }
  .why-section .section-desc { color: rgba(255,255,255,0.6); }
  .why-section .section-label { color: var(--gold-light); }
  .why-section .section-label::before, .why-section .section-label::after { background: var(--gold-light); }
  .why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .why-card {
    background: rgba(255,255,255,0.06); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
    padding: 32px; transition: .25s;
  }
  .why-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
  .why-icon { font-size: 2.2rem; margin-bottom: 16px; }
  .why-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 10px; }
  .why-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
  .stats-row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: rgba(255,255,255,0.1);
    border-radius: 10px; overflow: hidden; margin-top: 56px;
  }
  .stat-box {
    background: rgba(255,255,255,0.05); padding: 32px 24px; text-align: center;
    transition: background .2s;
  }
  .stat-box:hover { background: rgba(201,168,76,0.12); }
  .stat-box .num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 800; color: var(--gold-light); line-height: 1; }
  .stat-box .lbl { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 8px; }

  /* ── GALLERY ── */
  .gallery-section { background: var(--cream); }
  .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 220px); gap: 16px; }
  .gallery-item {
    border-radius: 8px; overflow: hidden;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 3.5rem; position: relative; cursor: pointer;
    transition: .3s;
  }
  .gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); z-index: 2; }
  .gallery-item:nth-child(1) { grid-row: span 2; font-size: 5rem; }
  .gallery-item::after {
    content: attr(data-label);
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(15,36,25,0.85), transparent);
    color: var(--white); padding: 14px 16px 14px;
    font-size: 0.78rem; font-family: 'Jost', sans-serif;
    font-weight: 500; letter-spacing: 0.04em;
    opacity: 0; transition: opacity .3s; transform: translateY(8px); transition: opacity .3s, transform .3s;
  }
  .gallery-item:hover::after { opacity: 1; transform: translateY(0); }

  /* ── BLOG ── */
  .blog-section { background: var(--white); }
  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .blog-card { background: var(--cream); border-radius: 10px; overflow: hidden; border: 1px solid var(--cream-dark); transition: .25s; cursor: pointer; }
  .blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
  .blog-thumb {
    aspect-ratio: 16/9; background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 100%);
    display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative;
  }
  .blog-thumb .blog-date {
    position: absolute; top: 14px; left: 14px;
    background: var(--gold); color: var(--forest-dark);
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 2px;
  }
  .blog-body { padding: 22px; }
  .blog-cat { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
  .blog-card h3 { font-size: 1rem; color: var(--forest); margin-bottom: 10px; line-height: 1.4; }
  .blog-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }
  .blog-readmore { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 0.75rem; font-weight: 600; color: var(--forest); text-transform: uppercase; letter-spacing: 0.08em; transition: gap .2s; }
  .blog-readmore:hover { gap: 10px; color: var(--gold); }

  /* ── CONTACT STRIP ── */
  .contact-strip {
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 100%);
    padding: 80px 24px; text-align: center;
    position: relative; overflow: hidden;
  }
  .contact-strip::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 50% 70% at 50% 100%, rgba(201,168,76,0.12) 0%, transparent 60%);
  }
  .contact-strip h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--white); margin-bottom: 14px; position: relative; }
  .contact-strip p { color: rgba(255,255,255,0.6); margin-bottom: 32px; position: relative; }
  .contact-strip .btn-primary { position: relative; }
  .contact-form-inline {
    max-width: 600px; margin: 0 auto;
    display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; position: relative;
  }
  .contact-form-inline input, .contact-form-inline textarea {
    flex: 1; min-width: 200px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: var(--white); padding: 13px 18px; border-radius: 3px;
    font-family: 'Jost', sans-serif; font-size: 0.88rem;
    outline: none; transition: border-color .2s;
  }
  .contact-form-inline input::placeholder, .contact-form-inline textarea::placeholder { color: rgba(255,255,255,0.4); }
  .contact-form-inline input:focus, .contact-form-inline textarea:focus { border-color: var(--gold); }

  /* ── FOOTER ── */
  footer {
    background: var(--forest-dark); color: rgba(255,255,255,0.7);
    padding: 72px 24px 0;
  }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
  .footer-brand .logo-text .brand { color: var(--white); }
  .footer-brand p { font-size: 0.85rem; line-height: 1.75; margin: 18px 0 24px; color: rgba(255,255,255,0.55); }
  .footer-socials { display: flex; gap: 12px; }
  .footer-social {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; transition: .2s; cursor: pointer;
  }
  .footer-social:hover { background: var(--gold); border-color: var(--gold); color: var(--forest-dark); }
  .footer-col h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; font-family: 'Jost', sans-serif; font-weight: 600; }
  .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color .2s; display: flex; align-items: center; gap: 6px; }
  .footer-col ul a:hover { color: var(--gold-light); }
  .footer-col ul a::before { content: '→'; font-size: 0.7rem; color: var(--gold); opacity: 0.7; }
  .footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; }
  .footer-contact-icon { font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
  .footer-contact-text { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.55; }
  .footer-contact-text strong { color: rgba(255,255,255,0.8); font-weight: 500; }
  .footer-bottom {
    margin-top: 56px; padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
    font-size: 0.78rem; color: rgba(255,255,255,0.35);
  }
  .footer-bottom a { color: var(--gold-light); }

  /* ── INNER PAGE HERO ── */
  .page-hero {
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 100%);
    padding: 80px 24px;
    position: relative; overflow: hidden;
  }
  .page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201,168,76,0.12) 0%, transparent 60%);
  }
  .page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; }
  .page-hero .breadcrumb { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
  .page-hero .breadcrumb a { color: var(--gold-light); }
  .page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); font-weight: 800; }
  .page-hero p { color: rgba(255,255,255,0.6); margin-top: 10px; font-size: 1rem; max-width: 500px; }

  /* ── ABOUT PAGE ── */
  .timeline { position: relative; padding-left: 32px; }
  .timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--gold-pale); }
  .timeline-item { position: relative; margin-bottom: 40px; }
  .timeline-item::before { content: ''; position: absolute; left: -28px; top: 5px; width: 12px; height: 12px; background: var(--gold); border-radius: 50%; border: 2px solid var(--white); box-shadow: 0 0 0 3px var(--gold-pale); }
  .timeline-item .year { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
  .timeline-item h3 { font-size: 1.05rem; color: var(--forest); margin-bottom: 6px; }
  .timeline-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
  .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
  .team-card { background: var(--cream); border-radius: 10px; overflow: hidden; text-align: center; border: 1px solid var(--cream-dark); transition: .25s; }
  .team-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
  .team-avatar { aspect-ratio: 1; background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
  .team-info { padding: 20px; }
  .team-info h3 { font-size: 1.05rem; color: var(--forest); margin-bottom: 4px; }
  .team-info .role { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
  .team-info p { font-size: 0.82rem; color: var(--text-muted); margin-top: 10px; line-height: 1.6; }
  .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .value-card { background: var(--white); border-radius: 10px; padding: 32px; border: 1px solid var(--cream-dark); text-align: center; transition: .25s; }
  .value-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
  .value-icon { font-size: 2.5rem; margin-bottom: 14px; }
  .value-card h3 { font-size: 1.05rem; color: var(--forest); margin-bottom: 10px; }
  .value-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

  /* ── CONTACT PAGE ── */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
  .contact-form { background: var(--white); border-radius: 12px; padding: 40px; box-shadow: var(--shadow); }
  .form-group { margin-bottom: 22px; }
  .form-group label { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--forest); margin-bottom: 8px; }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 13px 16px;
    border: 1.5px solid var(--cream-dark); border-radius: 4px;
    font-family: 'Jost', sans-serif; font-size: 0.9rem; color: var(--text);
    background: var(--cream); outline: none; transition: border-color .2s;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); background: var(--white); }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
  .info-card { background: var(--white); border-radius: 10px; padding: 24px; display: flex; gap: 16px; align-items: flex-start; border: 1px solid var(--cream-dark); transition: .2s; }
  .info-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
  .info-icon { width: 46px; height: 46px; background: var(--forest); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
  .info-card h3 { font-size: 0.9rem; color: var(--forest); margin-bottom: 4px; }
  .info-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
  .map-placeholder { background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%); border-radius: 10px; padding: 48px; text-align: center; color: var(--white); margin-top: 20px; }
  .map-placeholder .icon { font-size: 3rem; margin-bottom: 12px; }
  .map-placeholder p { font-size: 0.88rem; color: rgba(255,255,255,0.7); }

  /* ── GALLERY PAGE ── */
  .gallery-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .gallery-page-item {
    border-radius: 8px; overflow: hidden;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
    aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
    font-size: 3.5rem; position: relative; cursor: pointer; transition: .3s;
  }
  .gallery-page-item:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); z-index: 2; }
  .gallery-page-item:nth-child(4n) { grid-column: span 2; aspect-ratio: 16/7; font-size: 5rem; }

  /* ── BLOG PAGE ── */
  .blog-page-grid { align-items: start; }
  .blog-sidebar { position: sticky; top: 90px; }
  .sidebar-box { background: var(--white); border-radius: 10px; padding: 28px; border: 1px solid var(--cream-dark); margin-bottom: 24px; }
  .sidebar-box h3 { font-size: 1rem; color: var(--forest); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--gold-pale); }
  .sidebar-tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .sidebar-tag { padding: 5px 14px; border-radius: 100px; border: 1.5px solid var(--cream-dark); font-size: 0.78rem; color: var(--text-muted); cursor: pointer; transition: .2s; }
  .sidebar-tag:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }
  .blog-main-list { display: flex; flex-direction: column; gap: 28px; }
  .blog-main-card { background: var(--white); border-radius: 10px; overflow: hidden; border: 1px solid var(--cream-dark); display: grid; grid-template-columns: 280px 1fr; transition: .25s; }
  .blog-main-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
  .blog-main-thumb { background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 100%); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
  .blog-main-body { padding: 28px; }
  .blog-meta { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; display: flex; gap: 14px; }
  .blog-meta span { display: flex; align-items: center; gap: 5px; }
  .blog-main-body h2 { font-size: 1.3rem; color: var(--forest); margin-bottom: 10px; line-height: 1.4; }
  .blog-main-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

  /* ── WHATSAPP FLOAT ── */
  .whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    background: #25D366; color: var(--white);
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    cursor: pointer; transition: .2s;
    animation: pulse 2s ease-in-out infinite;
  }
  .whatsapp-float:hover { transform: scale(1.1); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes scrollPulse { 0%,100% { opacity: 0.4; transform: scaleY(1); } 50% { opacity: 0.9; transform: scaleY(1.3); } }
  @keyframes pulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); } 50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); } }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; }
    .hero-stats { justify-content: center; }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { display: none; }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .blog-page-grid { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; }
    .blog-main-card { grid-template-columns: 1fr; }
    .blog-main-thumb { aspect-ratio: 16/8; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero { min-height: 80vh; }
    .hero-stats { gap: 20px; }
    .brands-grid { grid-template-columns: 1fr 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .gallery-item:nth-child(1) { grid-row: span 1; }
    .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-page-item:nth-child(4n) { grid-column: span 1; aspect-ratio: 4/3; }
    .team-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .topbar-inner { flex-direction: column; text-align: center; gap: 6px; }
  }

@media(max-width:768px){

.custom-caption h1{
  font-size:2.5rem;
}

.carousel-banner-img{
  height:70vh;
}

.section-title{
  font-size:32px;
}

}


/* LOADER */

#loader{
  position:fixed;
  inset:0;
  background:var(--forest-dark);
  z-index:999999;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.5s;
}

.loader-content{
  text-align:center;
}


/* CAROUSEL */

.carousel-banner-img{
  height:90vh;
  object-fit:cover;
  /* filter:brightness(.5); */
}

.custom-caption{
  bottom:22%;
}

.custom-caption h1{
  font-size:4rem;
  font-weight:800;
}

.custom-caption p{
  font-size:1.2rem;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    background: #fff;
    padding: 30px 0;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.logo-track img {
    height: 50px;
    margin: 0 40px;
    flex-shrink: 0;
}

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

/* Optional: Pause on hover */
.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

.testimonial-section{
    background:var(--forest-light);
    overflow:hidden;
}

.testimonial-scroll{
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    padding-bottom:10px;
}

.testimonial-scroll::-webkit-scrollbar{
    display:none;
}

.testimonial-card{
    min-width:350px;
    max-width:350px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:20px;
    padding:25px;
    color:#fff;
    backdrop-filter:blur(10px);
    transition:0.3s;
    flex-shrink:0;
}

.testimonial-card:hover{
    transform:translateY(-5px);
}

.stars{
    color:#facc15;
    font-size:20px;
    margin-bottom:15px;
}

.user-box{
    display:flex;
    align-items:center;
    margin-top:20px;
}

.user-box img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    margin-right:15px;
}

.user-box h6{
    margin:0;
    font-weight:600;
}

.user-box span{
    color:#cbd5e1;
    font-size:14px;
}

.testimonial-buttons{
    display:flex;
    gap:10px;
}

.scroll-btn{
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#f59e0b;
    color:#fff;
    transition:0.3s;
}

.scroll-btn:hover{
    background:#ea580c;
}

.product-card-t{
    overflow:hidden;
    border-radius:20px;
    position:relative;
}

.product-card-t img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.product-card-t .content{
    padding:20px;
    color:var(--forest);
}

.contact-banner{
    background:#020617;
}

.banner-box{
    padding:60px 30px;
    border-radius:30px;
    background:linear-gradient(135deg,#f59e0b,#ea580c);
    color:#fff;
}

/* ── AUTH PAGES (LOGIN / SIGNUP) ── */
.auth-page {
  min-height: 100vh; display: flex; align-items: stretch;
  background: var(--cream);
}
.auth-left {
  flex: 1; background: linear-gradient(150deg, var(--forest-dark) 0%, var(--forest) 60%, var(--forest-light) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 48px; position: relative; overflow: hidden;
}
.auth-left::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 30%, rgba(201,168,76,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.auth-left-pattern {
  position: absolute; inset: 0; opacity: 0.035;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 24px 24px;
}
.auth-left-content { position: relative; z-index: 2; text-align: center; max-width: 360px; }
.auth-left-icon { font-size: 5rem; margin-bottom: 24px; filter: drop-shadow(0 8px 24px rgba(201,168,76,0.35)); display: block; }
.auth-left h2 { font-size: 2rem; color: var(--white); font-weight: 800; margin-bottom: 14px; }
.auth-left p { color: rgba(255,255,255,0.6); font-size: 0.92rem; line-height: 1.75; margin-bottom: 36px; }
.auth-trust-items { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.auth-trust-item { display: flex; align-items: center; gap: 12px; }
.auth-trust-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.auth-trust-item span { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.auth-right {
  width: 480px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 48px; background: var(--white);
}
.auth-form-wrap { width: 100%; max-width: 360px; }
.auth-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 40px; }
.auth-logo .logo-icon { width: 38px; height: 38px; font-size: 18px; }
.auth-title { font-size: 1.9rem; font-weight: 800; color: var(--forest); margin-bottom: 6px; }
.auth-subtitle { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 32px; line-height: 1.55; }
.auth-subtitle a { color: var(--gold); font-weight: 600; }
.auth-subtitle a:hover { color: var(--forest); }
.auth-form .form-group { margin-bottom: 20px; }
.auth-form .form-group label {
  display: block; font-size: 0.75rem; letter-spacing: 0.09em; text-transform: uppercase;
  font-weight: 600; color: var(--forest); margin-bottom: 8px;
}
.auth-form .form-group input {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--cream-dark); border-radius: 4px;
  font-family: 'Jost', sans-serif; font-size: 0.9rem; color: var(--text);
  background: var(--cream); outline: none; transition: border-color .2s, background .2s;
}
.auth-form .form-group input:focus { border-color: var(--gold); background: var(--white); }
.auth-form .form-group .input-wrap { position: relative; }
.auth-form .form-group .input-wrap svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; stroke: var(--text-muted); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; pointer-events: none;
}
.auth-form .form-group .input-wrap input { padding-left: 42px; }
.auth-form .form-group .input-wrap .eye-toggle {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; padding: 0; color: var(--text-muted);
  display: flex; align-items: center;
}
.auth-form .form-group .input-wrap .eye-toggle svg { stroke: currentColor; pointer-events: none; }
.auth-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.auth-form-footer { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.auth-form-footer label { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); cursor: pointer; }
.auth-form-footer label input[type="checkbox"] { accent-color: var(--gold); width: 15px; height: 15px; }
.auth-form-footer a { font-size: 0.82rem; color: var(--gold); font-weight: 600; }
.auth-form-footer a:hover { color: var(--forest); }
.auth-btn {
  width: 100%; background: var(--gold); color: var(--forest-dark);
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px; border-radius: 2px; border: none; cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
  font-family: 'Jost', sans-serif;
}
.auth-btn:hover { background: var(--forest); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(26,61,43,0.2); }
.auth-divider { display: flex; align-items: center; gap: 14px; margin: 24px 0; }
.auth-divider span { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.06em; white-space: nowrap; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--cream-dark); }
.auth-social-btns { display: flex; gap: 12px; }
.auth-social-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px; border: 1.5px solid var(--cream-dark); border-radius: 4px;
  font-size: 0.82rem; font-weight: 500; color: var(--text); background: var(--white);
  cursor: pointer; transition: .2s; font-family: 'Jost', sans-serif;
}
.auth-social-btn:hover { border-color: var(--gold); color: var(--forest); background: var(--gold-pale); }
.auth-terms { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 20px; line-height: 1.6; }
.auth-terms a { color: var(--gold); }
.auth-back { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 32px; cursor: pointer; width: fit-content; transition: color .2s; }
.auth-back:hover { color: var(--forest); }
.auth-back svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.password-strength { display: flex; gap: 4px; margin-top: 8px; }
.strength-bar { flex: 1; height: 3px; border-radius: 2px; background: var(--cream-dark); transition: background .3s; }
.strength-bar.weak { background: #e74c3c; }
.strength-bar.medium { background: var(--gold); }
.strength-bar.strong { background: #27ae60; }

/* ── WISHLIST PAGE ── */
.wishlist-section { background: var(--cream); }
.wishlist-header-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.wishlist-count-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-pale); border: 1px solid var(--gold);
  color: var(--brown); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; padding: 6px 16px; border-radius: 100px;
  margin-top: 12px;
}
.wishlist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.wishlist-card {
  background: var(--white); border-radius: 10px; overflow: hidden;
  border: 1px solid var(--cream-dark); position: relative;
  transition: transform .25s, box-shadow .25s;
}
.wishlist-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.wishlist-remove {
  position: absolute; top: 12px; left: 12px; z-index: 5;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: #c0392b; transition: .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.wishlist-remove:hover { background: #c0392b; color: var(--white); transform: scale(1.1); }
.wishlist-remove svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.wishlist-img {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative; overflow: hidden;
}
.wishlist-img::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(201,168,76,0.15), transparent 60%);
}
.wishlist-info { padding: 20px; }
.wishlist-info .category { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 5px; }
.wishlist-info h3 { font-size: 1rem; color: var(--forest); margin-bottom: 8px; }
.wishlist-info p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.wishlist-actions { display: flex; gap: 10px; padding-top: 14px; border-top: 1px solid var(--cream-dark); }
.wishlist-enquire {
  flex: 1; background: var(--gold); color: var(--forest-dark);
  font-weight: 700; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px; border-radius: 2px; border: none; cursor: pointer;
  transition: .2s; font-family: 'Jost', sans-serif;
}
.wishlist-enquire:hover { background: var(--forest); color: var(--white); }
.wishlist-view {
  padding: 10px 14px; border: 1.5px solid var(--forest); border-radius: 2px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--forest); background: transparent; cursor: pointer; transition: .2s;
  font-family: 'Jost', sans-serif;
}
.wishlist-view:hover { background: var(--forest); color: var(--white); }
.wishlist-empty {
  text-align: center; padding: 96px 24px;
  display: none; flex-direction: column; align-items: center; gap: 16px;
}
.wishlist-empty.show { display: flex; }
.wishlist-empty .empty-icon { font-size: 5rem; opacity: 0.4; }
.wishlist-empty h3 { font-size: 1.4rem; color: var(--forest); font-family: 'Playfair Display', serif; }
.wishlist-empty p { font-size: 0.9rem; color: var(--text-muted); max-width: 360px; line-height: 1.7; }
.wishlist-added-toast {
  position: fixed; bottom: 96px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--forest); color: var(--white); padding: 13px 24px; border-radius: 4px;
  font-size: 0.85rem; font-weight: 500; opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s; z-index: 9999;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px;
}
.wishlist-added-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.wishlist-added-toast svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── PRODUCT CARD WISHLIST HEART ── */
.product-wishlist-btn {
  position: absolute; top: 12px; left: 12px; z-index: 5;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.product-wishlist-btn:hover { background: var(--white); transform: scale(1.1); }
.product-wishlist-btn svg { width: 15px; height: 15px; stroke: var(--text-muted); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: .2s; }
.product-wishlist-btn.active svg { stroke: #e74c3c; fill: #e74c3c; }

@media (max-width: 768px) {
  .auth-page { flex-direction: column; }
  .auth-left { display: none; }
  .auth-right { width: 100%; padding: 48px 28px; min-height: 100vh; }
  .wishlist-grid { grid-template-columns: 1fr; }
  .auth-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .wishlist-grid { grid-template-columns: 1fr; }
}
