  :root {
    --gold: #c9a84c;
    --gold-light: #e2c97e;
    --gold-dark: #9e7c2f;
    --green: #2a6b2a;
    --green-light: #3a8a3a;
    --green-pale: #eef5ee;
    --green-mid: #5a8f5a;
    --cream: #fdf9f2;
    --cream-dark: #f5ede0;
    --text-dark: #1a2818;
    --text-mid: #3d5c3a;
    --text-light: #7a9678;
    --shadow: rgba(42,107,42,0.12);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }
img{
    display: block;
    max-width: 100%;

}
  /* ──────────────── ANNOUNCEMENT BAR ──────────────── */
  .announce-bar {
    background: var(--green);
    color: #fff;
    text-align: center;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    padding: 9px 20px;
    font-weight: 500;
  }
  .announce-bar span { color: var(--gold-light); }

  /* ──────────────── HEADER ──────────────── */
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(253,249,242,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.25);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  }

  .logo-wrap img { height: 62px; width: auto; }

  nav { display: flex; gap: 36px; align-items: center; }
  nav ul { padding-left: 0; }
  nav ul li a {
    text-decoration: none; color: var(--text-mid); font-size: 0.85rem;
    letter-spacing: 0.1em; font-weight: 500; text-transform: uppercase;
    position: relative; padding-bottom: 3px; transition: color 0.3s;
  }
nav ul li a::after {
    content: '';
    position: absolute;
    top: 45%;
    right: -10px;
    width: 0;
    height: 1.5px;
    transition: width 0.3s;
}
nav.navbar ul li {
    margin: 0 20px;
}
  nav ul li a:hover { color: var(--gold-dark); }
  nav ul li a:hover::after { width: 100%; }

  /* DROPDOWN MENU */
  .nav-dropdown { position: relative; display: inline-block; }
  .nav-dropdown .dropbtn { cursor: pointer; display: flex; align-items: center; gap: 4px; }
  .nav-dropdown-content {
    display: none; position: absolute; background: #fff;
    min-width: 180px; box-shadow: 0 8px 24px rgba(42,107,42,0.12);
    z-index: 1000; border-radius: 12px; top: 100%; left: 0; padding: 10px 0; border: 1px solid rgba(201,168,76,0.15);
  }
  .nav-dropdown-content a {
    color: var(--text-dark); padding: 10px 20px; text-decoration: none;
    display: block; font-size: 0.8rem; text-transform: capitalize; font-weight: 500;
  }
  .nav-dropdown-content a::after { display: none; }
  .nav-dropdown-content a:hover { background-color: var(--green-pale); color: var(--green); }
  .nav-dropdown:hover .nav-dropdown-content { display: block; }

  .header-actions { display: flex; gap: 18px; align-items: center; }
  .cart-btn {
    display: flex; align-items: center; gap: 8px;
    background: var(--green);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
  }
  .cart-btn:hover { background: var(--green-light); transform: translateY(-1px); }
  .cart-count {
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    width: 18px; height: 18px;
    font-size: 0.7rem;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
  }

  /* ──────────────── HERO ──────────────── */
  .hero {
    min-height: 88vh;
    background:
      radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
      radial-gradient(ellipse at 20% 80%, rgba(42,107,42,0.08) 0%, transparent 50%),
      var(--cream);
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center; */
    padding: 0;
    gap: 60px;
    position: relative;
    overflow: hidden;
  }
.icn svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.icn {
  color: #fff;
  width: 22px;
  height: 22px;
}
  /* .hero::before {
    content: '';
    position: absolute;
    right: -100px; top: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.15);
    pointer-events: none;
  } */
  /* .hero::after {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 400px; height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.1);
    pointer-events: none;
  } */
.hero img{
    width: 100%;
}
  .hero-text { animation: fadeUp 0.9s ease both; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold-dark);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
    font-weight: 600;
  }
  .hero-badge::before { content: '🌿'; font-size: 0.9rem; }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--text-dark);
    margin-bottom: 22px;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--green);
  }
  .hero h1 .gold-text { color: var(--gold-dark); }

  .hero-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-mid);
    max-width: 480px;
    margin-bottom: 40px;
    font-weight: 300;
  }

  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--green);
    color: #fff;
    padding: 15px 34px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 24px rgba(42,107,42,0.25);
    display: inline-block;
  }
  .btn-primary:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(42,107,42,0.3); }

  .btn-outline {
    border: 1.5px solid var(--gold);
    color: var(--gold-dark);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
  }
  .btn-outline:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }

  .hero-stats {
    display: flex; gap: 40px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(201,168,76,0.2);
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--green);
    display: block;
    line-height: 1;
  }
  .stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--text-light);
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
  }

  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeUp 0.9s 0.2s ease both;
    position: relative;
  }
  .hero-logo-frame {
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(201,168,76,0.12) 0%, rgba(42,107,42,0.06) 60%, transparent 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .hero-logo-frame::before {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1px dashed rgba(201,168,76,0.3);
    animation: spin 30s linear infinite;
  }
  .hero-logo-frame img {
    width: 340px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(42,107,42,0.2));
    position: relative;
    z-index: 1;
  }
  .leaf-float {
    position: absolute;
    font-size: 1.8rem;
    animation: floatLeaf 6s ease-in-out infinite;
  }
  .leaf-float:nth-child(2) { top: 30px; right: 50px; animation-delay: 0s; }
  .leaf-float:nth-child(3) { bottom: 60px; left: 30px; animation-delay: 2s; }
  .leaf-float:nth-child(4) { top: 100px; left: 20px; animation-delay: 4s; }

  /* ──────────────── TRUST STRIP ──────────────── */
  .trust-strip {
    background: var(--green);
    padding: 22px 5%;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    font-weight: 500;
  }
  .trust-icon {
    font-size: 1.3rem;
    color: var(--gold-light);
  }

  /* ──────────────── SECTION HEADERS ──────────────── */
  .section-header {
    text-align: center;
    margin-bottom: 56px;
  }
  .section-badge {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 14px;
  }
  .section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
  }
  .section-header h2 em {
    font-style: italic;
    color: var(--green);
  }
  .section-divider {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    margin: 18px auto 0;
    border-radius: 2px;
  }

  /* ──────────────── PRODUCTS ──────────────── */
  .products-section {
    padding: 90px 6%;
    background: var(--cream);
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px var(--shadow);
    transition: transform 0.35s, box-shadow 0.35s;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(201,168,76,0.1);
  }
  .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(42,107,42,0.16);
  }

  .product-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--green);
    color: #fff;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 600;
    z-index: 2;
  }

  .product-visual {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .product-visual-bg {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
  }

  .product-icon-large {
    font-size: 5rem;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.1));
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
  }
  .product-card:hover .product-icon-large { transform: scale(1.1) rotate(-3deg); }

  .product-body { padding: 26px 24px 20px; flex: 1; display: flex; flex-direction: column; }
  .product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.2;
  }
  .product-sub {
    font-size: 0.72rem;
    color: var(--gold-dark);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 14px;
  }
  .product-contents {
    list-style: none;
    margin-bottom: 18px;
    flex: 1;
  }
  .product-contents li {
    font-size: 0.82rem;
    color: var(--text-mid);
    padding: 5px 0;
    border-bottom: 1px solid rgba(42,107,42,0.07);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
  }
  .product-contents li::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.55rem;
    flex-shrink: 0;
  }

  .product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(201,168,76,0.15);
    margin-top: auto;
  }

  .add-cart-btn {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 11px 22px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s;
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .add-cart-btn:hover { background: var(--green-light); transform: translateY(-1px); }
  .add-cart-btn.added { background: var(--gold-dark); }
/* ──────────────── PRODUCTS ROW/COLUMN ──────────────── */
  .products-section { padding: 90px 6%; background: var(--cream); }
  .products-list {
    display: flex; flex-direction: column; gap: 50px; max-width: 1000px; margin: 0 auto;
  }
  .product-row {
    display: flex; align-items: stretch; background: #fff; border-radius: 20px;
    overflow: hidden; box-shadow: 0 4px 24px var(--shadow);
    border: 1px solid rgba(201,168,76,0.1); transition: transform 0.35s, box-shadow 0.35s;
  }
  .product-row:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(42,107,42,0.16); }
  .product-row:nth-child(even) { flex-direction: row-reverse; }
  
  .product-style1 .product-visual {
    flex: 1; min-width: 40%; position: relative; display: flex;
    align-items: center; justify-content: center; min-height: 300px; overflow: hidden;height: auto;
  }
  .
  .product-visual-bg { position: absolute; inset: 0; }
  .product-icon-large { font-size: 6rem; position: relative; z-index: 1; transition: transform 0.3s; }
  .product-row:hover .product-icon-large { transform: scale(1.1) rotate(-3deg); }
  .product-badge {
    position: absolute; top: 20px; left: 20px; background: var(--green); color: #fff;
    font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 50px; font-weight: 600; z-index: 2;
  }
  .product-row:nth-child(even) .product-badge { left: auto; right: 20px; }
  
  .product-body {
    flex: 1.5; padding: 40px; display: flex; flex-direction: column; justify-content: center;
  }
  .product-name {
    font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700;
    color: var(--text-dark); margin-bottom: 8px; line-height: 1.2;
  }
  .product-sub {
    font-size: 0.85rem; color: var(--gold-dark); letter-spacing: 0.12em;
    text-transform: uppercase; font-weight: 600; margin-bottom: 20px;
  }
  .product-contents { list-style: none; margin-bottom: 24px; }
  .product-contents li {
    font-size: 0.9rem; color: var(--text-mid); padding: 6px 0;
    border-bottom: 1px solid rgba(42,107,42,0.07); display: flex; align-items: center; gap: 8px;
  }
  .product-contents li::before { content: '✦'; color: var(--gold); font-size: 0.6rem; flex-shrink: 0; }
  
  .product-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 20px; border-top: 1px solid rgba(201,168,76,0.15); margin-top: auto;
  }
  .add-cart-btn {
    background: var(--green); color: #fff; border: none; padding: 12px 28px;
    border-radius: 50px; cursor: pointer; font-family: 'Jost', sans-serif; font-size: 0.9rem;
    font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; transition: all 0.3s;
  }
  .add-cart-btn:hover { background: var(--green-light); transform: translateY(-2px); }

  /* ──────────────── ABOUT STRIP ──────────────── */
  .about-section {
    background: var(--cream-dark);
    padding: 90px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .about-section::before {
    content: '🌿';
    position: absolute;
    font-size: 12rem;
    opacity: 0.04;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .about-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
  }
  .about-logo-display {
    width: 100%;
    max-width: 360px;
    filter: drop-shadow(0 24px 48px rgba(42,107,42,0.18));
  }
  .about-gold-ring {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.2);
    max-width: 400px;
    max-height: 400px;
    margin: auto;
    top: 0; bottom: 0; left: 0; right: 0;
  }

  .about-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--text-dark);
  }
  .about-text h2 em { font-style: italic; color: var(--green); }

  .about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 18px;
    font-weight: 300;
  }

  .values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
  }
  .value-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(201,168,76,0.12);
  }
  .value-icon { font-size: 1.4rem; flex-shrink: 0; }
  .value-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.04em;
  }
  .value-desc {
    font-size: 0.73rem;
    color: var(--text-light);
    margin-top: 3px;
    line-height: 1.5;
  }

  /* ──────────────── TESTIMONIALS ──────────────── */
  .testimonials-section {
    padding: 90px 6%;
    background: var(--cream);
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(201,168,76,0.12);
    box-shadow: 0 2px 16px var(--shadow);
  }
  .stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
  .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 18px;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(42,107,42,0.08);
  }
  .author-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 2px solid rgba(201,168,76,0.2);
  }
  .author-name { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
  .author-loc { font-size: 0.72rem; color: var(--text-light); }

  /* ──────────────── WHY CHOOSE ──────────────── */
  .why-section {
    background: var(--green);
    padding: 90px 6%;
    position: relative;
    overflow: hidden;
  }
  .why-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
  }
  .why-section .section-badge { color: var(--gold-light); }
  .why-section h2 { color: #fff; }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .why-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: background 0.3s;
    backdrop-filter: blur(4px);
  }
  .why-card:hover { background: rgba(255,255,255,0.1); }
  .why-icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
  .why-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
  }
  .why-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
  }

  /* ──────────────── FOOTER ──────────────── */
  footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.75);
    padding: 64px 8% 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
.footer-col ul {
	padding-left: 0;
}
.footer-brand img { 
    margin-bottom: 18px;
    filter: brightness(1.1);
    width: 60px;
}
  .footer-brand p {
    font-size: 0.82rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
    max-width: 260px;
  }
  .footer-col h4,
  .footer-col h3.widget-title{
    color: var(--gold-light);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 18px;
  }
.footer-col nav ul li {
	list-style: none;
}
  .footer-col a, .footer-col p,
  .footer-col nav ul li a {
    display: block;
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
    line-height: 1.5;
	letter-spacing: 0;
    font-weight: normal;
    text-transform: none;
    position: relative;
    padding-bottom: 3px;
  }
  .footer-col a:hover { color: var(--gold-light); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.footer-col p {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-col p span svg {
  width: 20px;
  height: 20px;
  color: #fff;
  fill: #fff;
}
  /* ──────────────── CART SIDEBAR ──────────────── */
  .cart-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .cart-overlay.open { opacity: 1; pointer-events: all; }

  .cart-sidebar {
    position: fixed;
    top: 0; right: -420px;
    width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -8px 0 48px rgba(0,0,0,0.15);
  }
  .cart-sidebar.open { right: 0; }

  .cart-header {
    padding: 24px;
    border-bottom: 1px solid rgba(42,107,42,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cart-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
  }
  .close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    padding: 4px;
    border-radius: 6px;
    transition: background 0.2s;
  }
  .close-cart:hover { background: var(--green-pale); }

  .cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
  }
  .cart-empty {
    text-align: center;
    padding: 60px 24px;
  }
  .cart-empty p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 12px;
  }

  .cart-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(42,107,42,0.07);
    align-items: center;
  }
  .cart-item-icon {
    width: 52px; height: 52px;
    border-radius: 10px;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
  }
  .cart-item-info { flex: 1; }
  .cart-item-name { font-size: 0.88rem; font-weight: 600; color: var(--text-dark); }
  .cart-item-sub { font-size: 0.72rem; color: var(--text-light); margin-top: 3px; }
  .cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
  }
  .qty-btn {
    width: 24px; height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(42,107,42,0.2);
    background: #fff;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }
  .qty-btn:hover { background: var(--green-pale); }
  .qty-num { font-size: 0.82rem; font-weight: 600; color: var(--text-dark); min-width: 16px; text-align: center; }
  .remove-item {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    font-size: 1rem;
    padding: 4px;
    transition: color 0.2s;
  }
  .remove-item:hover { color: #c0392b; }

  .cart-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(42,107,42,0.1);
  }
  .cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--text-mid);
  }
  .cart-subtotal strong { font-size: 1.1rem; color: var(--text-dark); }
  .checkout-btn {
    width: 100%;
    background: var(--green);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
  }
  .checkout-btn:hover { background: var(--green-light); }
  .cart-note { font-size: 0.72rem; color: var(--text-light); text-align: center; margin-top: 10px; }

  /* ──────────────── TOAST ──────────────── */
  .toast {
    position: fixed;
    bottom: 30px; left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--green);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 3000;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
  }
  .toast.show { transform: translateX(-50%) translateY(0); }

  /* ──────────────── ANIMATIONS ──────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
  @keyframes floatLeaf {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-16px) rotate(8deg); }
  }

  /* ──────────────── RESPONSIVE ──────────────── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; text-align: center; padding: 0; height: auto;min-height: auto;}
    .hero-ctas { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .about-section { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    nav { display: none; }
    .cart-sidebar { width: 100%; right: -100%; }
  }

  @media (max-width: 600px) {
    .products-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
      .product-row, .product-row:nth-child(2n),.product-footer {
    flex-direction: column;
  }
  }

 
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
  }

  .nav-links li {
    margin: 0;
  }

  .nav-links a {
    text-decoration: none;
    color: inherit;
  }

  /* Hamburger menu styles */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    background: none;
    border: none;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: black;
  }

  /* Mobile styles */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      right: 0;
      background-color: white;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      padding: 1rem;
    }

    .nav-links.active {
      display: flex;
    }

    .hamburger {
      display: flex;
    }
    .trust-strip{
        gap: 15px;justify-content: flex-start;
    }
    .trust-item{
        width: 46%;
    }
    .products-section{
        padding-block: 20px;
    }
    .value-item{
        flex-direction: column; align-items: center; text-align: center;
    }
  }
