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

:root {
  --green-900: #1b4332;
  --green-700: #2d6a4f;
  --green-500: #40916c;
  --green-300: #95d5b2;
  --green-100: #d8f3dc;
  --green-50: #edfaf0;
  --warm: #e9c46a;
  --warm-dark: #d4a830;
  --warm-light: #f4e4b8;
  --orange: #f4a261;
  --red: #e76f51;
  --bg: #f8faf7;
  --text: #1a1a1a;
  --text-light: #555;
  --white: #fff;
  --shadow: 0 2px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
  --radius: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

/* ---------- Nav ---------- */
nav {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-700);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span { color: var(--green-900); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color .2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active { color: var(--green-700); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green-700);
  border-radius: 2px;
}

/* ---------- Announcement bar ---------- */
.announcement {
  background: var(--warm);
  color: var(--green-900);
  text-align: center;
  padding: 8px 16px;
  font-size: .85rem;
  font-weight: 600;
}

.announcement span {
  display: inline-block;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: .7; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 50%, var(--green-500) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero .emoji-row {
  font-size: 2.5rem;
  margin-bottom: 12px;
  letter-spacing: 8px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.15;
}

.hero h1 .highlight {
  background: linear-gradient(90deg, var(--warm), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .tagline {
  font-size: 1.15rem;
  opacity: .9;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.hero .subtitle {
  font-size: 1.1rem;
  opacity: .85;
  max-width: 620px;
  margin: 16px auto 32px;
}

.hero .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-strip {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  opacity: .85;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all .2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--warm);
  color: var(--green-900);
}

.btn-primary:hover { background: #d4b354; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(233,196,106,.4); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }

.btn-outline-green {
  background: transparent;
  color: var(--green-700);
  border: 2px solid var(--green-700);
}

.btn-outline-green:hover { background: var(--green-50); transform: translateY(-2px); }

.btn-success {
  background: var(--green-700);
  color: var(--white);
}

.btn-success:hover { background: var(--green-900); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(45,106,79,.4); }

.btn-sm { padding: 8px 20px; font-size: .9rem; }

.btn-block { width: 100%; padding: 14px; font-size: 1.05rem; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }

.section-subtitle {
  color: var(--green-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .8rem;
  margin-bottom: 8px;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 12px;
  text-align: center;
  line-height: 1.2;
}

.section-desc {
  text-align: center;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

.section-alt { background: var(--green-50); }

.section-alt2 { background: var(--white); }

/* ---------- USPs ---------- */
.usps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

.usp-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  border-top: 4px solid var(--green-300);
}

.usp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.usp-card .icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}

.usp-card h3 {
  color: var(--green-700);
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.usp-card p {
  color: var(--text-light);
  font-size: .95rem;
}

/* ---------- How it works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform .2s;
}

.step-card:hover { transform: translateY(-4px); }

.step-number {
  width: 44px;
  height: 44px;
  background: var(--green-700);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 16px;
}

.step-card h3 {
  color: var(--green-700);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.step-card p {
  color: var(--text-light);
  font-size: .9rem;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--green-300);
  position: absolute;
  top: 4px;
  left: 16px;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
  padding-top: 20px;
  font-size: .95rem;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--green-700);
  font-size: .85rem;
  display: block;
}

.testimonial-card cite span {
  font-weight: 400;
  color: var(--text-light);
}

/* ---------- Products hero ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-500) 100%);
  color: var(--white);
  padding: 60px 0 48px;
  text-align: center;
}

.page-hero h1 { font-size: 2.5rem; margin-bottom: 8px; }
.page-hero p { opacity: .9; font-size: 1.1rem; }

/* ---------- Product spotlight ---------- */
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.spotlight-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform .2s;
  text-align: center;
}

.spotlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.spotlight-card .emoji {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.spotlight-card h3 { color: var(--green-700); font-size: 1.05rem; margin-bottom: 4px; }

.spotlight-card .benefit {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.spotlight-card .price-tag {
  display: inline-block;
  margin-top: 10px;
  background: var(--green-100);
  color: var(--green-900);
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .85rem;
}

/* ---------- Table ---------- */
.table-wrap {
  overflow-x: auto;
  margin-bottom: 48px;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-table thead {
  background: var(--green-700);
  color: var(--white);
}

.product-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: .95rem;
}

.product-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #eee;
}

.product-table tbody tr:hover { background: var(--green-50); }

.product-table .category-label {
  background: var(--green-100);
  font-weight: 700;
  color: var(--green-900);
  font-size: .95rem;
}

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
}

.tag-fruit { background: #fde8e8; color: #b91c1c; }
.tag-veg { background: #e0f2e0; color: #166534; }
.tag-bestseller { background: var(--warm-light); color: #8a6d1a; }

/* ---------- Order page ---------- */
.trust-banner {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding: 16px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-banner-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
}

.trust-banner-item .icon { font-size: 1.3rem; }

.urgency-banner {
  background: linear-gradient(90deg, var(--orange), var(--red));
  color: var(--white);
  text-align: center;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 32px;
}

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

@media (max-width: 800px) {
  .order-grid { grid-template-columns: 1fr; }
}

.form-card, .summary-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-card h2, .summary-card h2 {
  color: var(--green-700);
  margin-bottom: 24px;
  font-size: 1.3rem;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: .9rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: .95rem;
  font-family: inherit;
  transition: border .2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px var(--green-100);
}

.form-group textarea { resize: vertical; min-height: 80px; }

/* ---------- Order items ---------- */
.order-items { margin-bottom: 24px; }

.order-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.order-item:last-child { border-bottom: none; }

.order-item .item-name {
  flex: 1;
  font-size: .95rem;
  font-weight: 500;
}

.order-item .item-name .emoji-sm { margin-right: 4px; }

.order-item .item-price {
  color: var(--text-light);
  font-size: .82rem;
  min-width: 80px;
  text-align: right;
}

.order-item input[type="number"] {
  width: 65px;
  padding: 6px 6px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: .9rem;
  text-align: center;
}

.order-item input[type="number"]:focus {
  outline: none;
  border-color: var(--green-500);
}

.order-item .item-subtotal {
  font-weight: 700;
  color: var(--green-700);
  min-width: 65px;
  text-align: right;
  font-size: .93rem;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 2px solid var(--green-300);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-900);
}

.free-delivery-note {
  text-align: center;
  color: var(--green-500);
  font-size: .8rem;
  font-weight: 600;
  margin-top: 8px;
}

/* ---------- Footer ---------- */
footer {
  background: var(--green-900);
  color: rgba(255,255,255,.8);
  text-align: center;
  padding: 32px 0;
  margin-top: 48px;
}

footer a { color: var(--green-300); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--green-700);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s;
  pointer-events: none;
  z-index: 200;
}

.toast.show { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  .hero .emoji-row { font-size: 1.8rem; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: .9rem; }
  .section-title { font-size: 1.6rem; }
  .section-desc { font-size: .95rem; }
  .form-card, .summary-card { padding: 24px; }
  .trust-banner { gap: 16px; flex-direction: column; align-items: center; }
  .hero-strip { gap: 20px; }
}
