/* ═══════════════════════════════════════════════════════════
   PAVAN DURGA NURSERY — DESIGN SYSTEM (main.css)
   Mobile-First | Premium UI | No Bootstrap
═══════════════════════════════════════════════════════════ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── Custom Properties ────────────────────────────────────── */
:root {
  --primary:       #1B5E20;
  --primary-dk:    #14501A;
  --secondary:     #2E7D32;
  --accent:        #66BB6A;
  --gold:          #C8A34A;
  --gold-dk:       #B8922F;
  --whatsapp:      #25D366;
  --whatsapp-dk:   #1ebe5a;
  --bg:            #FFFFFF;
  --bg-light:      #F4FBF5;
  --bg-card:       #FFFFFF;
  --text:          #263238;
  --text-muted:    #607D8B;
  --border:        #E0EDE2;
  --shadow-sm:     0 1px 4px rgba(0,0,0,0.06);
  --shadow:        0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:     0 8px 32px rgba(0,0,0,0.12);
  --radius-sm:     8px;
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --font-body:     'Inter', system-ui, sans-serif;
  --font-head:     'Poppins', system-ui, sans-serif;
  --transition:    all 0.22s cubic-bezier(.4,0,.2,1);
  --container:     1280px;
  --header-h:      120px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 15px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width:768px)  { .container { padding: 0 2rem; } }
@media (min-width:1200px) { .container { padding: 0 2.5rem; } }

/* ── Typography ───────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.25; color: var(--text); }
h1 { font-size: clamp(1.75rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.35rem, 3.5vw, 2rem); }
h3 { font-size: 1.2rem; }
p  { color: var(--text-muted); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .65rem 1.4rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary  { background: var(--primary);   color: #fff;                   }
.btn-primary:hover  { background: var(--primary-dk); }
.btn-secondary{ background: var(--secondary); color: #fff;                   }
.btn-gold     { background: var(--gold);      color: #fff;                   }
.btn-gold:hover     { background: var(--gold-dk); }
.btn-wa       { background: var(--whatsapp);  color: #fff;                   }
.btn-wa:hover       { background: var(--whatsapp-dk); }
.btn-ghost    { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.6); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.25); }
.btn-white    { background: #fff; color: var(--primary); }
.btn-outline  { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-sm  { padding: .45rem 1rem; font-size: .82rem; }
.btn-lg  { padding: .85rem 1.8rem; font-size: .95rem; }
.btn-xl  { padding: 1rem 2rem; font-size: 1rem; border-radius: var(--radius); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; padding: .55rem 1.1rem; border-radius: var(--radius-sm); font-weight: 600; font-size: .85rem; }
.btn-whatsapp:hover { background: var(--whatsapp-dk); }
.w-100 { width: 100%; }
.flex-1 { flex: 1; }

/* ── Form Controls ────────────────────────────────────────── */
.form-control {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  transition: border-color .2s;
  outline: none;
}
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(102,187,106,.15); }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: .35rem; color: var(--text); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width:600px) { .form-grid { grid-template-columns: 1fr; } }

/* ── Alerts ───────────────────────────────────────────────── */
.alert { padding: .85rem 1.1rem; border-radius: var(--radius-sm); margin-bottom: 1rem; font-size: .9rem; }
.alert-error   { background: #FFEBEE; color: #C62828; border-left: 4px solid #EF5350; }
.alert-success { background: #E8F5E9; color: #2E7D32; border-left: 4px solid #66BB6A; }

/* ── Status Badges ────────────────────────────────────────── */
.status-badge {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.status-pending   { background: #FFF8E1; color: #F57F17; }
.status-confirmed { background: #E3F2FD; color: #1565C0; }
.status-shipped   { background: #E8EAF6; color: #283593; }
.status-delivered { background: #E8F5E9; color: #2E7D32; }
.status-cancelled { background: #FFEBEE; color: #C62828; }

/* ── Section ──────────────────────────────────────────────── */
.section { padding: 3.5rem 0; }
.section-tinted { background: var(--bg-light); }
@media (min-width:768px) { .section { padding: 5rem 0; } }

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: .75rem;
}
.section-head h2 { margin: 0; }
.see-all { color: var(--primary); font-weight: 600; font-size: .9rem; transition: color .2s; }
.see-all:hover { color: var(--gold); }

/* ── Product Cards ────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width:600px)  { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width:900px)  { .products-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
@media (min-width:1200px) { .products-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.product-badge {
  position: absolute; top: .6rem; left: .6rem; z-index: 2;
  background: var(--gold); color: #fff; font-size: .72rem; font-weight: 700;
  padding: .25rem .6rem; border-radius: 99px; text-transform: uppercase;
}
.wishlist-btn {
  position: absolute; top: .6rem; right: .6rem; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: none; cursor: pointer;
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.wishlist-btn:hover, .wishlist-btn.active { background: var(--primary); color: #fff; }
.wl-form { display: contents; }

.product-card-img-wrap {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-light);
}
.product-card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card-img-wrap img { transform: scale(1.06); }

.product-card-body {
  padding: .9rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-cat { font-size: .72rem; color: var(--accent); font-weight: 700; text-transform: uppercase; margin-bottom: .2rem; }
.product-card-name {
  font-weight: 600; font-size: .9rem; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  line-height: 1.4; margin-bottom: .5rem;
}
.product-card-name:hover { color: var(--primary); }
.product-card-price { display: flex; align-items: baseline; gap: .5rem; margin-bottom: .65rem; }
.price-main { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: var(--primary); }
.price-old  { font-size: .82rem; color: var(--text-muted); text-decoration: line-through; }
.price-save { font-size: .78rem; color: #E53935; font-weight: 700; }
.product-card-actions { display: flex; gap: .5rem; margin-top: auto; }
.product-card-actions form { flex: 1; }
.product-card-actions .btn { width: 100%; }

/* ── Category Cards ───────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
@media (min-width:500px)  { .categories-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width:768px)  { .categories-grid { grid-template-columns: repeat(6, 1fr); gap: 1rem; } }
@media (min-width:1100px) { .categories-grid { grid-template-columns: repeat(6, 1fr); } }

.cat-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem .75rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  transition: var(--transition);
  cursor: pointer;
}
.cat-card:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-2px); }
.cat-card-icon { font-size: 2rem; line-height: 1; }
.cat-card-name { font-weight: 700; font-size: .82rem; color: var(--text); }
.cat-card-desc { font-size: .72rem; color: var(--text-muted); }

/* ── Page Banner ──────────────────────────────────────────── */
.page-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff; padding: .75rem 0;
}
.page-banner h1 {
  color: #fff; margin: 0;
  font-size: 1.25rem;
  display: flex; align-items: center; gap: .4rem;
  flex-wrap: nowrap; white-space: normal;
}
.page-body { padding: 1.25rem 0 3rem; }
@media (min-width: 768px) {
  .page-banner { padding: 1rem 0; }
  .page-banner h1 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .page-banner { padding: .6rem 0; }
  .page-banner h1 { font-size: 1.05rem; gap: .3rem; }
}

/* ── Data Table ───────────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.data-table th { background: var(--bg-light); padding: .85rem 1rem; font-size: .78rem; color: var(--text-muted); text-align: left; border-bottom: 2px solid var(--border); white-space: nowrap; }
.data-table td { padding: .85rem 1rem; border-bottom: 1px solid var(--border); }
.data-table tr:hover td { background: var(--bg-light); }
.orders-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }

/* ── Cart ─────────────────────────────────────────────────── */
.cart-layout { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width:900px) { .cart-layout { flex-direction: row; align-items: flex-start; } }
.cart-items { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.cart-row {
  display: flex; gap: 1rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1rem; margin-bottom: .5rem;
}
.cart-item-img { width: 80px; height: 80px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: .9rem; color: var(--text); }
.cart-item-price { color: var(--text-muted); font-size: .82rem; margin-top: .2rem; }
.cart-item-total { text-align: right; font-weight: 700; color: var(--primary); white-space: nowrap; }
.btn-remove { font-size: .78rem; color: #E53935; background: none; border: none; cursor: pointer; }
.btn-remove:hover { text-decoration: underline; }

.cart-summary {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; width: 100%;
}
@media (min-width:900px) { .cart-summary { width: 320px; flex-shrink: 0; position: sticky; top: calc(var(--header-h) + 1rem); } }

.summary-row { display: flex; justify-content: space-between; align-items: center; padding: .5rem 0; font-size: .9rem; border-bottom: 1px solid var(--border); }
.summary-row:last-child { border-bottom: none; }
.summary-total { font-weight: 800; font-size: 1.1rem; color: var(--primary); }
.free-shipping-note { background: #E8F5E9; color: #2E7D32; padding: .5rem .75rem; border-radius: var(--radius-sm); font-size: .82rem; margin: .5rem 0; font-weight: 600; }

/* ── Qty Control ──────────────────────────────────────────── */
.qty-control { display: inline-flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.qty-btn { width: 36px; height: 36px; background: var(--bg-light); font-size: 1.1rem; font-weight: 700; border: none; cursor: pointer; transition: background .15s; }
.qty-btn:hover { background: var(--border); }
.qty-input { width: 48px; height: 36px; border: none; border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border); text-align: center; font-weight: 600; font-size: .95rem; }
.qty-row { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

/* ── Checkout ─────────────────────────────────────────────── */
.checkout-layout { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width:900px) { .checkout-layout { flex-direction: row; align-items: flex-start; } }
.checkout-form-wrap { flex: 1; }
.checkout-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.checkout-summary { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; }
@media (min-width:900px) { .checkout-summary { width: 320px; flex-shrink: 0; position: sticky; top: calc(var(--header-h) + 1rem); } }
.checkout-item { display: flex; justify-content: space-between; padding: .5rem 0; font-size: .88rem; border-bottom: 1px solid var(--border); }
.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: .5rem; }
.payment-option input { display: none; }
.payment-card { border: 2px solid var(--border); border-radius: var(--radius); padding: 1rem; text-align: center; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: .4rem; font-weight: 600; font-size: .9rem; transition: var(--transition); }
.payment-option input:checked + .payment-card { border-color: var(--primary); background: var(--bg-light); }

/* ── Order Success ────────────────────────────────────────── */
.order-success-box { background: var(--bg-light); border-radius: var(--radius); padding: 1.5rem; margin-top: 1.5rem; }
.order-success-row { display: flex; justify-content: space-between; padding: .5rem 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.order-success-row:last-child { border-bottom: none; }

/* ── Auth Pages ───────────────────────────────────────────── */
.auth-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 2rem 1.25rem; background: var(--bg-light); }
.auth-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 2.5rem; width: 100%; max-width: 440px; }
.auth-logo { font-size: 3rem; text-align: center; margin-bottom: .75rem; }
.auth-card h2 { text-align: center; margin-bottom: .25rem; }
.auth-sub { text-align: center; color: var(--text-muted); font-size: .88rem; margin-bottom: 1.5rem; }
.auth-switch { text-align: center; margin-top: 1.25rem; font-size: .9rem; color: var(--text-muted); }
.auth-switch a { color: var(--primary); font-weight: 600; }

/* ── Account ──────────────────────────────────────────────── */
.account-layout { display: flex; gap: 2rem; flex-direction: column; }
@media (min-width:768px) { .account-layout { flex-direction: row; } }
.account-sidebar { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; text-align: center; flex-shrink: 0; }
@media (min-width:768px) { .account-sidebar { width: 240px; position: sticky; top: calc(var(--header-h) + 1rem); height: fit-content; } }
.account-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 2rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.account-name { font-weight: 700; font-size: 1.1rem; }
.account-email { color: var(--text-muted); font-size: .82rem; margin-top: .2rem; }
.account-nav { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .25rem; text-align: left; }
.acc-nav-link { display: block; padding: .75rem 1rem; border-radius: var(--radius-sm); color: var(--text); font-size: .9rem; font-weight: 500; transition: var(--transition); }
.acc-nav-link:hover, .acc-nav-link.active { background: var(--bg-light); color: var(--primary); font-weight: 600; }
.account-main { flex: 1; }
.account-main h2 { margin-bottom: 1.25rem; }

/* ── Empty State ──────────────────────────────────────────── */
.empty-state { text-align: center; padding: 4rem 1.25rem; }
.empty-state h2 { margin: .5rem 0; }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb { font-size: .82rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── Product Page Layout ──────────────────────────────────── */
.product-layout { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width:768px) { .product-layout { flex-direction: row; gap: 3rem; } }
.product-gallery { flex: 1; }
.gallery-main { border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-light); aspect-ratio: 1; }
.gallery-main-img { width: 100%; height: 100%; object-fit: contain; transition: opacity .2s; }
.gallery-thumbs { display: flex; gap: .5rem; margin-top: .75rem; flex-wrap: wrap; }
.gallery-thumb { width: 68px; height: 68px; object-fit: cover; border-radius: var(--radius-sm); border: 2px solid var(--border); cursor: pointer; transition: border-color .2s; }
.gallery-thumb:hover { border-color: var(--primary); }
.product-details { flex: 1; }
.product-cat-tag { font-size: .78rem; color: var(--accent); font-weight: 700; text-transform: uppercase; margin-bottom: .4rem; }
.product-title { font-size: 1.75rem; margin-bottom: .75rem; }
.product-price-row { display: flex; align-items: baseline; gap: .75rem; margin-bottom: 1rem; }
.price-main-lg { font-size: 2rem; font-weight: 800; color: var(--primary); }
.price-old-lg  { font-size: 1.1rem; color: var(--text-muted); text-decoration: line-through; }
.product-short-desc { color: var(--text-muted); margin-bottom: 1.5rem; }
.product-add-form { margin-bottom: 1rem; }
.specs-box { margin-top: 1.5rem; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; }
.specs-box h3 { margin-bottom: 1rem; font-size: 1rem; }
.specs-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: .55rem 0; }
.specs-table td:first-child { color: var(--text-muted); width: 45%; }
.specs-table td:last-child { font-weight: 600; }
.shipping-info { margin-top: 1.25rem; background: var(--bg-light); border-radius: var(--radius); padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.shipping-info > div { display: flex; gap: .75rem; font-size: .85rem; align-items: flex-start; }
.product-description { margin-top: 2.5rem; padding: 2rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); }
.product-description h2 { margin-bottom: 1rem; }
.desc-content { color: var(--text-muted); line-height: 1.85; }
.product-reviews { margin-top: 2.5rem; }
.product-reviews h2 { margin-bottom: 1.5rem; }
.related-products { margin-top: 2.5rem; }
.related-products h2 { margin-bottom: 1.5rem; }

/* ── Reviews Grid ─────────────────────────────────────────── */
.reviews-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width:600px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width:900px) { .reviews-grid { grid-template-columns: repeat(4, 1fr); } }
.review-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow-sm); }
.review-stars { font-size: 1rem; margin-bottom: .5rem; }
.review-text { font-size: .88rem; color: var(--text-muted); margin-bottom: 1rem; font-style: italic; line-height: 1.7; }
.review-author { display: flex; align-items: center; gap: .75rem; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ── Filters ──────────────────────────────────────────────── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 1rem; align-items: flex-end; background: #fff; border: 1px solid var(--border); padding: 1rem 1.25rem; border-radius: var(--radius); }
.filter-group { display: flex; flex-direction: column; gap: .3rem; }
.filter-group label { font-size: .78rem; font-weight: 600; color: var(--text-muted); }
.filter-input { width: 130px; }

/* ── Why Grid ─────────────────────────────────────────────── */
.why-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr 1fr; }
@media (min-width:768px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width:1100px) { .why-grid { grid-template-columns: repeat(6, 1fr); } }
.why-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 1.25rem; text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); }
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.why-icon { font-size: 2.2rem; margin-bottom: .6rem; }
.why-card h3 { font-size: .9rem; margin-bottom: .3rem; }
.why-card p { font-size: .8rem; color: var(--text-muted); }

/* ── Purpose Grid ─────────────────────────────────────────── */
.purpose-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (min-width:768px) { .purpose-grid { grid-template-columns: repeat(8, 1fr); } }
.purpose-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem .75rem; text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: .4rem; transition: var(--transition); cursor: pointer;
}
.purpose-card:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-2px); }
.purpose-icon { font-size: 1.8rem; }
.purpose-label { font-size: .78rem; font-weight: 700; color: var(--text); }

/* ── Seasonal Grid ────────────────────────────────────────── */
.seasonal-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width:600px) { .seasonal-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width:900px) { .seasonal-grid { grid-template-columns: 1fr 1fr 1fr; } }
.seasonal-card {
  border-radius: var(--radius-lg); min-height: 220px; display: flex; align-items: flex-end;
  position: relative; overflow: hidden; cursor: pointer;
  background-size: cover; background-position: center;
  transition: transform .3s;
}
.seasonal-card:hover { transform: scale(1.02); }
.sc-monsoon { background: linear-gradient(135deg, #1B5E20, #4CAF50); }
.sc-summer  { background: linear-gradient(135deg, #E65100, #FF8F00); }
.sc-fruit   { background: linear-gradient(135deg, #880E4F, #E91E63); }
.sc-content { padding: 1.5rem; color: #fff; position: relative; z-index: 2; }
.seasonal-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.55), transparent); }
.sc-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; opacity: .9; margin-bottom: .3rem; }
.sc-content h3 { font-size: 1.2rem; color: #fff; margin-bottom: .75rem; }

/* ── Visit Grid ───────────────────────────────────────────── */
.visit-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width:768px) { .visit-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.map-embed iframe { width: 100%; height: 360px; border-radius: var(--radius-lg); border: none; }
.visit-info h3 { margin-bottom: 1rem; }
.visit-info p { color: var(--text-muted); margin-bottom: .5rem; }
.visit-btns { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }

/* ── YouTube Videos ───────────────────────────────────────── */
.videos-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width:768px) { .videos-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.video-embed-wrap iframe { width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-lg); border: none; }
.video-info-badge { font-size: .78rem; font-weight: 700; text-transform: uppercase; color: var(--accent); margin-bottom: .5rem; }
.video-info h3 { margin-bottom: .75rem; }
.video-info p { color: var(--text-muted); margin-bottom: 1.25rem; }

/* ── WhatsApp Float ───────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: var(--transition);
  animation: floatPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.12); }
@keyframes floatPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,.75); }
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { background: #0D3B14; color: rgba(255,255,255,.85); margin-top: auto; }
.footer-main { padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width:600px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width:1000px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: #fff; margin-bottom: .75rem; }
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.65); margin-bottom: 1rem; line-height: 1.7; }
.footer-contact { display: block; color: rgba(255,255,255,.75); font-size: .85rem; margin-bottom: .35rem; transition: color .2s; }
.footer-contact:hover { color: var(--accent); }
.footer-col h4 { font-family: var(--font-head); font-size: .88rem; text-transform: uppercase; letter-spacing: .05em; color: rgba(255,255,255,.5); margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(255,255,255,.75); font-size: .88rem; margin-bottom: .45rem; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-col p { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: .35rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.25rem 0; font-size: .8rem; color: rgba(255,255,255,.5); text-align: center; }

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
