/* ===== UNDER CONSTRUCTION ===== */
#uc-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: linear-gradient(135deg, #001f0e 0%, #003d1f 40%, #005a2c 100%);
  display: flex; align-items: stretch;
  overflow: hidden;
  animation: ucFadeIn .6s ease;
}
@keyframes ucFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Floating particles */
.uc-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.uc-particles span {
  position: absolute; border-radius: 50%;
  background: rgba(244,197,66,.12);
  animation: ucFloat linear infinite;
}
.uc-particles span:nth-child(1)  { width:80px;  height:80px;  left:5%;  animation-duration:12s; animation-delay:0s; }
.uc-particles span:nth-child(2)  { width:50px;  height:50px;  left:15%; animation-duration:9s;  animation-delay:2s; }
.uc-particles span:nth-child(3)  { width:120px; height:120px; left:30%; animation-duration:15s; animation-delay:1s; }
.uc-particles span:nth-child(4)  { width:40px;  height:40px;  left:45%; animation-duration:10s; animation-delay:3s; }
.uc-particles span:nth-child(5)  { width:90px;  height:90px;  left:60%; animation-duration:13s; animation-delay:0.5s; }
.uc-particles span:nth-child(6)  { width:60px;  height:60px;  left:70%; animation-duration:8s;  animation-delay:4s; }
.uc-particles span:nth-child(7)  { width:100px; height:100px; left:80%; animation-duration:11s; animation-delay:1.5s; }
.uc-particles span:nth-child(8)  { width:35px;  height:35px;  left:90%; animation-duration:7s;  animation-delay:2.5s; }
.uc-particles span:nth-child(9)  { width:70px;  height:70px;  left:25%; animation-duration:14s; animation-delay:0.8s; }
.uc-particles span:nth-child(10) { width:45px;  height:45px;  left:55%; animation-duration:9.5s;animation-delay:3.5s; }
@keyframes ucFloat {
  0%   { transform: translateY(110vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-20vh) rotate(360deg); opacity: 0; }
}

/* Left panel */
.uc-left {
  position: relative; z-index: 2;
  flex: 0 0 55%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 64px;
}
.uc-logo {
  height: 72px; object-fit: contain;
  margin-bottom: 32px;
}
.uc-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,197,66,.15);
  border: 1px solid rgba(244,197,66,.4);
  color: #F4C542;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 24px; width: fit-content;
}
.uc-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.uc-title span { color: #F4C542; }
.uc-sub {
  font-size: 16px; color: rgba(255,255,255,.7);
  line-height: 1.8; max-width: 420px;
  margin-bottom: 40px;
}
.uc-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.uc-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 700; font-size: 15px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.uc-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,.5); }
.uc-email {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  padding: 14px 24px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}
.uc-email:hover { background: rgba(255,255,255,.18); }
.uc-admin-link {
  font-size: 12px; color: rgba(255,255,255,.3);
  text-decoration: none;
  transition: color .2s; width: fit-content;
}
.uc-admin-link:hover { color: rgba(255,255,255,.7); }

/* Right panel */
.uc-right {
  flex: 1;
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.uc-card {
  position: absolute;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 20px 24px;
  text-align: center;
  color: #fff;
  animation: ucCardFloat ease-in-out infinite;
}
.uc-card-icon { font-size: 36px; margin-bottom: 8px; }
.uc-card p { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); }
.uc-card-1 { top: 18%; left: 10%; animation-duration: 4s; animation-delay: 0s; }
.uc-card-2 { top: 42%; left: 40%; animation-duration: 5s; animation-delay: 1s; }
.uc-card-3 { top: 68%; left: 12%; animation-duration: 4.5s; animation-delay: 0.5s; }
@keyframes ucCardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.uc-badge-ring {
  position: absolute; top: 28%; right: 14%;
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 3px solid #F4C542;
  display: flex; align-items: center; justify-content: center;
  animation: ucSpin 12s linear infinite;
}
@keyframes ucSpin { to { transform: rotate(360deg); } }
.uc-badge-inner {
  width: 84px; height: 84px; border-radius: 50%;
  background: linear-gradient(135deg, #F4C542, #f7d265);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  animation: ucSpinReverse 12s linear infinite;
  box-shadow: 0 4px 20px rgba(244,197,66,.4);
}
@keyframes ucSpinReverse { to { transform: rotate(-360deg); } }
.uc-badge-inner span { font-size: 22px; font-weight: 900; color: #003d1f; line-height: 1; }
.uc-badge-inner small { font-size: 10px; font-weight: 700; color: #003d1f; text-transform: uppercase; letter-spacing: 1px; }

/* Admin banner */
#uc-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99998;
  background: linear-gradient(90deg, #F4C542 0%, #f7d265 100%);
  color: #1a3a26; font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 10px 50px;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
#uc-banner button {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.1); border: none; font-size: 14px;
  width: 26px; height: 26px; border-radius: 50%;
  cursor: pointer; color: #1a3a26; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
  #uc-overlay { flex-direction: column; }
  .uc-left { flex: none; padding: 40px 28px 24px; }
  .uc-right { flex: 1; min-height: 200px; }
  .uc-title { font-size: 36px; }
  .uc-card-2 { left: 50%; top: 30%; }
  .uc-badge-ring { right: 5%; top: 10%; width: 80px; height: 80px; }
  .uc-badge-inner { width: 60px; height: 60px; }
  .uc-badge-inner span { font-size: 16px; }
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brown: #007A3D;
  --brown-mid: #005a2c;
  --orange: #F4C542;
  --orange-light: #f7d265;
  --cream: #FFF8E1;
  --white: #ffffff;
  --text: #1c1c1c;
  --text-muted: #5a6a5f;
  --border: #b2dfca;
  --green: #e6f4ed;
  --green-icon: #007A3D;
  --radius: 14px;
  --shadow: 0 4px 20px rgba(0,122,61,.12);
}

html { scroll-behavior: smooth; }

/* Page edge tape / frame — desktop, tablet & phone */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  border: 5px solid var(--brown);
  box-shadow:
    inset 0 0 0 2px var(--orange),
    inset 0 0 0 8px var(--brown);
}

/* Corner accent dots */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background:
    radial-gradient(circle 8px at 5px 5px,       var(--orange) 100%, transparent 100%),
    radial-gradient(circle 8px at calc(100% - 5px) 5px,       var(--orange) 100%, transparent 100%),
    radial-gradient(circle 8px at 5px calc(100% - 5px),       var(--orange) 100%, transparent 100%),
    radial-gradient(circle 8px at calc(100% - 5px) calc(100% - 5px), var(--orange) 100%, transparent 100%);
}

@media (max-width: 600px) {
  body::before {
    border-width: 4px;
    box-shadow: inset 0 0 0 2px var(--orange), inset 0 0 0 6px var(--brown);
  }
  body::after {
    background:
      radial-gradient(circle 6px at 4px 4px,       var(--orange) 100%, transparent 100%),
      radial-gradient(circle 6px at calc(100% - 4px) 4px,       var(--orange) 100%, transparent 100%),
      radial-gradient(circle 6px at 4px calc(100% - 4px),       var(--orange) 100%, transparent 100%),
      radial-gradient(circle 6px at calc(100% - 4px) calc(100% - 4px), var(--orange) 100%, transparent 100%);
  }
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { text-decoration: none; color: inherit; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: #F4C542;
  color: #1a3a26;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: #f7d265; transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: #007A3D;
  border: 2px solid #007A3D;
  color: var(--white);
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: background .2s, border-color .2s;
}
.btn-outline:hover { background: #005a2c; border-color: #005a2c; }

.btn-dark {
  display: inline-block;
  background: #007A3D;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: background .2s;
}
.btn-dark:hover { background: #005a2c; }

.btn-send {
  width: 100%;
  background: #F4C542;
  color: #1a3a26;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.btn-send:hover { background: #f7d265; }

/* ===== SECTION HELPERS ===== */
.section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-tag.center, h2.center, p.center { text-align: center; }
h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.2; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #007A3D;
  border-bottom: 1px solid rgba(0,0,0,.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 76px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  isolation: isolate;
}
.logo-img {
  height: 62px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
.footer-logo-img {
  height: 76px;
  max-width: 210px;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.cart-btn {
  position: relative;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--white);
}
.cart-badge {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  width: 17px; height: 17px;
  display: flex; align-items: center; justify-content: center;
}

.hamburger {
  display: none;
  background: none; border: none;
  color: var(--white); font-size: 24px;
  cursor: pointer; margin-left: auto;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--brown-mid);
  padding: 12px 24px 20px;
  gap: 14px;
}
.mobile-menu a {
  color: rgba(255,255,255,.85);
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:active { color: #F4C542; }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 30vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity .8s ease;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(0,40,20,.82) 0%,
    rgba(0,60,30,.65) 50%,
    rgba(0,0,0,.3) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0 18px;
}

.badge {
  display: inline-block;
  background: rgba(244,197,66,.2);
  border: 1px solid rgba(244,197,66,.5);
  color: #F4C542;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
}

.hero-text h1 {
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero-text h1 .highlight { color: #F4C542; }

.hero-text p { color: rgba(255,255,255,.88); font-size: 13px; max-width: 520px; margin-bottom: 14px; line-height: 1.6; }

.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }

/* Hero slide transition */
.hero-fade { animation: heroFade .5s ease; }
@keyframes heroFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-circle img.hero-fade { animation: imgFade .5s ease; }
@keyframes imgFade {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}

/* Dots */
.hero-dots { display: flex; gap: 8px; margin-top: 24px; }
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.dot.active { background: #F4C542; transform: scale(1.3); }

.hero-stats { display: flex; gap: 36px; }
.stat { display: flex; flex-direction: column; }
.stat strong { color: #F4C542; font-size: 26px; font-weight: 900; }
.stat span { color: rgba(255,255,255,.7); font-size: 12px; font-weight: 500; }

.rating-badge {
  position: absolute;
  bottom: 36px; right: 0;
  background: rgba(255,255,255,.95);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 150px;
  backdrop-filter: blur(8px);
}
.rating-badge .stars { color: #F4C542; font-size: 16px; }
.rating-badge .rating-num { font-weight: 800; font-size: 16px; color: #1a3a26; }
.rating-badge .rating-label { font-size: 11px; color: var(--text-muted); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: #007A3D;
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.trust-track {
  display: inline-flex;
  gap: 0;
  animation: trustScroll 28s linear infinite;
}
.trust-track:hover { animation-play-state: paused; }
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 600;
  padding: 0 36px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.trust-item span { font-size: 16px; }
@keyframes trustScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== WHY CHOOSE US ===== */
.why-us { background: #fff; padding: 80px 0; }
.why-sub { color: var(--text-muted); font-size: 15px; margin: 10px 0 40px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow .25s, transform .2s, border-color .2s;
  cursor: default;
}
.why-card:hover {
  box-shadow: 0 8px 28px rgba(0,122,61,.12);
  transform: translateY(-4px);
  border-color: #007A3D;
}
.why-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}
.why-card h3 { font-size: 16px; font-weight: 700; color: #007A3D; margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--cream); padding: 80px 0; }
.testi-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
.testi-track-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
}
.testi-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.testi-card {
  min-width: calc(100% / 3);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin: 0 8px;
  flex-shrink: 0;
}
.testi-stars { color: #F4C542; font-size: 16px; margin-bottom: 14px; }
.testi-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 42px; height: 42px;
  background: #007A3D;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); }
.testi-author span { font-size: 12px; color: var(--text-muted); }

.testi-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  font-size: 18px;
  cursor: pointer;
  color: #007A3D;
  flex-shrink: 0;
  transition: all .2s;
  display: flex; align-items: center; justify-content: center;
}
.testi-arrow:hover { background: #007A3D; color: #fff; border-color: #007A3D; }

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,122,61,.25);
  cursor: pointer;
  transition: all .3s;
  border: none;
}
.testi-dot.active { background: #007A3D; transform: scale(1.4); }

@media(max-width: 860px) {
  .testi-card { min-width: 100%; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ===== VARIETIES ===== */
.varieties {
  background: var(--cream);
  padding: 80px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}
.see-all { color: var(--orange); font-weight: 600; font-size: 14px; }
.see-all:hover { text-decoration: underline; }

.varieties-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 16px;
}

.variety-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 240px;
  cursor: pointer;
}
.variety-card.variety-large {
  grid-row: span 2;
  height: 100%;
  min-height: 380px;
}
.variety-card img { transition: transform .4s; }
.variety-card:hover img { transform: scale(1.04); }

.variety-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
  padding: 24px 20px 18px;
  color: var(--white);
}
.variety-label h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.variety-label p { font-size: 12px; opacity: .85; }

/* ===== PRODUCTS ===== */
.products {
  padding: 80px 0;
  background: var(--white);
}
.products h2 { margin-bottom: 28px; }

.filter-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab {
  background: var(--cream);
  border: 1.5px solid var(--border);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  color: var(--text-muted);
}
.tab.active, .tab:hover {
  background: #007A3D;
  border-color: #007A3D;
  color: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--white);
  border: 1.5px solid #b2dfca;
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .25s, transform .2s;
  position: relative;
}
.product-card:hover { box-shadow: 0 8px 28px rgba(0,122,61,.18); transform: translateY(-3px); }

.product-card > img { height: 180px; }

.product-badge {
  position: absolute;
  top: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
}
.product-badge:first-child { left: 12px; }
.product-badge:nth-child(2) { right: 12px; }
.product-badge.best-value { background: #007A3D; color: #fff; }
.product-badge.best-seller { background: #007A3D; color: #fff; }
.product-badge.popular { background: #005a2c; color: #fff; }
.product-badge.premium { background: #005a2c; color: #fff; }
.product-badge.new { background: #F4C542; color: #1a3a26; }
.product-badge.sale-red { background: #dc2626; color: #fff; }

.product-info { padding: 14px 16px 16px; }
.product-type { font-size: 10px; font-weight: 700; letter-spacing: 1px; color: var(--orange); text-transform: uppercase; }
.product-info h4 { font-size: 14px; font-weight: 700; margin: 4px 0 6px; }
.product-rating { font-size: 12px; color: #F4C542; margin-bottom: 8px; }
.product-rating span { color: var(--text-muted); }

.product-price { display: flex; align-items: center; gap: 8px; }
.price { font-size: 16px; font-weight: 800; color: #007A3D; }
.old-price { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }

.product-card.hidden { display: none; }

/* ===== STORY ===== */
.story { background: var(--cream); padding: 90px 0; }

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-images { position: relative; }

.story-img-main {
  width: 320px;
  height: 380px;
  border-radius: var(--radius);
  object-fit: cover;
}

.story-img-stack {
  position: absolute;
  top: 40px; left: 270px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 200px;
}
.story-img-stack img {
  height: 170px;
  border-radius: var(--radius);
  object-fit: cover;
  width: 200px;
}

.years-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--brown);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.years-badge strong { font-size: 22px; font-weight: 900; color: var(--orange); }
.years-badge span { font-size: 11px; opacity: .8; }

.story-text .section-tag { margin-bottom: 10px; }
.story-text h2 { margin-bottom: 20px; }
.story-text p { color: var(--text-muted); font-size: 15px; margin-bottom: 16px; }

.story-list { list-style: none; margin: 24px 0 32px; display: flex; flex-direction: column; gap: 10px; }
.story-list li { font-size: 14px; font-weight: 500; color: var(--text); }

/* ===== CONTACT ===== */
.contact { background: var(--white); padding: 90px 0; }
.contact-sub { color: var(--text-muted); font-size: 15px; margin: 12px 0 48px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.contact-card.green { background: #e6f4ed; border-color: #a7d9bb; }
.contact-card.orange { background: #fefce8; border-color: #F4C542; }
.contact-card.address-card { background: #f0f9f4; border-color: #b2dfca; }

.contact-icon { font-size: 24px; margin-top: 2px; }
.contact-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 2px; }
.contact-card strong { font-size: 15px; font-weight: 700; display: block; margin-bottom: 2px; }
.contact-note { font-size: 12px; color: var(--text-muted); }

.business-hours {
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.business-hours .contact-label { margin-bottom: 14px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; }
.closed { color: #dc2626; font-weight: 600; }

.contact-form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 14px; font-weight: 600; }
.form-group input, .form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  background: var(--white);
  transition: border-color .2s;
  resize: vertical;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: #007A3D; }

/* ===== NEWSLETTER ===== */
.newsletter {
  background: #005a2c;
  padding: 48px 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.newsletter h3 { color: var(--white); font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.newsletter p { color: rgba(255,255,255,.6); font-size: 14px; }

.newsletter-form { display: flex; gap: 10px; flex: 1; max-width: 480px; min-width: 280px; }
.newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  outline: none;
}
.newsletter-form button {
  background: #F4C542;
  color: #1a3a26;
  border: none;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.newsletter-form button:hover { background: #f7d265; }

/* ===== FOOTER ===== */
.footer { background: #004d26; padding: 60px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p { color: rgba(255,255,255,.55); font-size: 14px; margin-top: 14px; line-height: 1.7; }

.footer-links { display: flex; flex-direction: column; }
.footer-links h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-links a, .footer-links p {
  color: rgba(255,255,255,.55);
  font-size: 13px;
  margin-bottom: 8px;
  transition: color .2s;
}
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,.4); font-size: 13px; }
.admin-btn {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.15);
  padding: 5px 14px;
  border-radius: 50px;
  transition: all .2s;
}
.admin-btn:hover {
  color: #F4C542;
  border-color: #F4C542;
}

/* ===== RESPONSIVE ===== */

/* --- Tablet landscape (≤1024px) --- */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .testi-card { min-width: 50%; }
}

/* --- Tablet portrait (≤860px) --- */
@media (max-width: 860px) {
  /* Navbar */
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: block; }
  .nav-inner { height: 64px; }

  /* Hero */
  .hero { min-height: 70vh; }
  .hero-inner { flex-direction: column; align-items: flex-start; padding: 90px 0 60px; gap: 0; }
  .hero-text h1 { font-size: clamp(30px, 7vw, 48px); }
  .hero-text p { max-width: 100%; font-size: 14px; }
  .hero-btns { flex-wrap: wrap; }
  .hero-stats { gap: 24px; }
  .rating-badge { display: none; }
  .hero-dots { margin-top: 20px; }

  /* Trust bar */
  .trust-item { padding: 0 20px; font-size: 12px; }

  /* Why Us */
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .why-card { padding: 20px 16px; }

  /* Varieties */
  .varieties-grid { grid-template-columns: 1fr; }
  .variety-card.variety-large { min-height: 260px; }
  .variety-card { height: 200px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .filter-tabs { gap: 8px; }
  .tab { padding: 7px 16px; font-size: 13px; }

  /* Testimonials */
  .testi-card { min-width: 100%; margin: 0 6px; }
  .testi-arrow { width: 36px; height: 36px; font-size: 15px; }

  /* Story */
  .story-inner { grid-template-columns: 1fr; }
  .story-images { display: none; }
  .story { padding: 60px 0; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Newsletter */
  .newsletter-inner { flex-direction: column; text-align: center; gap: 20px; }
  .newsletter-form { max-width: 100%; width: 100%; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer { padding: 48px 0 0; }
}

/* --- Mobile (≤600px) --- */
@media (max-width: 600px) {
  .container { padding: 0 16px; }

  /* Hero */
  .hero { min-height: 85vh; }
  .hero-inner { padding: 80px 0 50px; }
  .hero-text h1 { font-size: clamp(28px, 8vw, 40px); }
  .hero-text p { font-size: 13px; }
  .btn-primary, .btn-outline { padding: 11px 22px; font-size: 14px; }
  .hero-stats { gap: 18px; }
  .stat strong { font-size: 20px; }

  /* Why Us */
  .why-us { padding: 50px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-card { padding: 18px; }
  .why-icon { font-size: 28px; margin-bottom: 10px; }

  /* Varieties */
  .varieties { padding: 50px 0; }
  .variety-card { height: 180px; }
  .variety-label h3 { font-size: 15px; }

  /* Products */
  .products { padding: 50px 0; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card > img { height: 140px; }
  .product-info { padding: 10px 12px 12px; }
  .product-info h4 { font-size: 13px; }

  /* Testimonials */
  .testimonials { padding: 50px 0; }
  .testi-carousel-wrap { gap: 8px; }
  .testi-card { padding: 20px 16px; }
  .testi-text { font-size: 13px; }
  .testi-arrow { width: 32px; height: 32px; font-size: 13px; }

  /* Story */
  .story { padding: 50px 0; }
  .story-list li { font-size: 13px; }

  /* Contact */
  .contact { padding: 50px 0; }
  .contact-form { padding: 20px 16px; }
  .contact-card { padding: 14px 16px; gap: 12px; }

  /* Newsletter */
  .newsletter { padding: 36px 0; }
  .newsletter h3 { font-size: 17px; }
  .newsletter-form { flex-direction: column; gap: 10px; }
  .newsletter-form input { border-radius: 8px; }
  .newsletter-form button { border-radius: 8px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; }

  /* Sections general */
  h2 { font-size: clamp(22px, 6vw, 32px); }
  .why-sub { font-size: 13px; }
}

/* --- Small mobile (≤380px) --- */
@media (max-width: 380px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 14px; }
  .hero-btns { flex-direction: column; width: 100%; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
}
