/* =========================================================
   IDUKKI ESSENTIALS — BRAND STYLESHEET
   ========================================================= */

:root {
  --green: #234A33;
  --green-dark: #142B1E;
  --green-light: #34624B;
  --cream: #FAF6EE;
  --cream-dark: #F0E9D8;
  --gold: #C4943C;
  --text: #2B2B28;
  --text-light: #6B6B62;
  --white: #FFFFFF;
  --radius: 8px;
  --shadow: 0 6px 24px rgba(20, 43, 30, 0.10);
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Lora', serif;
  color: var(--green);
  line-height: 1.25;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; }

.section-label {
  display: block;
  text-align: center;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.section-title {
  text-align: center;
  font-size: 2.1rem;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto 48px;
  font-size: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  font-size: 0.95rem;
}
.btn-primary {
  background: var(--green);
  color: var(--cream);
}
.btn-primary:hover { background: var(--gold); color: var(--green-dark); }
.btn-outline {
  background: transparent;
  border-color: var(--cream);
  color: var(--cream);
}
.btn-outline:hover { background: var(--cream); color: var(--green); }
.hero .btn-outline {
  border-color: var(--green);
  color: var(--green);
}
.hero .btn-outline:hover { background: var(--green); color: var(--cream); }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 11px 22px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
}
.btn-whatsapp:hover { filter: brightness(1.06); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(35,74,51,0.12);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1140px;
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo span {
  font-family: 'Lora', serif;
  font-weight: 700;
  color: var(--green);
  font-size: 1.15rem;
  letter-spacing: 0.5px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-menu a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
}
.nav-menu a:hover { color: var(--gold); }
.nav-menu .btn-whatsapp { color: #fff; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--green); }

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  text-align: center;
  padding: 90px 24px 70px;
}
.hero-eyebrow {
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 2.75rem;
  max-width: 780px;
  margin: 0 auto 20px;
}
.hero p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 34px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-products-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 34px;
  color: var(--text-light);
  font-size: 0.95rem;
}
.hero-products-row span:not(:last-child)::after {
  content: "•";
  margin-left: 12px;
  color: var(--gold);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.product-image img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.product-info { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-category {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.product-info h3 { font-size: 1.3rem; }
.local-name { font-size: 0.95rem; color: var(--text-light); font-weight: 400; font-family: 'Poppins', sans-serif; }
.product-tagline { color: var(--gold); font-size: 0.85rem; font-weight: 500; }
.product-desc { color: var(--text-light); font-size: 0.9rem; flex: 1; }

.size-selector { display: flex; gap: 8px; flex-wrap: wrap; margin: 6px 0; }
.size-btn {
  padding: 7px 14px;
  border: 1.5px solid rgba(35,74,51,0.25);
  background: transparent;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.82rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  transition: all .15s ease;
}
.size-btn:hover { border-color: var(--green); }
.size-btn.active { background: var(--green); border-color: var(--green); color: var(--cream); }

.product-order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  gap: 10px;
}
.product-price { font-size: 1.25rem; font-weight: 600; color: var(--green); font-family: 'Lora', serif; }

/* About */
.about { background: var(--green); color: var(--cream); }
.about .section-title, .about h2 { color: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about-text p { margin-bottom: 16px; color: rgba(250,246,238,0.85); }
.about-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-features li {
  background: rgba(250,246,238,0.06);
  border: 1px solid rgba(250,246,238,0.15);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.about-features strong { color: var(--gold); display: block; margin-bottom: 4px; font-family: 'Lora', serif; }

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

/* Contact */
.contact { text-align: center; }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 20px;
  box-shadow: var(--shadow);
}
.contact-card .icon { font-size: 1.8rem; margin-bottom: 10px; }
.contact-card h4 { font-size: 1rem; margin-bottom: 6px; }
.contact-card p, .contact-card a { color: var(--text-light); font-size: 0.92rem; }
.contact-card a:hover { color: var(--gold); }

.shipping-note {
  max-width: 700px;
  margin: 40px auto 0;
  text-align: center;
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 22px 28px;
  color: var(--text-light);
  font-size: 0.92rem;
}

/* Footer */
.site-footer {
  background: var(--green-dark);
  color: rgba(250,246,238,0.75);
  padding: 40px 24px 26px;
  text-align: center;
  font-size: 0.88rem;
}
.site-footer .footer-brand {
  font-family: 'Lora', serif;
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.site-footer a:hover { color: var(--gold); }
.site-footer .footer-links { margin-top: 10px; }
.site-footer .footer-links a { margin: 0 10px; }

/* Floating WhatsApp button */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.28);
  z-index: 999;
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* Responsive nav */
@media (max-width: 780px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    display: none;
    border-bottom: 1px solid rgba(35,74,51,0.12);
  }
  .nav-menu.open { display: flex; }
  .hero h1 { font-size: 2rem; }
}
