/* ═══════════════════════════════════════════════════════
   LIYA AGRO — Shared Stylesheet
   ═══════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #f7f8f5;
  color: #1a1a1a;
  font-size: 14px;
  line-height: 1.5;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Variables ── */
:root {
  --green:    #1e7e34;
  --green-l:  #28a745;
  --green-d:  #145a24;
  --green-bg: #eaf6ec;
  --orange:   #e65c00;
  --text:     #1a1a1a;
  --muted:    #6c757d;
  --border:   #e0e0e0;
  --white:    #ffffff;
  --shadow:   0 2px 12px rgba(0,0,0,0.08);
  --radius:   10px;
}

/* ── Site Text Logo ── */
.site-logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
  user-select: none;
}
.sl-wordmark {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.4px;
}
.sl-liya { color: #1e7e34; }
.sl-agro { color: #555; }
.sl-leaf {
  font-size: 15px;
  margin-left: 2px;
  line-height: 1;
  display: inline-block;
  transform: rotate(-10deg);
}
.sl-tagline {
  font-size: 9px;
  color: #aaa;
  letter-spacing: 3px;
  text-transform: lowercase;
  margin-top: 4px;
  font-weight: 400;
  padding-left: 1px;
}
/* Footer / dark background variant */
.site-logo-light .sl-liya { color: #6fcf82; }
.site-logo-light .sl-agro { color: rgba(255,255,255,0.88); }
.site-logo-light .sl-leaf  { filter: brightness(1.4); }
.site-logo-light .sl-tagline { color: rgba(255,255,255,0.32); letter-spacing: 2.5px; }

/* ── Announcement Bar ── */
.announce {
  background: var(--green-d);
  color: #fff;
  text-align: center;
  padding: 7px 16px;
  font-size: 12.5px;
  letter-spacing: .3px;
}
.announce span { color: #a5e8b0; font-weight: 600; }

/* ── Top Header ── */
.top-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo img { height: 52px; object-fit: contain; }
.search-bar {
  flex: 1;
  display: flex;
  background: #f1f3f0;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .2s;
}
.search-bar:focus-within { border-color: var(--green-l); }
.search-bar input {
  flex: 1;
  padding: 10px 14px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 13.5px;
  color: var(--text);
}
.search-bar select {
  padding: 0 10px;
  border: none;
  border-left: 1.5px solid var(--border);
  background: #fff;
  font-size: 12px;
  color: var(--muted);
  outline: none;
  cursor: pointer;
}
.search-bar button {
  background: var(--green);
  color: #fff;
  padding: 0 18px;
  font-size: 16px;
  transition: background .2s;
}
.search-bar button:hover { background: var(--green-d); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 11px;
  color: var(--muted);
  cursor: pointer;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.action-btn:hover { background: var(--green-bg); color: var(--green); }
.action-btn svg { width: 22px; height: 22px; }
.cart-btn {
  position: relative;
  background: var(--green) !important;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
}
.cart-btn:hover { background: var(--green-d) !important; color: #fff !important; }
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: 10px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ── Nav Bar ── */
.nav-bar {
  background: var(--green);
  position: sticky;
  top: 81px;
  z-index: 999;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
}
.all-cats {
  background: var(--green-d);
  color: #fff;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 13px;
  display: flex; align-items: center; gap: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
  text-decoration: none;
}
.all-cats:hover { background: #0d3d18; color: #fff; }
.nav-links {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a {
  color: #d4f1d9;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-links a.active { color: #fff; background: rgba(255,255,255,0.15); font-weight: 700; }
.nav-links a.flash { color: #ffd700; font-weight: 700; }
.nav-links a.flash:hover { color: #fff; }

/* ── Section Layout ── */
.section {
  max-width: 1200px;
  margin: 36px auto 0;
  padding: 0 20px;
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.section-head h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-head h2::before {
  content: '';
  display: block;
  width: 4px; height: 22px;
  background: var(--green);
  border-radius: 2px;
}
.section-head a {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
}
.section-head a:hover { text-decoration: underline; }

/* ── Product Grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: box-shadow .2s, transform .2s;
  cursor: pointer;
  position: relative;
}
.product-card:hover {
  box-shadow: 0 8px 24px rgba(30,126,52,0.15);
  transform: translateY(-3px);
}
.product-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.product-badge.new { background: var(--green-l); }
.product-badge.sale { background: #dc3545; }
.product-img {
  width: 100%; height: 160px;
  background: linear-gradient(135deg, var(--green-bg) 0%, #d0eddb 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 60px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.product-info { padding: 12px; }
.product-cat {
  font-size: 10.5px;
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 4px;
}
.product-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.stars { color: #f5a623; font-size: 11px; }
.rating-count { font-size: 11px; color: var(--muted); }
.product-price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.price-now { font-size: 16px; font-weight: 800; color: var(--green-d); }
.price-old { font-size: 12px; color: var(--muted); text-decoration: line-through; }
.price-save {
  font-size: 10.5px;
  background: #fff3cd;
  color: #856404;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 600;
}
.add-cart-btn {
  width: 100%;
  background: var(--green-bg);
  color: var(--green);
  border: 1.5px solid var(--green-l);
  border-radius: 7px;
  padding: 8px;
  font-size: 12.5px;
  font-weight: 600;
  transition: background .15s, color .15s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.add-cart-btn:hover { background: var(--green); color: #fff; }

/* ── Category Grid ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}
.cat-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 16px 10px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
}
.cat-item:hover {
  border-color: var(--green-l);
  box-shadow: 0 4px 12px rgba(30,126,52,0.12);
  transform: translateY(-2px);
}
.cat-icon { font-size: 28px; margin-bottom: 8px; display: block; }
.cat-name { font-size: 11.5px; font-weight: 600; color: var(--text); line-height: 1.3; }

/* ── Banner Cards ── */
.banner-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 36px auto 0;
  padding: 0 20px;
}
.banner-card {
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: filter .2s;
}
.banner-card:hover { filter: brightness(1.05); }
.banner-card.seeds { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.banner-card.fert  { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
.banner-card.tools { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
.banner-card .icon { font-size: 42px; line-height: 1; }
.banner-card h3 { font-size: 15px; font-weight: 700; color: #2d2d2d; margin-bottom: 4px; }
.banner-card p { font-size: 12px; color: #555; margin-bottom: 10px; }
.banner-card a { font-size: 12px; font-weight: 700; color: var(--green); display: flex; align-items: center; gap: 4px; }

/* ── Flash Bar ── */
.flash-bar {
  background: linear-gradient(135deg, #1e7e34 0%, #155724 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 14px 40px;
}
.flash-label {
  color: #ffd700;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.flash-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.3); flex-shrink: 0; }
.countdown { display: flex; gap: 8px; align-items: center; }
.countdown-unit {
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 4px 10px;
  text-align: center;
  color: #fff;
}
.countdown-unit .num { font-size: 20px; font-weight: 800; display: block; line-height: 1.1; }
.countdown-unit .lbl { font-size: 10px; color: rgba(255,255,255,0.7); }
.countdown-sep { color: #ffd700; font-size: 20px; font-weight: 700; margin-top: -4px; }
.flash-subtitle { color: rgba(255,255,255,0.8); font-size: 13px; margin-left: auto; white-space: nowrap; }

/* ── Trust Strip ── */
.trust-strip {
  max-width: 1200px;
  margin: 36px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.trust-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-icon { font-size: 28px; }
.trust-item h4 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.trust-item p { font-size: 11.5px; color: var(--muted); }

/* ── Cart Drawer ── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 400px; height: 100%;
  background: #fff;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: right .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
}
.cart-drawer.open { right: 0; }
.cart-header {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h2 { font-size: 17px; font-weight: 700; }
.cart-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #f1f3f0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--text);
  cursor: pointer;
  transition: background .15s;
}
.cart-close:hover { background: var(--border); }
.cart-body { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.cart-empty .empty-icon { font-size: 56px; margin-bottom: 16px; }
.cart-empty h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 64px; height: 64px;
  border-radius: 8px;
  background: var(--green-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.cart-item-info .cat { font-size: 11px; color: var(--muted); margin-bottom: 6px; }
.qty-control { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 24px; height: 24px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  cursor: pointer;
  background: #fff;
  transition: all .15s;
}
.qty-btn:hover { border-color: var(--green); color: var(--green); }
.qty-val { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-price { font-size: 15px; font-weight: 700; color: var(--green-d); white-space: nowrap; }
.remove-item { color: #dc3545; font-size: 18px; cursor: pointer; padding: 2px; }
.remove-item:hover { color: #c82333; }
.cart-footer { padding: 16px 20px; border-top: 1px solid var(--border); }
.cart-summary { margin-bottom: 14px; }
.cart-row {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--muted); margin-bottom: 6px;
}
.cart-row.total {
  font-size: 16px; font-weight: 700; color: var(--text);
  padding-top: 10px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.checkout-btn {
  width: 100%;
  background: var(--green);
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: background .2s;
}
.checkout-btn:hover { background: var(--green-d); }
.cart-note {
  text-align: center;
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 4px;
}

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--green-d);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  z-index: 3000;
  display: flex; align-items: center; gap: 8px;
  transform: translateY(80px);
  opacity: 0;
  transition: all .3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── Footer ── */
footer {
  background: #101f12;
  color: rgba(255,255,255,0.8);
  margin-top: 56px;
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 36px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 36px;
}
.footer-brand img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 18px; }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px; font-size: 13px;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--green-l); flex-shrink: 0; }
.footer-col h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 8px; transition: color .15s; }
.footer-col a:hover { color: var(--green-l); }
.footer-newsletter p { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.newsletter-form { display: flex; }
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-right: none;
  color: #fff;
  padding: 10px 12px;
  font-size: 13px;
  border-radius: 6px 0 0 6px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
  background: var(--green-l);
  color: #fff;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 0 6px 6px 0;
  transition: background .2s;
}
.newsletter-form button:hover { background: var(--green-d); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 16px 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom span { color: var(--green-l); }

/* ═══════════════════════════════════════════════════════
   PAGE HERO (shared across About, Contact, Shop, Flash)
   ═══════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--green-d) 0%, var(--green) 100%);
  padding: 56px 20px;
  text-align: center;
  color: #fff;
}
.page-hero h1 { font-size: 34px; font-weight: 800; margin-bottom: 10px; }
.page-hero p { font-size: 15px; color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto 16px; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════ */
.about-story {
  max-width: 1200px;
  margin: 56px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-story img {
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(30,126,52,0.18);
}
.about-story .story-text h2 { font-size: 26px; font-weight: 800; margin-bottom: 16px; }
.about-story .story-text h2 span { color: var(--green); }
.about-story .story-text p { font-size: 14px; color: #444; line-height: 1.8; margin-bottom: 14px; }
.about-story .story-text .btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  margin-top: 6px;
  transition: background .2s;
}
.about-story .story-text .btn-green:hover { background: var(--green-d); }

.stats-bar {
  background: var(--green);
  margin: 56px 0 0;
  padding: 40px 20px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { color: #fff; }
.stat-item .num { font-size: 36px; font-weight: 800; display: block; line-height: 1; margin-bottom: 6px; }
.stat-item .num span { color: #a5e8b0; }
.stat-item .lbl { font-size: 13px; color: rgba(255,255,255,0.75); }

.services-section {
  max-width: 1200px;
  margin: 56px auto 0;
  padding: 0 20px;
}
.services-section h2 { font-size: 26px; font-weight: 800; text-align: center; margin-bottom: 8px; }
.services-section > p { text-align: center; color: var(--muted); margin-bottom: 36px; font-size: 14px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 28px 20px;
  text-align: center;
  transition: all .2s;
}
.service-card:hover {
  border-color: var(--green-l);
  box-shadow: 0 8px 24px rgba(30,126,52,0.12);
  transform: translateY(-3px);
}
.service-card .icon { font-size: 40px; margin-bottom: 14px; }
.service-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

.why-us {
  background: var(--green-bg);
  margin: 56px 0 0;
  padding: 56px 20px;
}
.why-us-inner { max-width: 1200px; margin: 0 auto; }
.why-us h2 { font-size: 26px; font-weight: 800; text-align: center; margin-bottom: 8px; }
.why-us > .why-us-inner > p { text-align: center; color: var(--muted); margin-bottom: 36px; font-size: 14px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1.5px solid var(--border);
}
.why-item .icon {
  width: 48px; height: 48px;
  background: var(--green-bg);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.why-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 5px; }
.why-item p { font-size: 13px; color: var(--muted); line-height: 1.6; }

.team-section {
  max-width: 1200px;
  margin: 56px auto 0;
  padding: 0 20px;
}
.team-section h2 { font-size: 26px; font-weight: 800; text-align: center; margin-bottom: 8px; }
.team-section > p { text-align: center; color: var(--muted); margin-bottom: 36px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  text-align: center;
  transition: all .2s;
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.team-avatar {
  width: 100%; height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
}
.team-card h4 { font-size: 15px; font-weight: 700; padding: 16px 16px 4px; }
.team-card .role { font-size: 12px; color: var(--green); font-weight: 600; padding-bottom: 12px; }
.team-card p { font-size: 12.5px; color: var(--muted); padding: 0 16px 20px; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════ */
.contact-info-strip {
  max-width: 1200px;
  margin: -28px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 10;
}
.contact-info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 1.5px solid var(--border);
}
.contact-info-card .ci-icon {
  width: 48px; height: 48px;
  background: var(--green-bg);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-info-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.contact-info-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.contact-info-card a { color: var(--green); font-weight: 600; font-size: 13px; }

.contact-layout {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
}
.contact-form-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 36px;
}
.contact-form-card h2 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.contact-form-card > p { color: var(--muted); font-size: 13.5px; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px; font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group label span { color: #dc3545; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 13.5px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
  background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-l); }
.form-group textarea { resize: vertical; min-height: 110px; }
.submit-btn {
  width: 100%;
  background: var(--green);
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: background .2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.submit-btn:hover { background: var(--green-d); }

.contact-side { display: flex; flex-direction: column; gap: 20px; }
.map-placeholder {
  background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
  border-radius: var(--radius);
  min-height: 240px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 24px;
  border: 1.5px solid #b2dfdb;
  flex: 1;
}
.map-placeholder .map-icon { font-size: 48px; margin-bottom: 12px; }
.map-placeholder h3 { font-size: 15px; font-weight: 700; color: var(--green-d); margin-bottom: 6px; }
.map-placeholder p { font-size: 13px; color: #3d6b42; }
.hours-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 22px;
}
.hours-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.hours-row {
  display: flex; justify-content: space-between;
  font-size: 13px; padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--muted); }
.hours-row .time { font-weight: 600; }
.hours-row.today .day { color: var(--green); font-weight: 600; }
.hours-row.today .time { color: var(--green); }

/* ═══════════════════════════════════════════════════════
   SHOP PAGE
   ═══════════════════════════════════════════════════════ */
.shop-layout {
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
}
.filter-sidebar {
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  position: sticky;
  top: 150px;
}
.filter-sidebar-head {
  background: var(--green);
  color: #fff;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: space-between;
}
.filter-clear { font-size: 12px; font-weight: 400; cursor: pointer; opacity: .8; }
.filter-clear:hover { opacity: 1; }
.filter-section { padding: 16px 18px; border-bottom: 1px solid var(--border); }
.filter-section:last-child { border-bottom: none; }
.filter-section h4 { font-size: 13px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.filter-check { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; cursor: pointer; }
.filter-check input { accent-color: var(--green); width: 14px; height: 14px; cursor: pointer; }
.filter-check label { font-size: 12.5px; color: #444; cursor: pointer; display: flex; align-items: center; justify-content: space-between; width: 100%; }
.filter-check label .count { font-size: 11px; color: var(--muted); }
.price-range { padding: 4px 0; }
.price-range input[type=range] { width: 100%; accent-color: var(--green); margin-bottom: 8px; }
.price-display { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); }

.shop-main {}
.sort-bar {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 12px;
}
.sort-bar .results-count { font-size: 13px; color: var(--muted); }
.sort-bar .results-count strong { color: var(--text); }
.sort-controls { display: flex; align-items: center; gap: 10px; }
.sort-controls label { font-size: 13px; color: var(--muted); }
.sort-controls select {
  padding: 7px 12px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  cursor: pointer;
  background: #fff;
  color: var(--text);
}
.sort-controls select:focus { border-color: var(--green-l); }
.view-toggle { display: flex; gap: 4px; }
.view-btn {
  width: 32px; height: 32px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  cursor: pointer;
  color: var(--muted);
  background: #fff;
  transition: all .15s;
}
.view-btn.active, .view-btn:hover { border-color: var(--green); color: var(--green); background: var(--green-bg); }

.filter-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.filter-tag {
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid #b2dfb9;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  cursor: pointer;
}
.filter-tag .remove { font-size: 14px; line-height: 1; }
.filter-tag:hover { background: #d0eddb; }

.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  margin-top: 32px;
  padding-bottom: 20px;
}
.page-btn {
  width: 36px; height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  background: #fff;
  color: var(--text);
  transition: all .15s;
}
.page-btn:hover, .page-btn.active { background: var(--green); color: #fff; border-color: var(--green); }
.page-btn.disabled { opacity: .4; cursor: default; }

/* ═══════════════════════════════════════════════════════
   FLASH SALE PAGE
   ═══════════════════════════════════════════════════════ */
.flash-hero {
  background: linear-gradient(135deg, #0d3d18 0%, #1e7e34 50%, #145a24 100%);
  padding: 56px 20px;
  text-align: center;
}
.flash-hero h1 {
  font-size: 42px; font-weight: 800;
  color: #ffd700;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  margin-bottom: 8px;
}
.flash-hero p { font-size: 15px; color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.flash-countdown-big {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 12px;
}
.cd-big-unit {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 14px 22px;
  text-align: center;
  min-width: 80px;
}
.cd-big-unit .num { font-size: 36px; font-weight: 800; color: #fff; display: block; line-height: 1; }
.cd-big-unit .lbl { font-size: 11px; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: .5px; }
.cd-big-sep { font-size: 36px; font-weight: 800; color: #ffd700; margin-bottom: 16px; }

.flash-tabs {
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 0 20px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.flash-tab {
  padding: 8px 20px;
  border-radius: 24px;
  border: 1.5px solid var(--border);
  font-size: 13px; font-weight: 600;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  transition: all .15s;
}
.flash-tab.active, .flash-tab:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.flash-tab .badge {
  background: var(--orange);
  color: #fff;
  border-radius: 10px;
  padding: 1px 7px;
  font-size: 10px;
  margin-left: 4px;
}

.deals-section {
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 0 20px;
}
.deals-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.flash-sale-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: box-shadow .2s, transform .2s;
  cursor: pointer;
  position: relative;
}
.flash-sale-card:hover {
  box-shadow: 0 8px 24px rgba(30,126,52,0.15);
  transform: translateY(-3px);
}
.deal-img {
  width: 100%; height: 150px;
  background: linear-gradient(135deg, #fff8e1, #ffecb3);
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.deal-discount {
  position: absolute;
  top: 10px; left: 10px;
  background: #dc3545;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
}
.deal-info { padding: 12px; }
.deal-name { font-size: 13px; font-weight: 600; line-height: 1.35; margin-bottom: 6px; }
.deal-price-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.deal-price-row .now { font-size: 17px; font-weight: 800; color: #dc3545; }
.deal-price-row .old { font-size: 12px; color: var(--muted); text-decoration: line-through; }
.progress-bar {
  background: #f0f0f0;
  border-radius: 4px;
  height: 5px;
  margin-bottom: 5px;
}
.progress-bar .fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(to right, var(--green), var(--green-l));
  transition: width .4s;
}
.sold-label { font-size: 11px; color: var(--muted); }
.sold-label strong { color: var(--orange); }
.deal-add-btn {
  width: 100%;
  background: var(--green);
  color: #fff;
  border-radius: 7px;
  padding: 8px;
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 10px;
  transition: background .15s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.deal-add-btn:hover { background: var(--green-d); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .deals-grid { grid-template-columns: repeat(4, 1fr); }
  .cat-grid { grid-template-columns: repeat(6, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .deals-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .banner-strip { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .about-story { grid-template-columns: 1fr; gap: 32px; }
  .contact-info-strip { grid-template-columns: 1fr; margin-top: 24px; }
  .contact-layout { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .shop-product-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .flash-hero h1 { font-size: 30px; }
}
@media (max-width: 600px) {
  .header-inner { flex-wrap: wrap; }
  .search-bar { order: 3; width: 100%; flex: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .deals-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-strip { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; right: -100%; }
  .flash-bar { flex-wrap: wrap; padding: 14px 20px; }
  .contact-form-card { padding: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .cd-big-unit { min-width: 60px; padding: 10px 14px; }
  .cd-big-unit .num { font-size: 26px; }
}
