/* ============================================================
   Suagri — Natural & Herbal Theme CSS
   Palette: Deep Forest Green, Warm Amber, Cream, Earthy Brown
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --forest:    #2D5016;
  --moss:      #4A7C2F;
  --sage:      #7A9E5C;
  --sage-lt:   #B8CFA3;
  --cream:     #F7F3EC;
  --parchment: #EDE6D5;
  --amber:     #C8872A;
  --gold:      #E8A830;
  --brown:     #5C3D1E;
  --dark:      #1E2D0F;
  --white:     #FFFFFF;
  --border:    rgba(45,80,22,0.14);
  --shadow:    0 6px 30px rgba(45,80,22,0.10);
  --font-head: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --radius:    1rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; }
.section-eyebrow { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2.5px; color: var(--moss); margin-bottom: 0.5rem; }
.section-title { font-family: var(--font-head); font-size: 2.6rem; color: var(--forest); margin-bottom: 0.5rem; }
.section-sub { font-size: 0.95rem; color: var(--brown); opacity: 0.72; max-width: 520px; line-height: 1.7; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; padding: 0.7rem 1.6rem; border-radius: 2rem; border: none; cursor: pointer; text-decoration: none; transition: all 0.2s; letter-spacing: 0.3px; }
.btn-primary   { background: var(--forest); color: var(--cream); }
.btn-primary:hover { background: var(--moss); transform: translateY(-1px); }
.btn-outline   { background: transparent; border: 1.5px solid var(--forest); color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--cream); }
.btn-amber     { background: var(--amber); color: white; }
.btn-amber:hover { background: var(--gold); color: var(--dark); }
.btn-sm        { padding: 0.45rem 1.1rem; font-size: 0.8rem; }

/* ── NAV ──────────────────────────────────────────────────── */
#navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(247,243,236,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.nav-brand .brand-leaf { font-size: 1.6rem; }
.nav-brand .brand-text { font-family: var(--font-head); font-size: 1.5rem; color: var(--forest); line-height: 1; }
.nav-brand .brand-text span { color: var(--amber); font-style: italic; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.85rem; font-weight: 400; color: var(--dark); text-decoration: none; opacity: 0.75; transition: opacity 0.2s, color 0.2s; letter-spacing: 0.3px; }
.nav-links a:hover { opacity: 1; color: var(--forest); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-cart { position: relative; background: var(--forest); color: var(--cream); border: none; padding: 0.55rem 1.1rem 0.55rem 0.9rem; border-radius: 2rem; font-size: 0.85rem; font-weight: 500; cursor: pointer; font-family: var(--font-body); display: flex; align-items: center; gap: 0.4rem; transition: background 0.2s; }
.nav-cart:hover { background: var(--moss); }
.cart-count { background: var(--gold); color: var(--dark); font-size: 0.65rem; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.nav-search input { border: 1px solid var(--border); background: var(--parchment); border-radius: 2rem; padding: 0.45rem 1rem; font-size: 0.82rem; font-family: var(--font-body); color: var(--dark); outline: none; width: 200px; transition: border 0.2s; }
.nav-search input:focus { border-color: var(--sage); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 90vh;
  display: grid; grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, var(--cream) 0%, var(--parchment) 100%);
  position: relative; overflow: hidden;
}
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234A7C2F' fill-opacity='0.04'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20S-10 18.954-10 30s8.954 20 20 20 20-8.954 20-20zm20 0c0-11.046-8.954-20-20-20S10 18.954 10 30s8.954 20 20 20 20-8.954 20-20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-left { padding: 6rem 4rem 4rem; display: flex; flex-direction: column; justify-content: center; position: relative; z-index:1; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--sage-lt); color: var(--forest); font-size: 0.72rem; font-weight: 600; padding: 0.35rem 0.9rem; border-radius: 2rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.5rem; width: fit-content; }
.hero-title { font-family: var(--font-head); font-size: 4rem; line-height: 1.05; color: var(--forest); margin-bottom: 1.2rem; }
.hero-title em { color: var(--amber); font-style: italic; }
.hero-sub { font-size: 1rem; color: var(--brown); opacity: 0.75; line-height: 1.75; max-width: 440px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2rem; }
.hero-stat .num { font-family: var(--font-head); font-size: 1.8rem; color: var(--forest); font-weight: 700; display: block; }
.hero-stat .lbl { font-size: 0.75rem; color: var(--brown); opacity: 0.6; text-transform: uppercase; letter-spacing: 1px; }
.hero-right { display: flex; align-items: center; justify-content: center; background: var(--parchment); position: relative; overflow: hidden; }
.hero-right::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(74,124,47,0.06); top: -100px; right: -100px; }
.hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: 2rem; position: relative; z-index: 1; }
.hero-card { background: white; border-radius: 1.25rem; padding: 1.5rem; border: 1px solid var(--border); text-align: center; transition: transform 0.3s; }
.hero-card:hover { transform: translateY(-4px); }
.hero-card:nth-child(1) { margin-top: 2rem; }
.hero-card:nth-child(3) { margin-top: 2rem; }
.hero-card .hc-emoji { font-size: 2.8rem; margin-bottom: 0.5rem; }
.hero-card .hc-name { font-size: 0.8rem; font-weight: 500; color: var(--dark); }
.hero-card .hc-price { font-size: 0.85rem; color: var(--amber); font-weight: 600; }

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee-bar { background: var(--forest); overflow: hidden; padding: 0.7rem 0; }
.marquee-track { display: flex; gap: 2.5rem; animation: marquee 28s linear infinite; white-space: nowrap; }
.marquee-track span { font-size: 0.75rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(247,243,236,0.85); }
.marquee-track .sep { color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── CATEGORIES STRIP ────────────────────────────────────── */
.categories-strip { padding: 3rem 2rem; }
.cat-tabs { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.cat-tab { display: flex; align-items: center; gap: 0.5rem; background: white; border: 1.5px solid var(--border); color: var(--dark); font-family: var(--font-body); font-size: 0.83rem; font-weight: 500; padding: 0.55rem 1.2rem; border-radius: 2rem; cursor: pointer; transition: all 0.2s; }
.cat-tab .tab-icon { font-size: 1rem; }
.cat-tab .tab-count { font-size: 0.7rem; opacity: 0.55; }
.cat-tab:hover, .cat-tab.active { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.cat-tab.active .tab-count { opacity: 0.7; }

/* ── PRODUCTS GRID ───────────────────────────────────────── */
.products-section { padding: 1rem 2rem 5rem; }
.products-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.product-count { font-size: 0.85rem; color: var(--brown); opacity: 0.65; }
.sort-bar select { background: white; border: 1px solid var(--border); color: var(--dark); font-family: var(--font-body); font-size: 0.82rem; padding: 0.45rem 1rem; border-radius: 0.5rem; cursor: pointer; outline: none; }
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.4rem; }
.prod-card { background: white; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column; }
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.prod-img { background: var(--parchment); height: 160px; display: flex; align-items: center; justify-content: center; font-size: 4rem; position: relative; }
.prod-badge { position: absolute; top: 0.6rem; left: 0.6rem; font-size: 0.6rem; font-weight: 600; padding: 0.2rem 0.55rem; border-radius: 2rem; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-gold    { background: #F5E5B2; color: #7A5500; }
.badge-green   { background: #D0EABC; color: #2D5016; }
.badge-teal    { background: #C0E8E0; color: #1A6050; }
.badge-sage    { background: #D5E8C0; color: #2D5016; }
.badge-amber   { background: #FAE0B0; color: #7A4000; }
.badge-blue    { background: #C8DCF0; color: #1A3D6E; }
.badge-herb    { background: #DDE8CC; color: #2D4E10; }
.badge-lime    { background: #D8F0C0; color: #2D5016; }
.badge-red     { background: #F5C0B0; color: #8B1A1A; }
.badge-orange  { background: #FAD8B0; color: #7A3000; }
.badge-purple  { background: #DCC8EC; color: #4A1A7A; }
.badge-beige   { background: #EDE0CC; color: #5C3D1E; }
.badge-default { background: var(--sage-lt); color: var(--forest); }
.prod-body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
.prod-cat  { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--sage); margin-bottom: 0.25rem; }
.prod-name { font-family: var(--font-head); font-size: 1.05rem; color: var(--dark); margin-bottom: 0.35rem; line-height: 1.25; }
.prod-desc { font-size: 0.78rem; color: var(--brown); opacity: 0.7; line-height: 1.55; flex: 1; margin-bottom: 0.75rem; }
.prod-footer { display: flex; align-items: center; justify-content: space-between; }
.prod-price { font-size: 1.05rem; font-weight: 600; color: var(--forest); }
.prod-price span { font-size: 0.75rem; font-weight: 400; color: var(--brown); opacity: 0.55; margin-left: 3px; }
.add-cart { background: var(--forest); color: white; border: none; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.1rem; transition: background 0.15s, transform 0.1s; }
.add-cart:hover { background: var(--moss); transform: scale(1.08); }
.add-cart.added { background: var(--amber); }

/* pagination */
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2.5rem; }
.page-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 50%; background: white; font-size: 0.82rem; cursor: pointer; font-family: var(--font-body); color: var(--dark); transition: all 0.15s; }
.page-btn:hover, .page-btn.active { background: var(--forest); color: var(--cream); border-color: var(--forest); }

/* ── WHY US ─────────────────────────────────────────────── */
.why-section { padding: 5rem 2rem; background: var(--parchment); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; max-width: 1100px; margin: 0 auto; align-items: center; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.why-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.why-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.why-title { font-size: 0.9rem; font-weight: 600; color: var(--dark); margin-bottom: 0.3rem; }
.why-desc { font-size: 0.78rem; color: var(--brown); opacity: 0.7; line-height: 1.6; }
.why-visual { background: white; border-radius: 2rem; border: 1px solid var(--border); height: 400px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1rem; }
.why-visual .big-leaf { font-size: 8rem; animation: sway 4s ease-in-out infinite; }
@keyframes sway { 0%,100%{transform:rotate(-3deg);} 50%{transform:rotate(3deg);} }

/* ── PAYMENT SECTION ─────────────────────────────────────── */
.payment-section { padding: 5rem 2rem; background: var(--cream); }
.payment-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.payment-methods { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin: 2.5rem 0; }
.payment-card { background: white; border: 1px solid var(--border); border-radius: 0.75rem; padding: 1rem 1.5rem; display: flex; align-items: center; gap: 0.75rem; font-size: 0.85rem; font-weight: 500; color: var(--dark); min-width: 130px; justify-content: center; transition: box-shadow 0.2s; }
.payment-card:hover { box-shadow: var(--shadow); }
.payment-card .pay-icon { font-size: 1.5rem; }
.payment-secure { background: var(--parchment); border-radius: var(--radius); padding: 1.2rem 2rem; display: inline-flex; align-items: center; gap: 0.75rem; font-size: 0.82rem; color: var(--forest); border: 1px solid var(--border); }

/* ── CHECKOUT MODAL ──────────────────────────────────────── */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(30,45,15,0.55); z-index: 2000; align-items: center; justify-content: center; }
.modal-overlay.show { display: flex; }
.modal-box { background: white; border-radius: 1.25rem; width: 90%; max-width: 520px; max-height: 88vh; overflow-y: auto; padding: 2rem; }
.modal-title { font-family: var(--font-head); font-size: 1.6rem; color: var(--forest); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 500; color: var(--dark); margin-bottom: 0.3rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 0.5rem;
  padding: 0.65rem 0.9rem; font-family: var(--font-body); font-size: 0.85rem;
  color: var(--dark); background: var(--cream); outline: none; transition: border 0.2s;
}
.form-group input:focus, .form-group select:focus { border-color: var(--sage); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.payment-methods-form { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1rem; }
.pay-method-btn { flex: 1; min-width: 110px; padding: 0.6rem; border: 1.5px solid var(--border); border-radius: 0.5rem; background: white; font-family: var(--font-body); font-size: 0.78rem; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.4rem; transition: all 0.15s; }
.pay-method-btn.selected { border-color: var(--forest); background: var(--parchment); color: var(--forest); }
.cart-items-list { background: var(--parchment); border-radius: 0.75rem; padding: 1rem; margin-bottom: 1.25rem; max-height: 180px; overflow-y: auto; }
.cart-item-row { display: flex; justify-content: space-between; align-items: center; padding: 0.4rem 0; border-bottom: 1px solid var(--border); font-size: 0.82rem; }
.cart-item-row:last-child { border-bottom: none; }
.cart-total { display: flex; justify-content: space-between; font-weight: 600; font-size: 0.95rem; margin-bottom: 1.25rem; }
.modal-close { float: right; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--brown); opacity: 0.6; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials { padding: 5rem 2rem; background: var(--forest); }
.testimonials .section-eyebrow { color: var(--sage-lt); }
.testimonials .section-title { color: var(--cream); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.test-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13); border-radius: var(--radius); padding: 1.75rem; }
.test-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 0.75rem; }
.test-text { font-size: 0.9rem; color: rgba(247,243,236,0.85); line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.test-author { font-size: 0.78rem; color: rgba(247,243,236,0.5); font-weight: 500; }

/* ── SOCIAL BAR ──────────────────────────────────────────── */
.social-section { padding: 4rem 2rem; background: var(--parchment); }
.social-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.social-grid { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.soc-btn { display: flex; align-items: center; gap: 0.65rem; padding: 0.7rem 1.4rem; border-radius: 2rem; font-size: 0.85rem; font-weight: 500; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; border: none; cursor: pointer; font-family: var(--font-body); }
.soc-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.soc-btn .soc-icon { font-size: 1.1rem; }
.soc-instagram { background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); color: white; }
.soc-facebook  { background: #1877F2; color: white; }
.soc-youtube   { background: #FF0000; color: white; }
.soc-whatsapp  { background: #25D366; color: white; }
.soc-twitter   { background: #000000; color: white; }
.soc-telegram  { background: #0088CC; color: white; }
.soc-pinterest { background: #E60023; color: white; }
.soc-linkedin  { background: #0077B5; color: white; }

/* ── NEWSLETTER ──────────────────────────────────────────── */
.newsletter { background: var(--amber); padding: 3.5rem 2rem; }
.newsletter-inner { max-width: 580px; margin: 0 auto; text-align: center; }
.newsletter h2 { font-family: var(--font-head); font-size: 2rem; color: white; margin-bottom: 0.5rem; }
.newsletter p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; font-size: 0.9rem; }
.newsletter-form { display: flex; gap: 0.75rem; max-width: 420px; margin: 0 auto; }
.newsletter-form input { flex: 1; border: none; border-radius: 2rem; padding: 0.7rem 1.2rem; font-family: var(--font-body); font-size: 0.85rem; outline: none; }
.newsletter-form button { background: var(--forest); color: white; border: none; border-radius: 2rem; padding: 0.7rem 1.4rem; font-size: 0.85rem; font-weight: 500; cursor: pointer; font-family: var(--font-body); white-space: nowrap; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: var(--dark); color: rgba(247,243,236,0.75); padding: 4rem 2rem 2rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .brand-text { font-family: var(--font-head); font-size: 1.5rem; color: var(--cream); }
.footer-brand .brand-text span { color: var(--gold); font-style: italic; }
.footer-tagline { font-size: 0.8rem; opacity: 0.55; margin-top: 0.5rem; line-height: 1.6; max-width: 240px; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; flex-wrap: wrap; }
.footer-soc { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; text-decoration: none; transition: background 0.2s; cursor: pointer; border: none; color: white; }
.footer-soc:hover { background: var(--forest); }
.footer-col h4 { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--sage-lt); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.82rem; color: rgba(247,243,236,0.55); text-decoration: none; margin-bottom: 0.5rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.78rem; opacity: 0.45; }

/* ── CART DRAWER ─────────────────────────────────────────── */
.cart-drawer { position: fixed; right: -420px; top: 0; width: 420px; height: 100vh; background: white; z-index: 1500; box-shadow: -8px 0 40px rgba(30,45,15,0.15); transition: right 0.3s ease; display: flex; flex-direction: column; }
.cart-drawer.open { right: 0; }
.cart-drawer-head { padding: 1.5rem; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-drawer-head h3 { font-family: var(--font-head); font-size: 1.3rem; color: var(--dark); }
.cart-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--brown); opacity: 0.6; }
.cart-body { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--brown); opacity: 0.5; }
.cart-entry { display: flex; gap: 0.75rem; align-items: center; padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
.cart-entry-emoji { font-size: 1.8rem; background: var(--parchment); width: 48px; height: 48px; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cart-entry-info { flex: 1; }
.cart-entry-name { font-size: 0.85rem; font-weight: 500; color: var(--dark); margin-bottom: 0.15rem; }
.cart-entry-meta { font-size: 0.75rem; color: var(--brown); opacity: 0.6; }
.cart-entry-price { font-size: 0.9rem; font-weight: 600; color: var(--forest); }
.cart-qty { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.4rem; }
.cart-qty button { background: var(--parchment); border: none; width: 22px; height: 22px; border-radius: 50%; cursor: pointer; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; }
.cart-qty span { font-size: 0.82rem; min-width: 20px; text-align: center; }
.cart-footer { padding: 1.25rem 1.5rem; border-top: 1px solid var(--border); }
.cart-total-row { display: flex; justify-content: space-between; font-weight: 600; font-size: 1rem; margin-bottom: 1rem; }

/* ── TOAST ───────────────────────────────────────────────── */
#toast { position: fixed; bottom: 2rem; right: 2rem; background: var(--forest); color: var(--cream); padding: 0.75rem 1.5rem; border-radius: 0.75rem; font-size: 0.85rem; z-index: 9999; transform: translateY(100px); opacity: 0; transition: all 0.3s; }
#toast.show { transform: translateY(0); opacity: 1; }

/* ── SEARCH OVERLAY ──────────────────────────────────────── */
.search-overlay { display: none; position: fixed; inset: 0; background: rgba(30,45,15,0.5); z-index: 1800; align-items: flex-start; justify-content: center; padding-top: 8rem; }
.search-overlay.show { display: flex; }
.search-box-inner { background: white; border-radius: 1rem; padding: 1.5rem; width: 90%; max-width: 580px; }
.search-box-inner input { width: 100%; border: 1.5px solid var(--border); border-radius: 0.5rem; padding: 0.75rem 1rem; font-size: 1rem; font-family: var(--font-body); outline: none; }
.search-box-inner input:focus { border-color: var(--sage); }
.search-results { margin-top: 1rem; max-height: 300px; overflow-y: auto; }
.search-result-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0; border-bottom: 1px solid var(--border); cursor: pointer; }
.search-result-item:hover { color: var(--forest); }
.search-result-item .sr-emoji { font-size: 1.4rem; }
.search-result-item .sr-name { font-size: 0.88rem; font-weight: 500; }
.search-result-item .sr-cat { font-size: 0.75rem; opacity: 0.5; }
.search-result-item .sr-price { margin-left: auto; font-size: 0.85rem; font-weight: 600; color: var(--forest); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  #navbar { padding: 0 1rem; }
  .nav-search { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 3.5rem 1.5rem 2rem; }
  .hero-title { font-size: 2.8rem; }
  .hero-right { height: 320px; }
  .why-grid, .footer-top { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .hero-visual { grid-template-columns: 1fr 1fr; }
  .cart-drawer { width: 100%; right: -100%; }
  .section-title { font-size: 1.9rem; }
}
@media (max-width: 600px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-form { flex-direction: column; }
  .hero-stats { gap: 1.5rem; }
}

/* ── Suagri Logo Images ───────────────────────────────────── */
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .nav-logo-img { height: 40px; }
}
