/* Shree Laxmi Store — Eco-Friendly Disposable Paper Plates
   Green & natural theme. Pure CSS, no build step. */

:root {
  --green-900: #1b4332;
  --green-700: #2d6a4f;
  --green-500: #40916c;
  --green-300: #74c69d;
  --green-100: #d8f3dc;
  --cream: #f7f9f4;
  --kraft: #e9e2d0;
  --ink: #1c2620;
  --muted: #5a6b60;
  --white: #ffffff;
  --shadow: 0 8px 30px rgba(27, 67, 50, 0.10);
  --radius: 14px;
  --maxw: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 244, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(45, 106, 79, 0.12);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green-900);
}
.brand:hover { text-decoration: none; }

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  background: #fff;
  box-shadow: 0 2px 8px rgba(27, 67, 50, 0.12);
}
.brand small { display: block; font-weight: 500; font-size: 0.72rem; color: var(--muted); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-weight: 600;
  color: var(--ink);
  padding: 6px 2px;
}
.nav-links a.active { color: var(--green-700); }
.nav-links a:hover { color: var(--green-700); text-decoration: none; }

.nav-cta {
  background: var(--green-700);
  color: var(--white) !important;
  padding: 10px 18px !important;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--green-900); text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--green-900);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, background .2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--green-700); color: var(--white); }
.btn-primary:hover { background: var(--green-900); }
.btn-ghost { background: transparent; color: var(--green-700); border-color: var(--green-300); }
.btn-ghost:hover { background: var(--green-100); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(116,198,157,0.25), transparent 45%),
    linear-gradient(160deg, var(--green-100) 0%, var(--cream) 60%);
  padding: 80px 0 90px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: var(--white);
  color: var(--green-700);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
  line-height: 1.12;
  color: var(--green-900);
  margin-bottom: 18px;
}
.hero h1 span { color: var(--green-500); }
.hero p.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  border: 1px solid rgba(45,106,79,0.10);
}
.hero-card .emoji-plate {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 16px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: center;
}
.hero-stats .num { font-size: 1.5rem; font-weight: 800; color: var(--green-700); }
.hero-stats .label { font-size: 0.78rem; color: var(--muted); }

/* ---------- Sections ---------- */
section { padding: 70px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--green-900);
  margin-bottom: 12px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Features ---------- */
.features { background: var(--white); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--cream);
  border: 1px solid rgba(45,106,79,0.10);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card .ico {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: var(--green-100);
  border-radius: 14px;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.card h3 { color: var(--green-900); margin-bottom: 8px; font-size: 1.18rem; }
.card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Products ---------- */
.products { background: var(--kraft); }
.products .cards { grid-template-columns: repeat(4, 1fr); }
.product {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow);
}
.product .thumb {
  font-size: 3.4rem;
  padding: 34px 0 22px;
  background: linear-gradient(160deg, var(--green-100), var(--white));
}
.product .body { padding: 18px 16px 24px; }
.product h3 { font-size: 1.05rem; color: var(--green-900); margin-bottom: 4px; }
.product p { font-size: 0.85rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: var(--white);
  text-align: center;
  border-radius: var(--radius);
  padding: 56px 30px;
  margin: 70px auto;
  max-width: var(--maxw);
}
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.cta-band p { opacity: 0.92; margin-bottom: 26px; }
.cta-band .btn-primary { background: var(--white); color: var(--green-900); }
.cta-band .btn-primary:hover { background: var(--green-100); }

/* ---------- Contact ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--green-100), var(--cream));
  padding: 60px 0;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--green-900); }
.page-hero p { color: var(--muted); margin-top: 10px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.info-list { list-style: none; display: grid; gap: 18px; }
.info-item {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid rgba(45,106,79,0.10);
  border-radius: var(--radius);
  padding: 20px;
}
.info-item .ico {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  background: var(--green-100);
  border-radius: 12px;
  font-size: 1.3rem;
}
.info-item h4 { color: var(--green-900); font-size: 1rem; margin-bottom: 2px; }
.info-item p, .info-item a { color: var(--muted); font-size: 0.95rem; }

.contact-form {
  background: var(--white);
  border: 1px solid rgba(45,106,79,0.10);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input, .field textarea {
  width: 100%;
  font: inherit;
  padding: 12px 14px;
  border: 1.5px solid var(--kraft);
  border-radius: 10px;
  background: var(--cream);
  transition: border .2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { width: 100%; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 12px; text-align: center; }

/* ---------- Map ---------- */
.map-section { padding-top: 0; }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(45,106,79,0.10);
  line-height: 0;
}
.map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
@media (max-width: 540px) {
  .map-embed iframe { height: 320px; }
}

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform .18s ease, box-shadow .18s ease;
}
.wa-float:hover {
  text-decoration: none;
  color: #fff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.55);
}
.wa-float svg { width: 26px; height: 26px; fill: #fff; flex: none; }
.wa-float .wa-label { font-size: 0.95rem; }

@media (max-width: 540px) {
  .wa-float { padding: 14px; }
  .wa-float .wa-label { display: none; } /* icon-only on small screens */
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: #cfe9da;
  padding: 50px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.site-footer h4 { color: var(--white); margin-bottom: 14px; font-size: 1rem; }
.site-footer a { color: #cfe9da; }
.site-footer a:hover { color: var(--white); }
.site-footer ul { list-style: none; display: grid; gap: 8px; }
.footer-logo {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  margin-bottom: 6px;
}
.footer-brand p { max-width: 320px; opacity: 0.85; margin-top: 10px; font-size: 0.92rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { order: -1; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .products .cards { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--cream);
    padding: 16px 20px 22px;
    border-bottom: 1px solid rgba(45,106,79,0.12);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 10px 0; }
  .nav-cta { width: 100%; text-align: center; margin-top: 6px; }
}

@media (max-width: 540px) {
  .cards, .products .cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 60px; }
}
