  :root {
    --cream: #F9F3E8;
    --warm-white: #FFFDF7;
    --deep-brown: #2C1A0E;
    --olive: #5C6B2E;
    --gold: #C8962A;
    --amber: #D4762A;
    --soft-tan: #E8D5B0;
    --light-sage: #E4EBDA;
  }

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

  html { scroll-behavior: smooth; }

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

  /* NAV */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 10050;
    padding: 1.2rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(249,243,232,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(200,150,42,0.2);
  }
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; color: var(--deep-brown);
    letter-spacing: 0.05em;
  }
  .logo span { color: var(--gold); font-style: italic; }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    text-decoration: none; color: var(--deep-brown);
    font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
    font-weight: 500; transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--deep-brown); color: var(--cream) !important;
    padding: 0.5rem 1.3rem; border-radius: 2px;
    transition: background 0.3s !important;
  }
  .nav-cta:hover { background: var(--gold) !important; color: var(--cream) !important; }

  /* HERO */
  #hero {
    min-height: 78svh;
    display: grid;
    /* Left text column wider, image column smaller */
    grid-template-columns: clamp(360px, 52%, 680px) 1fr;
    padding-top: 80px;
    position: relative; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse at 70% 50%, rgba(212,118,42,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 10% 80%, rgba(92,107,46,0.07) 0%, transparent 50%);
  }
  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: clamp(2rem,6%,5rem) clamp(1.5rem,4%,3.5rem) clamp(2rem,6%,5rem) clamp(2rem,9%,6rem);
    position: relative; z-index: 1;
  }
  .hero-eyebrow {
    font-size: clamp(0.65rem, 0.9vw, 0.8rem);
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.8rem;
    display: flex; align-items: center; gap: 1rem;
  }
  .hero-eyebrow::before {
    content: ''; display: inline-block;
    width: 40px; height: 1px; background: var(--gold);
  }
  h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.2vw, 5.2rem);
    line-height: 1.18; margin-bottom: 1.8rem;
    color: var(--deep-brown);
  }
  h1 em { color: var(--amber); font-style: italic; }
  .hero-sub {
    font-size: clamp(0.88rem, 1.1vw, 1.05rem);
    line-height: 1.8;
    color: rgba(44,26,14,0.7); max-width: 420px; margin-bottom: 2.5rem;
  }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--deep-brown); color: var(--cream);
    padding: 0.9rem 2.2rem; border: none; cursor: pointer;
    font-family: 'Jost', sans-serif; font-size: 0.85rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; transition: background 0.3s, transform 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--amber); transform: translateY(-2px); }
  .btn-outline {
    background: transparent; color: var(--deep-brown);
    padding: 0.9rem 2.2rem; border: 1.5px solid var(--deep-brown); cursor: pointer;
    font-family: 'Jost', sans-serif; font-size: 0.85rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; transition: all 0.3s; display: inline-block;
  }
  .btn-outline:hover { background: var(--deep-brown); color: var(--cream); }

  .hero-right {
    display: flex; align-items: stretch;
    padding: 0; position: relative; z-index: 0; overflow: hidden;
  }
  .hero-visual { width: 100%; height: 100%; min-height: 100%; position: relative; }

  /* ── SLIDESHOW ── */
  .hero-slideshow { width: 100%; height: 100%; position: relative; }
  .hero-slide {
    position: absolute; inset: 0; opacity: 0;
    transition: opacity 1s ease;
    background: linear-gradient(145deg,#C8962A,#5C3A08);
  }
  .hero-slide.active { opacity: 1; z-index: 1; }
  .hero-slide img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    animation: heroKenBurns 9s ease-in-out infinite alternate;
  }
  @keyframes heroKenBurns {
    from { transform: scale(1) translateX(0); }
    to   { transform: scale(1.07) translateX(-1%); }
  }
  /* Soft left + top + bottom blend into page cream */
  .hero-slideshow::before {
    content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background:
      linear-gradient(to right,  var(--cream) 0%, transparent 16%),
      linear-gradient(to bottom, var(--cream) 0%, transparent 10%),
      linear-gradient(to top,    var(--cream) 0%, transparent 10%);
  }
  .hero-slide-label {
    position: absolute; bottom: 2.5rem; right: 1.8rem;
    background: rgba(249,243,232,0.82); backdrop-filter: blur(8px);
    border-left: 3px solid var(--gold);
    padding: 0.45rem 0.9rem; border-radius: 0 6px 6px 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(0.8rem, 1vw, 1rem); font-style: italic;
    color: var(--deep-brown); letter-spacing: 0.04em; z-index: 3;
  }
  .hero-slide.c0 { background: linear-gradient(145deg,#C8962A,#5C3A08); }
  .hero-slide.c1 { background: linear-gradient(145deg,#E8D5B0,#8B7040); }
  .hero-slide.c2 { background: linear-gradient(145deg,#8AAF5A,#3A5015); }
  .hero-slide.c3 { background: linear-gradient(145deg,#D4762A,#7A3A08); }
  .hero-slide.c4 { background: linear-gradient(145deg,#B8C96A,#5A6A1A); }
  .hero-slide-btn {
    position: absolute; top: 50%; z-index: 4; transform: translateY(-50%);
    background: rgba(249,243,232,0.75); backdrop-filter: blur(6px);
    border: 1px solid rgba(200,150,42,0.25); border-radius: 50%;
    width: clamp(28px,3vw,36px); height: clamp(28px,3vw,36px);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1.2rem; color: var(--deep-brown);
    transition: background 0.2s, color 0.2s;
  }
  .hero-slide-btn:hover { background: var(--gold); color: #fff; }
  .hero-slide-btn.prev { left: 12px; }
  .hero-slide-btn.next { right: 12px; }
  .hero-slide-dots {
    position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 6px; z-index: 4;
  }
  .hero-slide-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(44,26,14,0.25); border: none; cursor: pointer; padding: 0;
    transition: background 0.3s, transform 0.3s;
  }
  .hero-slide-dot.active { background: var(--gold); transform: scale(1.4); }
  .float-badge {
    position: absolute; bottom: 2.5rem; left: 1.5rem;
    background: var(--warm-white); border-radius: 12px;
    padding: 0.7rem 1rem;
    box-shadow: 0 10px 30px rgba(44,26,14,0.12);
    font-size: 0.72rem; z-index: 5;
  }
  .float-badge strong { display: block; font-size: 1rem; color: var(--gold); }

  /* ── RESPONSIVE ── */
  /* Large desktop: slightly more text space */
  @media (min-width: 1400px) {
    #hero { grid-template-columns: clamp(420px, 48%, 640px) 1fr; }
  }
  /* Tablet landscape: balanced split */
  @media (max-width: 1100px) {
    #hero { grid-template-columns: 1fr 1fr; }
    h1 { font-size: clamp(1.9rem, 4.2vw, 3.2rem); }
  }
  /* Tablet portrait: stack vertically, show slideshow as banner */
  @media (max-width: 768px) {
    #hero {
      grid-template-columns: 1fr;
      grid-template-rows: auto 40vw;
      min-height: auto; padding-top: 70px;
    }
    .hero-right { display: block; height: 40vw; min-height: 220px; }
    .hero-visual { height: 100%; }
    .hero-slideshow::before {
      background:
        linear-gradient(to bottom, var(--cream) 0%, transparent 15%),
        linear-gradient(to top,    var(--cream) 0%, transparent 8%);
    }
    .hero-slide-label { font-size: 0.82rem; bottom: 1.8rem; right: 1rem; }
    .float-badge { display: none; }
  }
  /* Mobile: tighter */
  @media (max-width: 480px) {
    #hero { grid-template-rows: auto 55vw; }
    .hero-right { height: 55vw; min-height: 200px; }
    h1 { font-size: clamp(1.6rem, 8vw, 2.4rem); }
    .hero-left { padding: 1.5rem 5% 1rem; }
  }

  /* TRUST BAR */
  .trust-bar {
    background: var(--deep-brown); color: var(--cream);
    padding: 1rem 5%;
    display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap;
  }
  .trust-item {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  }
  .trust-icon { font-size: 1.1rem; }

  /* PRODUCTS */
  #products {
    padding: 7rem 8%;
    background: var(--warm-white);
  }

  /* OIL CAKES */
  #oilcakes {
    padding: 7rem 8%;
    background: var(--light-sage);
  }
  #oilcakes .section-tag { color: var(--olive); }
  .section-header { text-align: center; margin-bottom: 4rem; }
  .section-tag {
    font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem; display: block;
  }
  h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2; color: var(--deep-brown);
  }
  h2 em { font-style: italic; color: var(--amber); }
  .section-sub {
    margin-top: 1rem; font-size: 1rem;
    color: rgba(44,26,14,0.6); max-width: 500px; margin-inline: auto;
    line-height: 1.8;
  }

  .products-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  .product-card {
    background: var(--cream); border-radius: 4px;
    overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
  }
  .product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(44,26,14,0.12); }
  .product-img {
    height: 220px; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .product-bottle {
    width: 60px; height: 140px;
    border-radius: 30px 30px 5px 5px;
    position: relative;
    box-shadow: inset -8px -8px 20px rgba(0,0,0,0.15), inset 5px 5px 15px rgba(255,255,255,0.25);
  }
  .product-bottle::after {
    content: ''; position: absolute;
    top: 8%; left: 20%; width: 20%; height: 35%;
    background: rgba(255,255,255,0.3); border-radius: 50%;
    filter: blur(4px);
  }
  .cap {
    width: 30px; height: 25px;
    border-radius: 5px 5px 0 0;
    position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  }
  .p-coconut .product-bottle { background: linear-gradient(160deg, #E2C97E, #B8942A); }
  .p-coconut .cap { background: #8B6914; }
  .p-sesame .product-bottle { background: linear-gradient(160deg, #C4A265, #8B6235); }
  .p-sesame .cap { background: #5C3D1A; }
  .p-castor .product-bottle { background: linear-gradient(160deg, #8BAF7A, #4A7A35); }
  .p-castor .cap { background: #2A5015; }
  .p-groundnut .product-bottle { background: linear-gradient(160deg, #D4A855, #A07020); }
  .p-groundnut .cap { background: #7A5210; }
  .p-neem .product-bottle { background: linear-gradient(160deg, #7AAF5A, #3A7A20); }
  .p-neem .cap { background: #1A5A08; }

  .product-info { padding: 1.2rem; }
  .product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; margin-bottom: 0.4rem;
  }
  .product-info p { font-size: 0.8rem; color: rgba(44,26,14,0.6); line-height: 1.6; }
  .product-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.8rem 1.2rem; border-top: 1px solid var(--soft-tan);
  }
  .price { font-size: 1rem; font-weight: 500; color: var(--deep-brown); }
  .price small { font-size: 0.7rem; color: rgba(44,26,14,0.5); }
  .add-btn {
    background: var(--deep-brown); color: var(--cream);
    border: none; padding: 0.4rem 0.9rem;
    font-size: 0.75rem; letter-spacing: 0.08em;
    text-transform: uppercase; cursor: pointer;
    transition: background 0.2s; border-radius: 2px;
    font-family: 'Jost', sans-serif;
  }
  .add-btn:hover { background: var(--amber); }
  .add-btn:disabled { background: rgba(44,26,14,0.35); cursor: not-allowed; }
  .volume-options { display: flex; flex-wrap: wrap; gap: 0.35rem; }
  .volume-option-btn {
    border: 1px solid var(--soft-tan);
    background: var(--cream);
    color: var(--deep-brown);
    border-radius: 14px;
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    transition: all 0.2s;
  }
  .volume-option-btn.active {
    background: rgba(200,150,42,0.18);
    border-color: var(--gold);
    color: var(--deep-brown);
    font-weight: 600;
  }
  .volume-option-btn:disabled {
    background: #f5f0e6;
    color: rgba(44,26,14,0.45);
    border-color: #e6ddcf;
    cursor: not-allowed;
  }
  .card-qty-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(92,107,46,0.08);
    border-radius: 6px;
    padding: 0.18rem 0.35rem;
  }
  .card-qty-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    width: 22px;
    height: 22px;
    font-size: 1rem;
    color: var(--deep-brown);
  }
  .card-qty-value {
    min-width: 18px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
  }

  /* ABOUT */
  #about {
    padding: 7rem 8%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
    align-items: center; background: var(--cream);
  }
  .about-visual {
    position: relative; height: 500px;
  }
  .about-block {
    border-radius: 4px; position: absolute;
    box-shadow: 0 20px 60px rgba(44,26,14,0.15);
  }
  .ab1 {
    width: 65%; height: 75%;
    background: linear-gradient(145deg, var(--olive), #3A5015);
    top: 0; left: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .ab1-inner { text-align: center; color: rgba(255,255,255,0.9); }
  .ab1-inner .big-num {
    font-family: 'Playfair Display', serif;
    font-size: 4rem; line-height: 1; display: block;
  }
  .ab1-inner span { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; }
  .ab2 {
    width: 55%; height: 50%;
    background: var(--soft-tan);
    bottom: 0; right: 0;
    display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  }
  .ab2 p {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-style: italic;
    color: var(--deep-brown); line-height: 1.7; text-align: center;
  }
  .about-text h2 { margin-bottom: 1.5rem; }
  .about-text p { font-size: 0.97rem; line-height: 1.9; color: rgba(44,26,14,0.7); margin-bottom: 1.2rem; }
  .about-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
    margin-top: 2rem;
  }
  .stat { text-align: center; padding: 1.2rem; background: var(--warm-white); border-radius: 4px; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem; color: var(--gold); display: block;
  }
  .stat-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(44,26,14,0.6); }

  /* PRICING */
  #pricing {
    padding: 7rem 8%;
    background: var(--light-sage);
  }
  .pricing-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem; margin-top: 3rem;
  }
  .price-card {
    background: var(--warm-white); padding: 2rem 1.5rem;
    border-radius: 4px; text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1.5px solid transparent;
  }
  .price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(44,26,14,0.1); }
  .price-card.featured {
    background: var(--deep-brown); color: var(--cream);
    border-color: var(--gold);
  }
  .price-card.featured h3,
  .price-card.featured .price-amount,
  .price-card.featured ul { color: var(--cream); }
  .price-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; margin-bottom: 0.3rem;
  }
  .price-size { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.5rem; }
  .price-card.featured .price-size { color: var(--soft-tan); }
  .price-amount { font-size: 2.2rem; font-weight: 500; color: var(--deep-brown); }
  .price-amount sup { font-size: 1rem; vertical-align: super; }
  .price-per { font-size: 0.7rem; color: rgba(44,26,14,0.5); }
  .price-card.featured .price-per { color: rgba(255,255,255,0.5); }
  .price-divider { width: 40px; height: 1px; background: var(--soft-tan); margin: 1.2rem auto; }
  .price-card.featured .price-divider { background: rgba(255,255,255,0.2); }
  .price-card ul { list-style: none; margin-bottom: 1.5rem; }
  .price-card ul li { font-size: 0.82rem; padding: 0.35rem 0; color: rgba(44,26,14,0.7); }
  .price-card.featured ul li { color: rgba(255,255,255,0.8); }
  .price-card ul li::before { content: '✓ '; color: var(--gold); font-weight: 500; }
  .price-card.featured ul li::before { color: var(--soft-tan); }

  /* TESTIMONIALS */
  #testimonials {
    padding: 7rem 8%;
    background: var(--deep-brown);
    overflow: hidden;
  }
  #testimonials .section-tag { color: var(--soft-tan); }
  #testimonials h2 { color: var(--cream); }
  #testimonials h2 em { color: var(--gold); }
  #testimonials .section-sub { color: rgba(255,255,255,0.65); }
  .testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem; margin-top: 3rem;
  }
  .testi-card {
    background: rgba(255,255,255,0.06); padding: 2rem;
    border-radius: 4px; border: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s;
  }
  .testi-card:hover { background: rgba(255,255,255,0.1); }
  .stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 3px; }
  .testi-text {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-style: italic;
    color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 1.5rem;
  }
  .testi-author { display: flex; align-items: center; gap: 0.8rem; }
  .testi-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 1rem;
    color: var(--cream); flex-shrink: 0;
  }
  .testi-name { font-size: 0.85rem; font-weight: 500; color: var(--cream); }
  .testi-loc { font-size: 0.72rem; color: rgba(255,255,255,0.45); }

  /* CONTACT */
  #contact {
    padding: 7rem 8%;
    background: var(--cream);
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
  }
  .contact-info h2 { margin-bottom: 1.2rem; }
  .contact-info p { font-size: 0.97rem; line-height: 1.9; color: rgba(44,26,14,0.7); margin-bottom: 2rem; }
  .contact-details { display: flex; flex-direction: column; gap: 1rem; }
  .contact-item { display: flex; gap: 1rem; align-items: flex-start; }
  .contact-icon {
    width: 36px; height: 36px; background: var(--soft-tan);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; flex-shrink: 0;
  }
  .contact-item-text strong { display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
  .contact-item-text span { font-size: 0.9rem; color: rgba(44,26,14,0.7); }

  .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-group label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(44,26,14,0.6); }
  .form-group input,
  .form-group textarea,
  .form-group select {
    background: var(--warm-white); border: 1.5px solid var(--soft-tan);
    padding: 0.8rem 1rem; font-family: 'Jost', sans-serif;
    font-size: 0.9rem; color: var(--deep-brown);
    transition: border-color 0.2s; outline: none; border-radius: 2px;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus { border-color: var(--gold); }
  .form-group textarea { resize: vertical; min-height: 120px; }

  /* BLOG */
  #blog { padding: 6rem 8%; background: var(--warm-white); }
  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.5rem; }
  .blog-card { background: var(--cream); border-radius: 8px; overflow: hidden; border: 1px solid var(--soft-tan); transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; }
  .blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(44,26,14,0.1); }
  .blog-card-img { width: 100%; height: 180px; object-fit: cover; background: var(--light-sage); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
  .blog-card-body { padding: 1.2rem; }
  .blog-tag { display: inline-block; background: var(--soft-tan); color: var(--deep-brown); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 20px; margin-bottom: 0.6rem; }
  .blog-card-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--deep-brown); margin-bottom: 0.5rem; line-height: 1.4; }
  .blog-card-summary { font-size: 0.83rem; color: rgba(44,26,14,0.6); line-height: 1.7; }
  .blog-card-date { font-size: 0.73rem; color: rgba(44,26,14,0.4); margin-top: 0.8rem; }
  /* Blog post modal */
  #blogModal { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 10100; display: none; align-items: flex-start; justify-content: center; overflow-y: auto; padding: 2rem 1rem; }
  #blogModal.open { display: flex; }
  #blogModalBody { background: var(--warm-white); border-radius: 8px; width: 780px; max-width: 100%; padding: 2rem; position: relative; margin: auto; }
  #blogModalBody img.cover { width: 100%; height: 260px; object-fit: cover; border-radius: 6px; margin-bottom: 1.5rem; }
  #blogModalBody .blog-content { font-size: 0.95rem; line-height: 1.9; color: rgba(44,26,14,0.8); white-space: pre-wrap; }

  /* ── SERVICES ── */
  #services { padding: 6rem 8%; background: var(--cream); }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.5rem; }
  @media(max-width:900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
  @media(max-width:580px) { .services-grid { grid-template-columns: 1fr; } }
  .service-card {
    background: var(--warm-white); border-radius: 10px; overflow: hidden;
    border: 1px solid var(--soft-tan); transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer; display: flex; flex-direction: column;
  }
  .service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(44,26,14,0.1); }
  .service-card-thumb {
    width: 100%; height: 190px; object-fit: cover;
    background: var(--light-sage); display: flex;
    align-items: center; justify-content: center; font-size: 3.5rem;
  }
  .service-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .service-card-body { padding: 1.2rem; flex: 1; display: flex; flex-direction: column; }
  .service-card-icon { font-size: 1.6rem; margin-bottom: 0.5rem; }
  .service-card-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--deep-brown); margin-bottom: 0.5rem; line-height: 1.4; }
  .service-card-desc { font-size: 0.83rem; color: rgba(44,26,14,0.6); line-height: 1.7; flex: 1; }
  .service-card-cta { margin-top: 0.9rem; font-size: 0.8rem; color: var(--olive); font-weight: 600; letter-spacing: 0.04em; }

  /* Service detail modal */
  #serviceModal { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 10100; display: none; align-items: flex-start; justify-content: center; overflow-y: auto; padding: 2rem 1rem; }
  #serviceModal.open { display: flex; }
  #serviceModalBody {
    background: var(--warm-white); border-radius: 10px;
    width: 820px; max-width: 100%; padding: 2rem;
    position: relative; margin: auto;
  }
  /* Image gallery inside modal */
  .service-gallery {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.7rem; margin-bottom: 1.5rem;
  }
  .service-gallery img {
    width: 100%; height: 160px; object-fit: cover;
    border-radius: 6px; cursor: pointer; transition: opacity 0.2s;
  }
  .service-gallery img:hover { opacity: 0.85; }
  .service-gallery img:first-child {
    grid-column: 1 / -1; height: 260px;
  }
  /* Phone prefix input */
  .phone-input-wrap { display: flex; align-items: stretch; border: 1.5px solid var(--soft-tan); border-radius: 2px; overflow: hidden; background: var(--warm-white); transition: border-color 0.2s; }
  .phone-input-wrap:focus-within { border-color: var(--gold); }
  .phone-prefix { padding: 0.8rem 0.8rem; background: var(--soft-tan); color: var(--deep-brown); font-size: 0.9rem; font-weight: 600; white-space: nowrap; border: none; }
  .phone-input-wrap input { flex: 1; border: none; outline: none; padding: 0.8rem 0.8rem; font-family: 'Jost', sans-serif; font-size: 0.9rem; background: transparent; color: var(--deep-brown); }

  /* FOOTER */
  footer {
    background: #1A0D05; color: rgba(255,255,255,0.5);
    padding: 2.5rem 8%;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
  }
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; color: var(--cream);
  }
  .footer-logo span { color: var(--gold); font-style: italic; }
  footer p { font-size: 0.78rem; }
  .footer-links { display: flex; gap: 1.5rem; }
  .footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.78rem; transition: color 0.2s; }
  .footer-links a:hover { color: var(--gold); }

  /* ANIMATIONS */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow { animation: fadeInUp 0.8s ease both; }
  h1 { animation: fadeInUp 0.8s ease 0.15s both; }
  .hero-sub { animation: fadeInUp 0.8s ease 0.3s both; }
  .hero-btns { animation: fadeInUp 0.8s ease 0.45s both; }
  .hero-right { animation: fadeInUp 0.8s ease 0.2s both; }

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

  /* RESPONSIVE */
  @media (max-width: 900px) {
    #about { grid-template-columns: 1fr; }
    .about-visual { display: none; }
    #contact { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .blog-grid { grid-template-columns: 1fr; }
  }

  /* ── LOGIN MODAL ── */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(20,10,3,0.75); backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .modal-overlay.active { opacity: 1; pointer-events: all; }
  .modal {
    background: var(--warm-white); width: 100%; max-width: 420px;
    border-radius: 6px; padding: 2.5rem;
    box-shadow: 0 40px 100px rgba(20,10,3,0.3);
    transform: translateY(20px); transition: transform 0.3s;
    position: relative;
  }
  .modal-overlay.active .modal { transform: translateY(0); }
  .modal-close {
    position: absolute; top: 1rem; right: 1.2rem;
    background: none; border: none; font-size: 1.4rem;
    cursor: pointer; color: rgba(44,26,14,0.4);
    transition: color 0.2s;
  }
  .modal-close:hover { color: var(--deep-brown); }
  .modal-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; color: var(--deep-brown);
    margin-bottom: 0.3rem;
  }
  .modal-logo span { color: var(--gold); font-style: italic; }
  .modal-subtitle { font-size: 0.8rem; color: rgba(44,26,14,0.5); margin-bottom: 2rem; }
  .modal-tabs { display: flex; gap: 0; margin-bottom: 1.8rem; border-bottom: 2px solid var(--soft-tan); }
  .modal-tab {
    flex: 1; padding: 0.6rem; background: none; border: none;
    font-family: 'Jost', sans-serif; font-size: 0.82rem;
    letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
    color: rgba(44,26,14,0.4); border-bottom: 2px solid transparent;
    margin-bottom: -2px; transition: all 0.2s;
  }
  .modal-tab.active { color: var(--deep-brown); border-bottom-color: var(--gold); }
  .modal-form { display: flex; flex-direction: column; gap: 1rem; }
  .modal-form input {
    background: var(--cream); border: 1.5px solid var(--soft-tan);
    padding: 0.75rem 1rem; font-family: 'Jost', sans-serif;
    font-size: 0.9rem; color: var(--deep-brown);
    outline: none; border-radius: 3px; transition: border-color 0.2s;
  }
  .modal-form input:focus { border-color: var(--gold); }
  .modal-form .btn-primary { width: 100%; padding: 0.9rem; text-align: center; border: none; }
  .modal-error {
    background: #fef2f2; border: 1px solid #fca5a5;
    color: #dc2626; padding: 0.6rem 0.8rem;
    font-size: 0.8rem; border-radius: 3px; display: none;
  }
  .modal-error.show { display: block; }
  .modal-switch { font-size: 0.78rem; text-align: center; color: rgba(44,26,14,0.5); margin-top: 0.5rem; }
  .modal-switch a { color: var(--gold); cursor: pointer; text-decoration: underline; }

  /* ══ MODERN ADMIN PANEL ══ */
  .admin-overlay {
    position: fixed; inset: 0; z-index: 900;
    background: #f4f0e8; overflow-y: auto; display: none;
  }
  .admin-overlay.active { display: block; }

  .admin-header {
    background: var(--deep-brown); color: var(--cream);
    padding: 0.85rem 2rem; display: flex;
    justify-content: space-between; align-items: center;
    position: sticky; top: 0; z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  .admin-header-left { display: flex; align-items: center; gap: 1rem; }
  .admin-logo { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; }
  .admin-logo span { color: var(--gold); font-style: italic; }
  .admin-badge {
    background: var(--gold); color: var(--deep-brown);
    font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 0.2rem 0.6rem; border-radius: 20px; font-weight: 600;
  }
  .admin-header-right { display: flex; align-items: center; gap: 0.8rem; }
  .admin-user { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

  /* ── Two-column layout ── */
  .admin-layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 1.5rem;
    max-width: 1300px;
    margin: 2rem auto;
    padding: 0 1.5rem 3rem;
  }
  @media(max-width:900px) {
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { flex-direction: row !important; flex-wrap: wrap; }
  }

  /* ── Sidebar ── */
  .admin-sidebar { display: flex; flex-direction: column; gap: 0.35rem; }
  .admin-profile-card {
    background: var(--deep-brown); color: var(--cream);
    border-radius: 12px; padding: 1.3rem 1.2rem;
    text-align: center; margin-bottom: 0.8rem;
  }
  .admin-avatar {
    width: 54px; height: 54px; border-radius: 50%;
    background: var(--gold); color: var(--deep-brown);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; font-weight: 700; margin: 0 auto 0.7rem;
    font-family: 'Playfair Display', serif;
  }
  .admin-profile-name { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 0.15rem; }
  .admin-profile-role { font-size: 0.7rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.1em; }

  .admin-nav-item {
    display: flex; align-items: center; gap: 0.7rem;
    padding: 0.72rem 1rem; border-radius: 8px;
    cursor: pointer; font-size: 0.88rem; font-weight: 500;
    color: var(--deep-brown); background: transparent;
    border: none; width: 100%; text-align: left;
    font-family: 'Jost', sans-serif;
    transition: background 0.15s, color 0.15s;
  }
  .admin-nav-item:hover { background: rgba(44,26,14,0.07); }
  .admin-nav-item.active { background: var(--deep-brown); color: var(--cream); }
  .admin-nav-item .nav-icon { font-size: 1rem; width: 22px; text-align: center; }
  .admin-nav-divider { height: 1px; background: rgba(44,26,14,0.1); margin: 0.4rem 0; }

  /* ── Main content ── */
  .admin-main { min-width: 0; }
  .admin-tab-panel { display: none; }
  .admin-tab-panel.active { display: block; }

  /* ── Cards ── */
  .admin-card {
    background: white; border-radius: 12px;
    padding: 1.4rem; margin-bottom: 1.2rem;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07);
  }
  .admin-card-title {
    font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600;
    color: var(--deep-brown); margin-bottom: 1.2rem; padding-bottom: 0.7rem;
    border-bottom: 1px solid #f0ebe0;
    display: flex; justify-content: space-between; align-items: center; gap: 0.8rem; flex-wrap: wrap;
  }

  /* ── Stats row ── */
  .admin-stats-row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1rem; margin-bottom: 1.4rem;
  }
  @media(max-width:600px) { .admin-stats-row { grid-template-columns: repeat(2,1fr); } }
  .admin-stat-card {
    background: white; border-radius: 12px; padding: 1.1rem 1.3rem;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07); border-top: 3px solid var(--gold);
  }
  .admin-stat-card .label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(44,26,14,0.5); margin-bottom: 0.4rem; }
  .admin-stat-card .value { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--deep-brown); }

  /* ── Section title (inside cards) ── */
  .admin-section-title {
    font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 600;
    color: var(--deep-brown); margin-bottom: 0.9rem; padding-bottom: 0.5rem;
    border-bottom: 1px solid #f0ebe0;
    display: flex; justify-content: space-between; align-items: center;
  }

  /* ── Tables ── */
  .admin-table-wrap { background: white; border-radius: 8px; overflow: hidden; margin-bottom: 1rem; border: 1px solid #f0ebe0; }
  table { width: 100%; border-collapse: collapse; }
  th {
    background: var(--deep-brown); color: var(--cream);
    padding: 0.7rem 1rem; font-size: 0.7rem;
    letter-spacing: 0.12em; text-transform: uppercase; text-align: left;
  }
  td { padding: 0.8rem 1rem; font-size: 0.88rem; border-bottom: 1px solid #f0ebe0; vertical-align: middle; }
  tr:last-child td { border-bottom: none; }
  tr:hover td { background: #faf7f2; }

  /* ── Misc ── */
  .stock-badge { padding: 0.25rem 0.7rem; border-radius: 20px; font-size: 0.72rem; letter-spacing: 0.08em; font-weight: 500; }
  .stock-in  { background: #dcfce7; color: #166534; }
  .stock-low { background: #fef9c3; color: #854d0e; }
  .stock-out { background: #fee2e2; color: #991b1b; }

  .editable-input {
    background: var(--cream); border: 1.5px solid var(--soft-tan);
    padding: 0.3rem 0.6rem; font-family: 'Jost', sans-serif;
    font-size: 0.85rem; color: var(--deep-brown);
    border-radius: 4px; width: 90px; transition: border-color 0.2s;
  }
  .editable-input:focus { outline: none; border-color: var(--gold); }

  .icon-btn { background: none; border: none; cursor: pointer; font-size: 1rem; padding: 0.2rem 0.4rem; border-radius: 3px; transition: background 0.2s; }
  .icon-btn:hover { background: var(--soft-tan); }

  .add-product-form {
    background: #faf7f2; padding: 1.2rem; border-radius: 8px; margin-bottom: 1.2rem;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr auto; gap: 0.8rem; align-items: end;
  }
  @media(max-width:700px) { .add-product-form { grid-template-columns: 1fr 1fr; } }
  .add-product-form .form-group { display: flex; flex-direction: column; gap: 0.3rem; }
  .add-product-form label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(44,26,14,0.5); }
  .add-product-form input, .add-product-form select {
    background: white; border: 1.5px solid var(--soft-tan); padding: 0.6rem 0.8rem;
    font-family: 'Jost', sans-serif; font-size: 0.85rem; color: var(--deep-brown);
    border-radius: 6px; outline: none; transition: border-color 0.2s;
  }
  .add-product-form input:focus, .add-product-form select:focus { border-color: var(--gold); }

  /* ── Inventory sub-tabs ── */
  .inv-tab-bar { display: flex; border-bottom: 2px solid #f0ebe0; margin-bottom: 1.2rem; }
  .inv-tab-btn {
    padding: 0.6rem 1.4rem; border: none; border-bottom: 3px solid transparent;
    background: transparent; font-family: 'Jost', sans-serif; font-size: 0.88rem;
    font-weight: 400; color: rgba(44,26,14,0.55); cursor: pointer; margin-bottom: -2px; transition: all 0.15s;
  }
  .inv-tab-btn.active { border-bottom-color: var(--gold); font-weight: 600; color: var(--deep-brown); }

  /* ── Order filter chips ── */
  .order-chip {
    padding: 0.3rem 0.85rem; border-radius: 20px; border: 1.5px solid var(--soft-tan);
    background: white; font-family: 'Jost', sans-serif; font-size: 0.78rem;
    cursor: pointer; color: rgba(44,26,14,0.65); transition: all 0.18s;
  }
  .order-chip:hover { border-color: var(--gold); color: var(--deep-brown); }
  .order-chip.active { background: var(--deep-brown); color: var(--cream); border-color: var(--deep-brown); }

  /* ── Order status pills ── */
  .os-pill { display: inline-block; padding: 0.22rem 0.65rem; border-radius: 20px; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.04em; white-space: nowrap; }
  .os-new        { background:#FFF3CD; color:#856404; }
  .os-processing { background:#DBEAFE; color:#1E40AF; }
  .os-shipped    { background:#D1FAE5; color:#065F46; }
  .os-outfordelivery { background:#FDE68A; color:#78350F; }
  .os-delivered  { background:#BBF7D0; color:#14532D; }
  .os-cancelled  { background:#FEE2E2; color:#991B1B; }
  .os-initiated  { background:#F3E8FF; color:#6B21A8; }
  .os-pending    { background:#FEF9C3; color:#713F12; }
  .os-completed  { background:#D1FAE5; color:#065F46; }

  /* ── Order detail drawer ── */
  #orderDrawer {
    position: fixed; top: 0; right: -520px; width: 500px; max-width: 96vw;
    height: 100vh; background: var(--warm-white); z-index: 12000;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15); transition: right 0.3s ease;
    overflow-y: auto; display: flex; flex-direction: column;
  }
  #orderDrawer.open { right: 0; }
  #orderDrawerBackdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.35); z-index: 11999; display: none; }
  #orderDrawerBackdrop.open { display: block; }

  /* ── CUSTOMER DASHBOARD ── */
  /* ══ MODERN MY ACCOUNT ══ */
  .customer-overlay {
    position: fixed; inset: 0; z-index: 900;
    background: #f4f0e8; overflow-y: auto;
    display: none;
  }
  .customer-overlay.active { display: block; }

  /* Top nav bar */
  .customer-header {
    background: var(--deep-brown); color: var(--cream);
    padding: 0.85rem 2rem; display: flex;
    justify-content: space-between; align-items: center;
    position: sticky; top: 0; z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }

  /* Two-column layout: sidebar + main */
  .customer-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1.5rem 3rem;
  }
  @media(max-width:768px) {
    .customer-layout { grid-template-columns: 1fr; }
    .customer-sidebar { display: flex; flex-direction: row; flex-wrap: wrap; gap: 0.5rem; }
  }

  /* Sidebar */
  .customer-sidebar {
    display: flex; flex-direction: column; gap: 0.4rem;
  }
  .customer-profile-card {
    background: var(--deep-brown); color: var(--cream);
    border-radius: 12px; padding: 1.5rem 1.2rem;
    text-align: center; margin-bottom: 0.8rem;
  }
  .customer-avatar {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--gold); color: var(--deep-brown);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; font-weight: 700;
    margin: 0 auto 0.8rem;
    font-family: 'Playfair Display', serif;
  }
  .customer-profile-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 600;
    margin-bottom: 0.2rem;
  }
  .customer-profile-email {
    font-size: 0.75rem; opacity: 0.65;
    word-break: break-all;
  }
  .customer-nav-item {
    display: flex; align-items: center; gap: 0.7rem;
    padding: 0.75rem 1rem; border-radius: 8px;
    cursor: pointer; font-size: 0.88rem; font-weight: 500;
    color: var(--deep-brown); background: transparent;
    border: none; width: 100%; text-align: left;
    transition: background 0.15s, color 0.15s;
  }
  .customer-nav-item:hover { background: rgba(44,26,14,0.07); }
  .customer-nav-item.active {
    background: var(--deep-brown); color: var(--cream);
  }
  .customer-nav-item .nav-icon { font-size: 1rem; width: 22px; text-align: center; }
  .customer-nav-divider {
    height: 1px; background: rgba(44,26,14,0.1);
    margin: 0.4rem 0;
  }

  /* Main content panels */
  .customer-main { min-width: 0; }
  .customer-tab-panel { display: none; }
  .customer-tab-panel.active { display: block; }

  /* Panel cards */
  .account-card {
    background: white; border-radius: 12px;
    padding: 1.5rem; margin-bottom: 1.2rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  }
  .account-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; font-weight: 600;
    color: var(--deep-brown); margin-bottom: 1.2rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid #f0ebe0;
    display: flex; align-items: center; gap: 0.5rem;
  }

  /* Profile info rows */
  .profile-info-row {
    display: flex; align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f4ec;
    gap: 1rem;
  }
  .profile-info-row:last-child { border-bottom: none; }
  .profile-info-label {
    font-size: 0.78rem; text-transform: uppercase;
    letter-spacing: 0.07em; color: rgba(44,26,14,0.45);
    font-weight: 600; min-width: 90px;
  }
  .profile-info-value {
    font-size: 0.92rem; color: var(--deep-brown); flex: 1;
  }

  /* Edit form */
  .edit-field-group { margin-bottom: 1rem; }
  .edit-field-label {
    display: block; font-size: 0.78rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.07em;
    color: rgba(44,26,14,0.5); margin-bottom: 0.4rem;
  }
  .edit-field-input {
    width: 100%; padding: 0.65rem 0.9rem;
    border: 1.5px solid #e8e0d0; border-radius: 8px;
    font-family: 'Jost', sans-serif; font-size: 0.9rem;
    color: var(--deep-brown); background: #faf7f2;
    outline: none; transition: border-color 0.15s;
    box-sizing: border-box;
  }
  .edit-field-input:focus { border-color: var(--olive); background: white; }

  /* Modern order cards */
  .order-card {
    background: white; border-radius: 12px;
    padding: 1.2rem 1.4rem; margin-bottom: 1rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    border: 1px solid #f0ebe0;
    transition: box-shadow 0.15s;
  }
  .order-card:hover { box-shadow: 0 3px 12px rgba(0,0,0,0.1); }
  .order-card .order-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.6rem; flex-wrap: wrap; gap: 0.4rem; }
  .order-card .order-id { font-size: 0.75rem; letter-spacing: 0.1em; color: rgba(44,26,14,0.4); font-weight: 600; text-transform: uppercase; }
  .order-card .order-status { font-size: 0.72rem; font-weight: 500; }
  .order-card .order-items { font-size: 0.9rem; color: var(--deep-brown); margin-bottom: 0.3rem; }
  .order-card .order-total { font-size: 0.85rem; color: rgba(44,26,14,0.6); }

  /* Stats row */
  .account-stats-row {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.2rem;
  }
  @media(max-width:500px) { .account-stats-row { grid-template-columns: 1fr 1fr; } }
  .account-stat-box {
    background: white; border-radius: 12px; padding: 1.1rem;
    text-align: center; box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  }
  .account-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 700; color: var(--deep-brown);
  }
  .account-stat-label {
    font-size: 0.72rem; text-transform: uppercase;
    letter-spacing: 0.07em; color: rgba(44,26,14,0.45);
    margin-top: 0.2rem;
  }
  .nav-account-btn {
    background: var(--gold); color: var(--deep-brown);
    border: none; padding: 0.45rem 1.1rem; border-radius: 2px;
    font-family: 'Jost', sans-serif; font-size: 0.78rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; transition: background 0.2s; font-weight: 500;
  }
  .nav-account-btn:hover { background: var(--amber); color: var(--cream); }

    /* ── ORDER MANAGEMENT ── */
    .order-status-badge {
    display: inline-flex;            /* use inline-flex so we can center contents */
    align-items: center;             /* center icon/text vertically */
    justify-content: center;         /* center horizontally when there's extra width */
    padding: 0.35rem 0.85rem;        /* comfortable padding */
    border-radius: 20px;
    font-size: 0.75rem;              /* slightly smaller to fit nicely */
    font-weight: 600;                /* make status readable */
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;                  /* prevent extra vertical offset */
    vertical-align: middle;          /* align with surrounding text */
    min-width: 110px;                /* provide consistent width for layout */
    text-align: center;
    }
    .order-status-badge.new { background: #FFE5B4; color: #D97706; }
    .order-status-badge.processing { background: #DBEAFE; color: #0284C7; }
    .order-status-badge.shipped { background: #D1FAE5; color: #059669; }
    .order-status-badge.out-for-delivery { background: #FCD34D; color: #B45309; }
    .order-status-badge.delivered { background: #86EFAC; color: #16A34A; }
    .order-status-badge.cancelled { background: #FECACA; color: #DC2626; }

    /* ensure order-meta Row centers its items */
    .order-card .order-meta { display:flex; justify-content:space-between; align-items:center; gap:1rem; }

  /* ── Order status timeline (horizontal stepper) ── */
  .order-timeline {
    display: flex;
    align-items: flex-start;
    padding: 1rem 0 0.5rem;
    overflow-x: auto;
    gap: 0;
  }
  .order-timeline-step {
    display: flex; flex-direction: column; align-items: center;
    flex: 1; min-width: 64px; position: relative;
  }
  /* Connector line: runs from center of this circle to center of next */
  .order-timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 16px; /* half of circle height (32px/2) */
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e8dcc8;
    z-index: 0;
  }
  .order-timeline-step.step-done:not(:last-child)::after {
    background: var(--gold);
  }
  .order-timeline-circle {
    width: 32px; height: 32px; border-radius: 50%;
    background: #f0ebe0; border: 2px solid #d4c4a0;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; position: relative; z-index: 1;
    transition: background 0.2s, border-color 0.2s;
    flex-shrink: 0;
  }
  .order-timeline-circle.done {
    background: var(--gold); border-color: var(--gold);
    color: white;
  }
  .order-timeline-circle.current {
    background: var(--deep-brown); border-color: var(--deep-brown);
    color: white;
    box-shadow: 0 0 0 3px rgba(200,150,42,0.25);
  }
  .order-timeline-label {
    font-size: 0.65rem; text-align: center; margin-top: 0.45rem;
    color: rgba(44,26,14,0.5); line-height: 1.3;
    max-width: 62px; word-break: break-word;
  }
  .order-timeline-label.label-done { color: var(--gold); font-weight: 600; }
  .order-timeline-label.label-current { color: var(--deep-brown); font-weight: 700; }

  .order-details-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem; margin-top: 1rem;
  }
  .order-detail-item {
    background: var(--light-sage); padding: 0.8rem;
    border-radius: 4px;
  }
  .order-detail-label {
    font-size: 0.7rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(44,26,14,0.5);
    margin-bottom: 0.3rem;
  }
  .order-detail-value {
    font-size: 0.95rem; color: var(--deep-brown);
    font-weight: 500;
  }

  .admin-orders-table {
    width: 100%; border-collapse: collapse;
  }
  .admin-orders-table tr { border-bottom: 1px solid var(--soft-tan); }
  .admin-orders-table th {
    background: var(--light-sage); padding: 0.8rem;
    text-align: left; font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
  }
  .admin-orders-table td {
    padding: 0.8rem; font-size: 0.9rem;
  }
  .admin-orders-table td:last-child {
    display: flex; gap: 0.4rem; flex-wrap: wrap;
  }

  /* ── CART TOAST ── */
  .toast {
    position: fixed; bottom: 2rem; right: 2rem;
    background: var(--deep-brown); color: var(--cream);
    padding: 1rem 1.5rem; border-radius: 4px;
    font-size: 0.85rem; z-index: 999;
    transform: translateY(100px); opacity: 0;
    transition: all 0.4s; border-left: 3px solid var(--gold);
  }
  .toast.show { transform: translateY(0); opacity: 1; }

  /* ── STAR RATING ── */
  .star-btn { color: #d4a017; transition: color 0.1s; user-select: none; line-height:1; }
  .star-btn.filled { color: var(--gold); }
  .star-btn:hover { color: var(--gold); transform: scale(1.15); }

  /* ── REVIEW CARD ── */
  .review-card {
    background: var(--cream); border: 1px solid var(--soft-tan);
    border-radius: 10px; padding: 1.2rem; display: flex;
    flex-direction: column; gap: 0.6rem; transition: box-shadow 0.2s;
  }
  .review-card:hover { box-shadow: 0 4px 16px rgba(44,26,14,0.08); }
  .review-stars { color: var(--gold); font-size: 1rem; letter-spacing:0.05em; }
  .review-title { font-weight: 600; font-size: 0.92rem; color: var(--deep-brown); }
  .review-body { font-size: 0.85rem; color: rgba(44,26,14,0.72); line-height: 1.7; }
  .review-meta { display:flex; justify-content:space-between; align-items:center; font-size:0.75rem; color: rgba(44,26,14,0.45); margin-top:0.2rem; }
  .review-product-tag { background: var(--light-sage); color: var(--olive); padding: 0.15rem 0.6rem; border-radius: 20px; font-size: 0.72rem; font-weight: 600; }
  .review-pending-badge { background:#fef3c7; color:#92400e; padding:0.15rem 0.55rem; border-radius:4px; font-size:0.72rem; font-weight:600; }
  .review-approved-badge { background:#d1fae5; color:#065f46; padding:0.15rem 0.55rem; border-radius:4px; font-size:0.72rem; font-weight:600; }

  /* Soft UI tweaks for cart & account */
  #navCartBtn { background: rgba(92,107,46,0.06); border-radius: 12px; padding: 0.45rem 0.7rem; border: 1px solid rgba(92,107,46,0.06); transition: transform 0.12s, box-shadow 0.12s; position: relative; z-index: 10051; cursor: pointer; }
  #navCartBtn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(92,107,46,0.06); }
  .nav-account-btn { border-radius: 10px; box-shadow: 0 6px 18px rgba(44,26,14,0.06); }
  #accountDropdown { border-radius: 10px; min-width:200px; }

  /* ── CART DRAWER ── */
  #cartDrawer {
    position: fixed; top: 0; right: -480px; width: 440px; max-width: 96vw;
    height: 100vh; background: var(--warm-white); z-index: 10050;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15); transition: right 0.3s ease;
    display: flex; flex-direction: column;
  }
  #cartDrawer.open { right: 0; }
  #cartDrawerBackdrop {
    position: fixed; inset: 0; background: rgba(0,0,0,0.35);
    z-index: 10049; display: none;
  }
  #cartDrawerBackdrop.open { display: block; }
  .cart-head { padding: 1rem 1.2rem; border-bottom: 1px solid var(--soft-tan); display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; background: var(--warm-white); z-index: 1; }
  .cart-title { font-size: 1rem; font-family: 'Playfair Display', serif; font-weight: 700; }
  .cart-items { flex: 1; overflow-y: auto; padding: 0.8rem; display: flex; flex-direction: column; gap: 0.5rem; }
  .cart-item-card { padding: 0.7rem; background: var(--cream); border-radius: 8px; display: flex; gap: 0.6rem; border: 1px solid var(--soft-tan); }
  .cart-item-title { font-weight: 600; font-size: 0.88rem; margin-bottom: 0.2rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .cart-item-meta { font-size: 0.76rem; color: rgba(44,26,14,0.6); margin-bottom: 0.4rem; }
  .cart-qty { display:flex; gap:0.25rem; align-items:center; background:rgba(92,107,46,0.1); border-radius:999px; padding:0.15rem 0.4rem; }
  .cart-qty button { background:transparent; border:none; cursor:pointer; font-size:1rem; width:20px; height:20px; display:flex; align-items:center; justify-content:center; }
  .cart-foot { padding: 0.9rem 1.2rem; border-top: 1px solid var(--soft-tan); display: flex; flex-direction: column; gap: 0.5rem; background: var(--warm-white); }
  .cart-actions { display:flex; gap:0.5rem; margin-top:0.25rem; }
  .cart-empty { padding: 2rem 1rem; text-align: center; color: rgba(44,26,14,0.45); font-size: 0.88rem; }
  .btn-outline { border-radius: 8px; }
  .btn-primary { border-radius: 8px; box-shadow: 0 8px 20px rgba(200,150,42,0.08); }
  #checkoutModal > div { border-radius: 12px; box-shadow: 0 30px 70px rgba(44,26,14,0.12); }

