/* ===========================
   SOILMINT - style.css
   =========================== */

:root {
  --green-dark: #1a3a1e;
  --green-mid: #2d5a30;
  --green-light: #4a8c50;
  --green-pale: #e8f5e9;
  --gold: #c9a227;
  --gold-light: #f0c94a;
  --gold-pale: #fdf6dc;
  --brown: #5c3d1e;
  --cream: #faf8f0;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --border: #e0ddd4;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag { display: inline-block; background: var(--gold-pale); color: var(--gold); font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 30px; margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--green-dark); line-height: 1.2; margin-bottom: 14px; }
.section-sub { color: var(--text-mid); font-size: 1.05rem; max-width: 580px; margin: 0 auto; line-height: 1.7; }
.center-btn { text-align: center; margin-top: 40px; }
.gold-text { color: var(--gold); }

/* BUTTONS */
.btn { display: inline-block; padding: 13px 28px; border-radius: 8px; font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: var(--transition); border: 2px solid transparent; white-space: nowrap; }
.btn-primary { background: var(--green-mid); color: var(--white); border-color: var(--green-mid); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,90,48,0.3); }
.btn-outline { background: transparent; color: var(--green-mid); border-color: var(--green-mid); }
.btn-outline:hover { background: var(--green-mid); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: #a88020; }
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 10px; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-full { width: 100%; text-align: center; display: block; }

/* TOP BAR */
.topbar { background: var(--green-dark); color: var(--white); font-size: 0.82rem; padding: 9px 0; overflow: hidden; font-weight: 600; }
.marquee-wrap { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee-wrap:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* HEADER */
.header { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.header-inner { display: flex; align-items: center; gap: 20px; padding: 12px 20px; }
.logo-img { height: 60px; width: auto; }
.nav { flex: 1; }
.nav-list { display: flex; gap: 4px; align-items: center; justify-content: center; }
.nav-item { position: relative; }
.nav-item > a { display: block; padding: 10px 14px; font-weight: 600; font-size: 0.92rem; color: var(--text-dark); border-radius: 6px; transition: var(--transition); }
.nav-item > a:hover { color: var(--green-mid); background: var(--green-pale); }
.arrow { font-size: 0.7rem; }
.dropdown { position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 10px 0; min-width: 180px; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transform: translateY(8px); transition: var(--transition); z-index: 200; }
.nav-item:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 20px; font-size: 0.9rem; color: var(--text-mid); transition: var(--transition); }
.dropdown a:hover { background: var(--green-pale); color: var(--green-mid); padding-left: 26px; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn { font-size: 1.3rem; cursor: pointer; position: relative; padding: 6px; border-radius: 6px; transition: var(--transition); }
.icon-btn:hover { background: var(--green-pale); }
.cart-count { position: absolute; top: -2px; right: -2px; background: var(--gold); color: var(--white); font-size: 0.65rem; font-weight: 700; min-width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; padding: 6px; }

/* HERO */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 50%, #3d7040 100%); }
.hero-bg { position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(201,162,39,0.15) 0%, transparent 60%); }
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; padding: 80px 20px; }
.hero-badge { display: inline-block; background: rgba(201,162,39,0.2); color: var(--gold-light); border: 1px solid rgba(201,162,39,0.4); padding: 7px 18px; border-radius: 30px; font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 20px; }
.hero-title { font-family: 'Playfair Display', serif; font-size: 3.8rem; font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.hero-sub { color: rgba(255,255,255,0.85); font-size: 1.1rem; line-height: 1.7; margin-bottom: 24px; max-width: 480px; }
.hero-features { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.hero-features span { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); padding: 6px 14px; border-radius: 20px; font-size: 0.82rem; font-weight: 600; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-btns .btn-primary { background: var(--gold); border-color: var(--gold); color: var(--white); }
.hero-btns .btn-primary:hover { background: #a88020; }
.hero-btns .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.5); }
.hero-btns .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.hero-product { display: flex; justify-content: center; align-items: center; }
.product-float { position: relative; animation: float 3s ease-in-out infinite; }
.hero-bag { width: 320px; max-width: 100%; filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5)); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.badge-float { position: absolute; background: var(--gold); color: var(--white); font-weight: 800; border-radius: 50%; width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.badge-top { top: 20px; right: 10px; }
.badge-bottom { bottom: 30px; left: 10px; font-size: 0.75rem; width: 72px; height: 72px; }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.5); font-size: 0.8rem; letter-spacing: 2px; animation: bounce 2s ease-in-out infinite; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* TRUST BAR */
.trust-bar { background: var(--cream); border-bottom: 1px solid var(--border); padding: 28px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon { font-size: 1.8rem; flex-shrink: 0; }
.trust-text strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text-dark); }
.trust-text span { font-size: 0.78rem; color: var(--text-light); }

/* PRODUCTS */
.products-section { background: var(--white); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-light); }
.product-img-wrap { position: relative; background: var(--green-pale); padding: 30px; overflow: hidden; }
.product-img { width: 100%; height: 200px; object-fit: contain; transition: transform 0.4s ease; }
.product-card:hover .product-img { transform: scale(1.05); }
.product-badge { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--white); font-size: 0.72rem; font-weight: 800; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-green { background: var(--green-mid) !important; }
.badge-gold { background: var(--gold) !important; }
.product-actions { position: absolute; bottom: -50px; left: 0; right: 0; display: flex; justify-content: center; transition: var(--transition); }
.product-card:hover .product-actions { bottom: 14px; }
.quick-add { background: var(--green-dark); color: var(--white); border: none; padding: 10px 24px; border-radius: 6px; font-weight: 700; font-size: 0.85rem; cursor: pointer; transition: var(--transition); }
.quick-add:hover { background: var(--gold); }
.product-info { padding: 20px; }
.product-category { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.product-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin: 6px 0 4px; color: var(--green-dark); }
.product-weight { font-size: 0.85rem; color: var(--text-mid); font-weight: 600; margin-bottom: 8px; }
.product-rating { font-size: 0.82rem; color: var(--text-mid); margin-bottom: 12px; }
.product-rating span { color: var(--text-light); }
.product-price { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.price-new { font-size: 1.4rem; font-weight: 800; color: var(--green-dark); }
.price-old { font-size: 0.95rem; color: var(--text-light); text-decoration: line-through; }
.price-save { font-size: 0.78rem; background: #e8f5e9; color: var(--green-mid); padding: 3px 8px; border-radius: 4px; font-weight: 700; }

/* COMPOSITION */
.composition-section { background: var(--cream); }
.comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.comp-left p, .comp-right p { color: var(--text-mid); line-height: 1.7; margin-bottom: 28px; }
.comp-list { display: flex; flex-direction: column; gap: 16px; }
.comp-item { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 14px; }
.comp-bar-wrap { grid-column: 1 / -1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.comp-bar { height: 100%; width: var(--w); background: linear-gradient(90deg, var(--green-mid), var(--gold)); border-radius: 3px; animation: growBar 1.5s ease-out; }
@keyframes growBar { from { width: 0; } to { width: var(--w); } }
.comp-item { display: flex; flex-direction: column; gap: 6px; }
.comp-item:not(:last-child) { padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.comp-detail { display: flex; justify-content: space-between; }
.comp-detail strong { font-weight: 700; color: var(--text-dark); font-size: 0.92rem; }
.comp-detail span { font-weight: 700; color: var(--green-mid); font-size: 0.92rem; }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.benefit-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; transition: var(--transition); }
.benefit-card:hover { border-color: var(--green-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.benefit-icon { font-size: 1.6rem; margin-bottom: 10px; }
.benefit-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--green-dark); margin-bottom: 6px; }
.benefit-card p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }

/* USAGE */
.usage-section { background: var(--green-dark); }
.usage-section .section-tag { background: rgba(201,162,39,0.2); color: var(--gold-light); }
.usage-section .section-title { color: var(--white); }
.usage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.usage-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 28px 22px; text-align: center; transition: var(--transition); }
.usage-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.usage-num { font-family: 'Cinzel', serif; font-size: 3rem; font-weight: 600; color: rgba(201,162,39,0.3); line-height: 1; margin-bottom: 12px; }
.usage-icon { font-size: 2.2rem; margin-bottom: 14px; }
.usage-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.usage-card p { font-size: 0.87rem; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 14px; }
.usage-tip { background: rgba(201,162,39,0.2); color: var(--gold-light); font-size: 0.77rem; font-weight: 700; padding: 5px 12px; border-radius: 20px; display: inline-block; }

/* CROPS */
.crops-section { background: var(--white); }
.crops-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 16px; }
.crop-card { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 22px 12px; border: 1px solid var(--border); border-radius: var(--radius-lg); text-align: center; transition: var(--transition); cursor: pointer; }
.crop-card:hover { background: var(--green-pale); border-color: var(--green-mid); transform: translateY(-4px); box-shadow: var(--shadow); }
.crop-emoji { font-size: 2.2rem; }
.crop-card span { font-size: 0.82rem; font-weight: 700; color: var(--text-mid); }
.crop-card:hover span { color: var(--green-mid); }

/* TESTIMONIALS */
.testimonials-section { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: var(--transition); }
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.featured-testi { border-color: var(--gold); background: var(--gold-pale); transform: scale(1.03); }
.testi-stars { font-size: 1rem; margin-bottom: 14px; }
.testi-text { font-size: 0.92rem; line-height: 1.7; color: var(--text-mid); margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 44px; height: 44px; background: var(--green-mid); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.88rem; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 0.9rem; color: var(--text-dark); }
.testi-author span { font-size: 0.78rem; color: var(--text-light); }

/* STATS */
.stats-section { background: linear-gradient(135deg, var(--green-mid), var(--green-dark)); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: var(--gold-light); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.8); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* BLOG */
.blog-section { background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green-light); }
.blog-img-wrap { background: var(--green-pale); height: 180px; display: flex; align-items: center; justify-content: center; }
.blog-img-placeholder { font-size: 4rem; }
.blog-content { padding: 22px; }
.blog-tag { display: inline-block; background: var(--green-pale); color: var(--green-mid); font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.blog-content h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--green-dark); margin-bottom: 10px; line-height: 1.4; }
.blog-content h3 a:hover { color: var(--gold); }
.blog-content p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
.read-more { font-size: 0.85rem; font-weight: 700; color: var(--green-mid); }
.read-more:hover { color: var(--gold); }

/* DEALER */
.dealer-section { background: var(--gold-pale); border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); padding: 70px 0; }
.dealer-inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.dealer-text h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--green-dark); margin-bottom: 14px; }
.dealer-text p { color: var(--text-mid); font-size: 1rem; line-height: 1.7; margin-bottom: 20px; max-width: 540px; }
.dealer-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 28px; }
.dealer-perks li { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); }
.dealer-logo { width: 180px; opacity: 0.85; }

/* NEWSLETTER */
.newsletter-section { background: var(--green-dark); padding: 70px 0; }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; }
.newsletter-text h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--white); margin-bottom: 12px; }
.newsletter-text p { color: rgba(255,255,255,0.75); line-height: 1.7; }
.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-form input { padding: 13px 18px; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; background: rgba(255,255,255,0.1); color: var(--white); font-size: 0.95rem; outline: none; font-family: 'Nunito', sans-serif; transition: var(--transition); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { border-color: var(--gold); background: rgba(255,255,255,0.15); }
.newsletter-form .btn-primary { background: var(--gold); border-color: var(--gold); }
.newsletter-form .btn-primary:hover { background: #a88020; }

/* FOOTER */
.footer { background: #0f2411; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { width: 120px; margin-bottom: 16px; filter: brightness(1.2); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.87rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; flex-wrap: wrap; gap: 8px; }
.social-btn { display: inline-block; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); padding: 7px 12px; border-radius: 6px; font-size: 0.78rem; font-weight: 600; transition: var(--transition); }
.social-btn:hover { background: var(--green-mid); color: var(--white); }
.footer-col h4 { font-size: 0.9rem; font-weight: 800; color: var(--gold-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.87rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-col address p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 8px; }
.footer-col address a { color: var(--gold-light); }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.payment-icons { display: flex; gap: 10px; flex-wrap: wrap; }
.payment-icons span { font-size: 0.78rem; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); padding: 4px 10px; border-radius: 4px; }

/* CART SIDEBAR */
.cart-sidebar { position: fixed; top: 0; right: -400px; width: 380px; height: 100vh; background: var(--white); z-index: 1000; box-shadow: -10px 0 40px rgba(0,0,0,0.15); transition: var(--transition); display: flex; flex-direction: column; }
.cart-sidebar.open { right: 0; }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.cart-header h3 { font-size: 1.1rem; font-weight: 800; }
.cart-header button { background: none; border: none; font-size: 1.2rem; cursor: pointer; padding: 4px; border-radius: 4px; }
.cart-header button:hover { background: var(--green-pale); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { text-align: center; color: var(--text-light); padding: 40px 0; }
.cart-empty a { color: var(--green-mid); font-weight: 700; }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--border); }
.cart-total { font-size: 1.1rem; font-weight: 700; margin-bottom: 14px; display: flex; justify-content: space-between; }
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; pointer-events: none; transition: var(--transition); }
.cart-overlay.open { opacity: 1; pointer-events: all; }

/* WHATSAPP FLOAT */
.whatsapp-float { position: fixed; bottom: 80px; right: 24px; background: #25D366; color: var(--white); padding: 12px 20px; border-radius: 50px; font-weight: 700; font-size: 0.88rem; box-shadow: 0 4px 16px rgba(37,211,102,0.4); z-index: 90; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.whatsapp-float:hover { background: #1eb857; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.5); }

/* BACK TO TOP */
.back-to-top { position: fixed; bottom: 24px; right: 24px; background: var(--green-mid); color: var(--white); border: none; width: 44px; height: 44px; border-radius: 50%; font-size: 1rem; cursor: pointer; box-shadow: var(--shadow); z-index: 90; transition: var(--transition); opacity: 0; pointer-events: none; }
.back-to-top.show { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--green-dark); transform: translateY(-2px); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .crops-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .comp-grid { grid-template-columns: 1fr; gap: 50px; }
  .usage-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section-title { font-size: 1.9rem; }
  .hero-content { grid-template-columns: 1fr; text-align: center; padding: 60px 20px; }
  .hero-title { font-size: 2.6rem; }
  .hero-sub { max-width: 100%; }
  .hero-product { order: -1; }
  .hero-bag { width: 220px; }
  .hero-features { justify-content: center; }
  .hero-btns { justify-content: center; }
  .nav { display: none; }
  .nav.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border); padding: 16px; }
  .nav-list { flex-direction: column; }
  .dropdown { position: static; opacity: 1; pointer-events: all; transform: none; box-shadow: none; border: none; padding-left: 16px; }
  .hamburger { display: block; }
  .header-actions .btn-sm { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .dealer-inner { grid-template-columns: 1fr; }
  .dealer-logo { display: none; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .crops-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .products-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .usage-grid { grid-template-columns: 1fr; }
  .crops-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .dealer-perks { grid-template-columns: 1fr; }
}
