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

:root {
  --green-dark:  #1b4332;
  --green-mid:   #2d6a4f;
  --green-light: #52b788;
  --green-pale:  #d8f3dc;
  --gold:        #c9943a;
  --gold-light:  #f4d484;
  --cream:       #fdfaf4;
  --white:       #ffffff;
  --text-dark:   #1a1a1a;
  --text-mid:    #444;
  --text-light:  #777;
  --border:      #e0e0d8;
  --radius:      10px;
  --shadow:      0 4px 20px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
}

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

img { max-width: 100%; display: block; }

/* ── TOP BAR ── */
.topbar {
  background: var(--green-dark);
  color: #c8f5d8;
  text-align: center;
  font-size: 0.82rem;
  padding: 8px 16px;
  letter-spacing: 0.03em;
}
.topbar a { color: var(--gold-light); font-weight: 600; }

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  min-height: 64px;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--green-dark);
  font-weight: 700;
  line-height: 1.2;
}
.nav-logo-sub { font-size: 0.68rem; color: var(--text-light); letter-spacing: 0.08em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-links a {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 500;
  transition: background 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--green-pale);
  color: var(--green-dark);
  text-decoration: none;
}
.nav-links a.nav-qurbani {
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
}
.nav-links a.nav-qurbani:hover { background: #b7842e; }

/* ── FOOTER ── */
footer {
  background: var(--green-dark);
  color: #a8d5b5;
  text-align: center;
  padding: 40px 20px 24px;
  margin-top: 60px;
}
footer .footer-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 8px; }
footer p { font-size: 0.88rem; margin: 4px 0; }
footer a { color: var(--gold-light); }
footer .footer-links { margin: 16px 0; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
footer .footer-links a { color: #a8d5b5; font-size: 0.88rem; }
footer .footer-links a:hover { color: var(--white); text-decoration: none; }
footer .copyright { margin-top: 20px; font-size: 0.8rem; color: #6aab80; border-top: 1px solid #2d6a4f; padding-top: 16px; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
  color: var(--white);
}
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}
.hero-content p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 24px; }
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #b7842e; text-decoration: none; }
.btn-green { background: var(--green-dark); color: var(--white); }
.btn-green:hover { background: var(--green-mid); text-decoration: none; }
.btn-outline { background: transparent; color: var(--green-dark); border: 2px solid var(--green-dark); }
.btn-outline:hover { background: var(--green-dark); color: var(--white); text-decoration: none; }

/* ── SECTION WRAPPER ── */
.section { padding: 60px 20px; max-width: 1100px; margin: 0 auto; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.section-sub { color: var(--text-light); margin-bottom: 36px; max-width: 600px; }

/* ── CATEGORY GRID (home) ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.cat-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: transform 0.2s;
}
.cat-card:hover { transform: translateY(-4px); text-decoration: none; }
.cat-card img { width: 100%; height: 180px; object-fit: cover; }
.cat-card-body { padding: 14px 16px; }
.cat-card h3 { font-family: 'Playfair Display', serif; color: var(--green-dark); font-size: 1.1rem; margin-bottom: 4px; }
.cat-card p { font-size: 0.84rem; color: var(--text-light); }

/* ── HALAL BADGE STRIP ── */
.badge-strip {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  padding: 28px 20px;
}
.badge-strip h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 10px; }
.badge-strip p { font-size: 0.95rem; opacity: 0.85; max-width: 640px; margin: 0 auto 20px; }

/* ── PRODUCT GRID ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card img { width: 100%; height: 200px; object-fit: cover; background: #f0f0e8; }
.product-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--green-pale), #f0f4f0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.product-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; line-height: 1.4; }
.product-sku { font-size: 0.70rem; font-weight: 600; color: var(--text-light); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 4px; }
.product-price { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 4px; }
.product-note { font-size: 0.78rem; color: var(--text-light); margin-bottom: 6px; }
.product-bulk { font-size: 0.75rem; color: var(--green-dark); background: var(--green-pale); border-radius: 4px; padding: 4px 8px; margin-bottom: 10px; flex: 1; }
.product-cta {
  display: block;
  text-align: center;
  background: var(--green-pale);
  color: var(--green-dark);
  padding: 8px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s;
  margin-top: auto;
}
.product-cta:hover { background: var(--green-light); color: var(--white); text-decoration: none; }

/* ── PAGE HERO (collection pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: var(--white);
  padding: 56px 20px;
  text-align: center;
}
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 10px; }
.page-hero p { opacity: 0.85; max-width: 580px; margin: 0 auto; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h3 { font-family: 'Playfair Display', serif; color: var(--green-dark); font-size: 1.3rem; margin-bottom: 16px; }
.contact-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.contact-icon { font-size: 1.3rem; margin-top: 2px; }
.contact-item strong { display: block; color: var(--text-dark); font-size: 0.9rem; }
.contact-item span { color: var(--text-light); font-size: 0.9rem; }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.contact-form h3 { font-family: 'Playfair Display', serif; color: var(--green-dark); font-size: 1.3rem; margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--cream);
  transition: border 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--green-light);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, #2d6a4f 100%);
  text-align: center;
  padding: 60px 20px;
  color: var(--white);
}
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: 1.9rem; margin-bottom: 12px; }
.cta-section p { opacity: 0.85; max-width: 560px; margin: 0 auto 24px; }

/* ── SOLD OUT BADGE ── */
.badge-sold-out {
  display: inline-block;
  background: #e5e5e5;
  color: #888;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .nav-links a { padding: 5px 8px; font-size: 0.82rem; }
  .hero { height: 340px; }
  .section { padding: 40px 16px; }
  .cat-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
}

/* ── PRICING TABLE ── */
.price-table-wrap { overflow-x: auto; margin-bottom: 40px; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}
.price-table th {
  background: var(--green-dark);
  color: #fff;
  padding: 10px 14px;
  text-align: center;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}
.price-table th:first-child { text-align: left; }
.price-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #e8e4d8;
  text-align: center;
  color: var(--text-mid);
}
.price-table td:first-child { text-align: left; font-weight: 500; color: var(--text-dark); }
.price-table tr:nth-child(even) td { background: #f9f6f0; }
.price-table tr:hover td { background: #f0ece2; }
.price-table-note { font-size: 0.8rem; color: var(--text-ligh