/* ============================================================
   AK FISHERS — Shared Design System
   Fresh From The Sea To Your Doorstep
   ============================================================ */

:root {
  /* Brand palette */
  --ocean-900: #06283d;
  --ocean-800: #0a3a55;
  --ocean-700: #0e4d6e;
  --ocean-600: #13618a;
  --ocean-500: #1a7fb0;
  --ocean-400: #2b9cc9;
  --ocean-300: #5cb8d9;
  --ocean-200: #9ad8ec;
  --ocean-100: #d3eef7;
  --ocean-50: #eef8fc;

  --navy: #0b1f33;
  --aqua: #22b8e0;
  --aqua-soft: #e3f7fc;

  --sea-green: #0e9f8a;
  --sea-green-dark: #0b7f6e;
  --sea-green-soft: #e2f5f1;

  --ink: #12283a;
  --ink-soft: #3d5568;
  --muted: #6b8294;
  --line: #e2ebf1;
  --line-soft: #eef3f7;

  --white: #ffffff;
  --off-white: #f6f9fb;
  --sand: #fbf7f0;

  --success: #1a9e6c;
  --warning: #e8a13c;
  --danger: #d64545;

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Elevation */
  --shadow-xs: 0 1px 2px rgba(6, 40, 61, 0.06);
  --shadow-sm: 0 2px 8px rgba(6, 40, 61, 0.08);
  --shadow-md: 0 6px 20px rgba(6, 40, 61, 0.1);
  --shadow-lg: 0 14px 40px rgba(6, 40, 61, 0.16);
  --shadow-brand: 0 10px 30px rgba(18, 127, 176, 0.28);

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-pill: 999px;

  /* Layout */
  --container: 1240px;
  --header-h: 72px;
  --header-h-mobile: 62px;
}

/* ---------- 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(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 15.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.18; color: var(--ink); letter-spacing: -0.01em; }

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

.section { padding: 72px 0; }
.section--tint { background: var(--off-white); }
.section--ocean { background: var(--ocean-900); color: #dcebf4; }
.section--sand { background: var(--sand); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ocean-500);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--aqua); border-radius: 2px; }
.eyebrow--light { color: var(--ocean-200); }

.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 10px 0 12px; }
.section-head p { color: var(--muted); font-size: 16px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::after { content: ""; width: 26px; height: 2px; background: var(--aqua); border-radius: 2px; }

.section--ocean .section-head h2 { color: #fff; }
.section--ocean .section-head p { color: #a9c6d8; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 15px; line-height: 1;
  padding: 14px 26px; border-radius: var(--r-md);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap; border: 1.5px solid transparent;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn--primary { background: var(--ocean-600); color: #fff; box-shadow: var(--shadow-brand); }
.btn--primary:hover { background: var(--ocean-700); box-shadow: 0 14px 34px rgba(18, 127, 176, 0.36); }

.btn--aqua { background: var(--aqua); color: var(--navy); box-shadow: 0 10px 26px rgba(34, 184, 224, 0.35); }
.btn--aqua:hover { background: #19a9d1; }

.btn--outline { background: transparent; color: var(--ocean-600); border-color: var(--ocean-400); }
.btn--outline:hover { background: var(--ocean-50); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn--outline-light:hover { background: rgba(255, 255, 255, 0.1); }

.btn--white { background: #fff; color: var(--ocean-700); box-shadow: var(--shadow-md); }
.btn--white:hover { background: var(--ocean-50); }

.btn--ghost { background: transparent; color: var(--ink-soft); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ocean-400); color: var(--ocean-600); }

.btn--danger-ghost { background: transparent; color: var(--danger); border-color: #f0c4c4; }
.btn--danger-ghost:hover { background: #fdf1f1; }

.btn--sm { padding: 10px 16px; font-size: 13.5px; border-radius: var(--r-sm); }
.btn--lg { padding: 17px 34px; font-size: 16px; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; box-shadow: none; }

/* ---------- Badges / chips ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em;
  padding: 4px 10px; border-radius: var(--r-pill);
}
.badge--discount { background: #fdecec; color: var(--danger); }
.badge--new { background: var(--sea-green-soft); color: var(--sea-green-dark); }
.badge--bestseller { background: #fdf3e0; color: #b97a12; }
.badge--stock { background: var(--ocean-50); color: var(--ocean-600); }
.badge--soldout { background: #eef1f4; color: var(--muted); }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--ink-soft);
  padding: 8px 14px; border-radius: var(--r-pill);
  border: 1.5px solid var(--line); background: #fff;
  transition: all 0.18s ease; cursor: pointer;
}
.chip:hover { border-color: var(--ocean-400); color: var(--ocean-600); }
.chip.active { background: var(--ocean-600); border-color: var(--ocean-600); color: #fff; }

/* ---------- Forms ---------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); margin-bottom: 7px; }
.field label .req { color: var(--danger); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: var(--r-md);
  background: #fff; color: var(--ink); font-size: 15px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--ocean-400); box-shadow: 0 0 0 3px rgba(43, 156, 201, 0.15);
}
.field textarea { resize: vertical; min-height: 90px; }
.field .hint { font-size: 12.5px; color: var(--muted); margin-top: 5px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-row--3 { grid-template-columns: 1fr 1fr 1fr; }

.input-group { display: flex; }
.input-group input { border-radius: var(--r-md) 0 0 var(--r-md); }
.input-group .btn { border-radius: 0 var(--r-md) var(--r-md) 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: var(--shadow-xs);
}
.top-strip {
  background: var(--ocean-900); color: #cfe6f2;
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.02em;
  padding: 7px 0; text-align: center;
}
.top-strip strong { color: #fff; }
.top-strip .strip-inner { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }

.header-main { display: flex; align-items: center; gap: 18px; height: var(--header-h); }

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(150deg, var(--ocean-700), var(--ocean-500) 55%, var(--aqua));
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 6px 16px rgba(18, 127, 176, 0.35);
  position: relative; overflow: hidden;
}
.logo-mark svg { width: 26px; height: 26px; }
.logo-mark::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.35), transparent 55%);
}
.logo-text { line-height: 1.1; }
.logo-text .name { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--navy); letter-spacing: 0.01em; }
.logo-text .name span { color: var(--ocean-500); }
.logo-text .tag { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* Location selector */
.loc-selector { display: flex; align-items: center; gap: 8px; padding: 8px 14px; border: 1.5px solid var(--line); border-radius: var(--r-md); cursor: pointer; transition: border-color 0.18s ease; background: #fff; }
.loc-selector:hover { border-color: var(--ocean-400); }
.loc-selector .loc-icon { color: var(--ocean-500); display: grid; place-items: center; }
.loc-selector .loc-label { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.loc-selector .loc-value { font-size: 13.5px; font-weight: 700; color: var(--ink); }

/* Search */
.header-search { flex: 1; max-width: 460px; position: relative; }
.header-search input {
  width: 100%; padding: 11px 42px 11px 16px;
  border: 1.5px solid var(--line); border-radius: var(--r-pill);
  background: var(--off-white); font-size: 14.5px; outline: none;
  transition: all 0.18s ease;
}
.header-search input:focus { border-color: var(--ocean-400); background: #fff; box-shadow: 0 0 0 3px rgba(43, 156, 201, 0.12); }
.header-search .search-icon { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--ocean-500); display: grid; place-items: center; }
.search-suggest { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-lg); border: 1px solid var(--line-soft); overflow: hidden; display: none; z-index: 60; }
.search-suggest.open { display: block; }
.search-suggest a { display: flex; align-items: center; gap: 12px; padding: 10px 16px; font-size: 14px; color: var(--ink-soft); }
.search-suggest a:hover { background: var(--ocean-50); }
.search-suggest a img { width: 38px; height: 38px; border-radius: 8px; object-fit: cover; }
.search-suggest .s-name { font-weight: 600; color: var(--ink); }
.search-suggest .s-marathi { font-size: 12px; color: var(--muted); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.h-action {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 7px 10px; border-radius: var(--r-md); color: var(--ink-soft);
  font-size: 11px; font-weight: 600; transition: background 0.15s ease, color 0.15s ease;
  position: relative;
}
.h-action:hover { background: var(--ocean-50); color: var(--ocean-600); }
.h-action svg { width: 21px; height: 21px; }
.h-action .cart-count {
  position: absolute; top: 2px; right: 4px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--danger); color: #fff; font-size: 10.5px; font-weight: 700;
  border-radius: var(--r-pill); display: grid; place-items: center;
  border: 2px solid #fff;
}
.h-action--mobile { display: none; }

/* Nav bar */
.nav-bar { border-top: 1px solid var(--line-soft); background: #fff; }
.nav-inner { display: flex; align-items: center; gap: 4px; height: 46px; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; font-size: 14px; font-weight: 600; color: var(--ink-soft);
  border-radius: var(--r-sm); transition: all 0.15s ease; position: relative;
}
.nav-link:hover { color: var(--ocean-600); background: var(--ocean-50); }
.nav-link.active { color: var(--ocean-600); }
.nav-link.active::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px; background: var(--aqua); border-radius: 2px; }
.nav-link .caret { font-size: 9px; color: var(--muted); }

/* Mega menu */
.mega { position: relative; }
.mega-panel {
  position: absolute; top: calc(100% + 10px); left: 0; width: 760px;
  background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-soft); padding: 22px;
  display: none; z-index: 90;
}
.mega:hover .mega-panel, .mega:focus-within .mega-panel { display: grid; }
.mega-panel { grid-template-columns: repeat(3, 1fr); gap: 8px 20px; }
.mega-panel a { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: var(--r-sm); font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.mega-panel a:hover { background: var(--ocean-50); color: var(--ocean-600); }
.mega-panel a img { width: 40px; height: 40px; border-radius: 9px; object-fit: cover; }
.mega-panel a small { display: block; font-size: 11.5px; font-weight: 500; color: var(--muted); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1100; visibility: hidden; opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.mobile-menu.open { visibility: visible; opacity: 1; }
.mobile-menu .mm-backdrop { position: absolute; inset: 0; background: rgba(6, 40, 61, 0.55); backdrop-filter: blur(3px); }
.mobile-menu .mm-panel {
  position: absolute; top: 0; bottom: 0; left: 0; width: min(340px, 88vw);
  background: #fff; overflow-y: auto; padding: 20px;
  transform: translateX(-100%); transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open .mm-panel { transform: translateX(0); }
.mm-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mm-close { width: 38px; height: 38px; border-radius: var(--r-md); display: grid; place-items: center; background: var(--off-white); color: var(--ink-soft); }
.mm-search { position: relative; margin-bottom: 16px; }
.mm-search input { width: 100%; padding: 11px 14px; border: 1.5px solid var(--line); border-radius: var(--r-md); background: var(--off-white); font-size: 14.5px; outline: none; }
.mm-group { margin-bottom: 18px; }
.mm-group h4 { font-family: var(--font-body); font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.mm-group a { display: flex; align-items: center; gap: 12px; padding: 11px 8px; border-radius: var(--r-sm); font-size: 15px; font-weight: 600; color: var(--ink); }
.mm-group a:hover { background: var(--ocean-50); color: var(--ocean-600); }
.mm-group a img { width: 34px; height: 34px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.mm-group a svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--ocean-500); }
.mm-group a .mm-arrow { margin-left: auto; color: var(--muted); font-size: 12px; }
.mm-divider { height: 1px; background: var(--line-soft); margin: 14px 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #b9cddb; }
.footer-top { padding: 60px 0 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .logo-text .name { color: #fff; }
.footer-brand .logo-text .tag { color: #7fa3b8; }
.footer-brand p { margin: 16px 0 20px; font-size: 14px; line-height: 1.7; color: #9db8c9; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.07); display: grid; place-items: center;
  color: #cfe6f2; transition: all 0.18s ease;
}
.footer-social a:hover { background: var(--aqua); color: var(--navy); transform: translateY(-2px); }
.footer-social svg { width: 17px; height: 17px; }

.footer-col h4 { font-family: var(--font-body); color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; color: #9db8c9; transition: color 0.15s ease, padding-left 0.15s ease; }
.footer-col ul a:hover { color: var(--aqua); padding-left: 4px; }

.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 14px; color: #9db8c9; }
.footer-contact svg { width: 17px; height: 17px; color: var(--aqua); flex-shrink: 0; margin-top: 3px; }
.footer-contact a:hover { color: var(--aqua); }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px; color: #7fa3b8; }
.footer-bottom .pay-badges { display: flex; gap: 8px; align-items: center; }
.footer-bottom .pay-badges span { font-size: 11px; font-weight: 700; letter-spacing: 0.05em; padding: 4px 9px; border-radius: 5px; background: rgba(255,255,255,0.08); color: #cfe6f2; }

/* ---------- Product cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  overflow: hidden; transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  display: flex; flex-direction: column; position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--ocean-200); }
.product-card .pc-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--off-white); }
.product-card .pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .pc-media img { transform: scale(1.05); }
.product-card .pc-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.product-card .pc-wish {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.92); display: grid; place-items: center;
  color: var(--muted); box-shadow: var(--shadow-sm); transition: all 0.18s ease;
}
.product-card .pc-wish:hover { color: var(--danger); transform: scale(1.08); }
.product-card .pc-wish.active { color: var(--danger); }
.product-card .pc-wish svg { width: 18px; height: 18px; }
.product-card .pc-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.product-card .pc-name { font-family: var(--font-display); font-size: 17.5px; font-weight: 600; color: var(--ink); }
.product-card .pc-marathi { font-size: 12.5px; color: var(--muted); font-weight: 500; margin-top: 1px; }
.product-card .pc-desc { font-size: 13px; color: var(--muted); margin-top: 7px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card .pc-meta { display: flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 12px; color: var(--muted); flex-wrap: wrap; }
.product-card .pc-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line); }
.product-card .pc-price-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 8px; margin-top: 12px; }
.product-card .pc-price { font-size: 18px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.product-card .pc-price small { font-size: 12.5px; font-weight: 600; color: var(--muted); white-space: nowrap; }
.product-card .pc-price-old { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.product-card .pc-actions { display: flex; gap: 8px; margin-top: auto; padding-top: 14px; }
.product-card .pc-actions .btn { flex: 1; padding: 11px 12px; font-size: 13.5px; }
.product-card .pc-actions .btn--qty { flex: 0 0 auto; width: 42px; padding: 0; font-size: 18px; font-weight: 700; }

/* ---------- Category cards ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4 / 4.6; display: block; isolation: isolate;
  box-shadow: var(--shadow-sm); transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.6s ease; }
.cat-card:hover img { transform: scale(1.07); }
.cat-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(6, 40, 61, 0) 30%, rgba(6, 40, 61, 0.88) 100%); }
.cat-card .cc-label { position: absolute; left: 16px; right: 16px; bottom: 16px; color: #fff; }
.cat-card .cc-label h3 { font-family: var(--font-display); font-size: 19px; color: #fff; }
.cat-card .cc-label p { font-size: 12.5px; color: #cfe6f2; margin-top: 2px; }
.cat-card .cc-count { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,0.92); color: var(--ocean-700); font-size: 11.5px; font-weight: 700; padding: 4px 10px; border-radius: var(--r-pill); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--ocean-900); color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.42; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(6, 40, 61, 0.94) 0%, rgba(6, 40, 61, 0.78) 45%, rgba(6, 40, 61, 0.35) 100%); }
.hero-inner { position: relative; z-index: 1; padding: 96px 0 110px; max-width: 660px; }
.hero .hero-kicker { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22); padding: 7px 14px; border-radius: var(--r-pill); font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em; color: #d3eef7; margin-bottom: 22px; backdrop-filter: blur(4px); }
.hero h1 { font-size: clamp(34px, 5vw, 56px); color: #fff; line-height: 1.08; margin-bottom: 18px; }
.hero h1 .accent { color: var(--aqua); }
.hero p.lead { font-size: 17px; color: #c3dbe9; max-width: 540px; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; gap: 26px; flex-wrap: wrap; }
.hero-trust .ht { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; color: #d3eef7; }
.hero-trust .ht svg { width: 20px; height: 20px; color: var(--aqua); flex-shrink: 0; }
.hero-stats { position: absolute; right: 0; bottom: 0; z-index: 1; display: flex; gap: 0; background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); border-radius: var(--r-lg) 0 0 0; border-top: 1px solid rgba(255,255,255,0.14); border-left: 1px solid rgba(255,255,255,0.14); }
.hero-stats .hs { padding: 20px 30px; text-align: center; }
.hero-stats .hs + .hs { border-left: 1px solid rgba(255,255,255,0.14); }
.hero-stats .hs b { display: block; font-family: var(--font-display); font-size: 26px; color: #fff; }
.hero-stats .hs span { font-size: 12px; color: #a9c6d8; font-weight: 600; letter-spacing: 0.04em; }

/* ---------- Freshness promise ---------- */
.promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.promise-card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  padding: 30px 24px; text-align: center; transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.promise-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.promise-card .pc-icon {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 18px;
  background: var(--ocean-50); color: var(--ocean-600);
  display: grid; place-items: center; font-size: 28px;
}
.promise-card h3 { font-size: 17px; margin-bottom: 8px; }
.promise-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step-card { position: relative; background: #fff; border-radius: var(--r-lg); padding: 30px 24px 26px; border: 1px solid var(--line-soft); }
.step-card::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 44px; font-weight: 700;
  color: var(--ocean-100); line-height: 1; display: block; margin-bottom: 14px;
}
.step-card .step-icon { width: 46px; height: 46px; border-radius: 13px; background: var(--sea-green-soft); color: var(--sea-green-dark); display: grid; place-items: center; margin-bottom: 16px; }
.step-card .step-icon svg { width: 22px; height: 22px; }
.step-card h3 { font-size: 16.5px; margin-bottom: 7px; }
.step-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.step-card .step-arrow { position: absolute; top: 50%; right: -18px; transform: translateY(-50%); color: var(--ocean-300); z-index: 2; }
.step-card .step-arrow svg { width: 20px; height: 20px; }

/* ---------- Why choose ---------- */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.why-card { display: flex; align-items: flex-start; gap: 14px; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 22px; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-card .wc-icon { width: 50px; height: 50px; flex-shrink: 0; border-radius: 14px; background: var(--ocean-50); color: var(--ocean-600); display: grid; place-items: center; }
.why-card .wc-icon svg { width: 23px; height: 23px; }
.why-card h3 { font-size: 16px; margin-bottom: 6px; }
.why-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 28px; display: flex; flex-direction: column; gap: 14px; box-shadow: var(--shadow-xs); }
.testi-card .t-stars { display: flex; gap: 3px; color: #f5b342; }
.testi-card .t-stars svg { width: 17px; height: 17px; }
.testi-card .t-text { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; flex: 1; }
.testi-card .t-person { display: flex; align-items: center; gap: 12px; }
.testi-card .t-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--ocean-100); color: var(--ocean-700); display: grid; place-items: center; font-weight: 700; font-size: 16px; }
.testi-card .t-name { font-weight: 700; font-size: 14.5px; color: var(--ink); }
.testi-card .t-area { font-size: 12.5px; color: var(--muted); }
.testi-card .t-verified { display: inline-flex; align-items: center; gap: 4px; font-size: 11.5px; color: var(--success); font-weight: 600; }
.testi-card .t-verified svg { width: 13px; height: 13px; }

/* ---------- Delivery banner ---------- */
.delivery-banner { background: linear-gradient(120deg, var(--ocean-800), var(--ocean-600) 60%, var(--ocean-500)); border-radius: var(--r-xl); padding: 46px 50px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; color: #fff; position: relative; overflow: hidden; }
.delivery-banner::before { content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,0.07); }
.delivery-banner::after { content: ""; position: absolute; right: 40px; bottom: -80px; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,0.05); }
.delivery-banner .db-content { position: relative; z-index: 1; max-width: 560px; }
.delivery-banner h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); margin-bottom: 10px; }
.delivery-banner p { color: #c3dbe9; font-size: 15px; }
.delivery-banner .db-points { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 18px; }
.delivery-banner .db-points li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: #e3f7fc; }
.delivery-banner .db-points svg { width: 17px; height: 17px; color: var(--aqua); }
.delivery-banner .db-cta { position: relative; z-index: 1; }

/* ---------- Pincode checker ---------- */
.pincode-check { display: flex; gap: 10px; background: #fff; padding: 8px; border-radius: var(--r-md); box-shadow: var(--shadow-md); max-width: 420px; }
.pincode-check input { flex: 1; border: none; outline: none; padding: 10px 12px; font-size: 15px; }
.pincode-check .btn { padding: 12px 20px; }
.pincode-result { margin-top: 12px; font-size: 13.5px; font-weight: 600; display: none; padding: 9px 13px; border-radius: var(--r-md); }
.pincode-result.ok { color: var(--sea-green-dark); background: var(--sea-green-soft); display: block; }
.pincode-result.no { color: var(--danger); background: #fdecec; display: block; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { padding: 18px 0; font-size: 13px; color: var(--muted); }
.breadcrumbs a { color: var(--ocean-600); font-weight: 600; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .sep { margin: 0 8px; color: var(--line); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: linear-gradient(120deg, var(--ocean-900), var(--ocean-700)); color: #fff; padding: 52px 0; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,0.05); }
.page-hero::before { content: ""; position: absolute; left: 30%; bottom: -120px; width: 260px; height: 260px; border-radius: 50%; background: rgba(34,184,224,0.08); }
.page-hero h1 { color: #fff; font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 8px; }
.page-hero p { color: #b9d4e4; font-size: 15.5px; max-width: 560px; }
.page-hero .ph-meta { display: flex; gap: 20px; margin-top: 16px; flex-wrap: wrap; }
.page-hero .ph-meta span { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: #d3eef7; }
.page-hero .ph-meta svg { width: 16px; height: 16px; color: var(--aqua); }

/* ---------- Shop layout ---------- */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 30px; align-items: start; }
.filter-panel { position: sticky; top: calc(var(--header-h) + 60px); background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 22px; }
.filter-group { padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.filter-group:last-child { border-bottom: none; }
.filter-group h4 { font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin-bottom: 12px; }
.filter-group .f-item { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 14px; color: var(--ink-soft); cursor: pointer; }
.filter-group .f-item input { accent-color: var(--ocean-600); width: 16px; height: 16px; }
.filter-group .f-item .f-count { margin-left: auto; font-size: 12px; color: var(--muted); }
.filter-group .f-item:hover { color: var(--ocean-600); }
.filter-actions { display: flex; gap: 8px; margin-top: 14px; }

.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.shop-toolbar .st-left { display: flex; align-items: center; gap: 12px; }
.shop-toolbar .st-count { font-size: 14px; color: var(--muted); }
.shop-toolbar .st-count b { color: var(--ink); }
.shop-toolbar select { padding: 10px 14px; border: 1.5px solid var(--line); border-radius: var(--r-md); background: #fff; font-size: 14px; font-weight: 600; color: var(--ink-soft); outline: none; cursor: pointer; }
.mobile-filter-btn { display: none; }

/* ---------- Product detail ---------- */
.pd-layout { display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: start; }
.pd-gallery { position: sticky; top: calc(var(--header-h) + 30px); }
.pd-main-img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3.4; background: var(--off-white); position: relative; }
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-main-img .pd-badges { position: absolute; top: 16px; left: 16px; display: flex; gap: 8px; z-index: 2; }
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
.pd-thumbs button { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 1; border: 2px solid transparent; transition: border-color 0.18s ease; background: var(--off-white); }
.pd-thumbs button.active { border-color: var(--ocean-500); }
.pd-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.pd-info h1 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 4px; }
.pd-marathi { font-size: 15px; color: var(--muted); font-weight: 600; margin-bottom: 12px; }
.pd-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.pd-rating .stars { display: flex; gap: 2px; color: #f5b342; }
.pd-rating .stars svg { width: 16px; height: 16px; }
.pd-rating .r-num { font-weight: 700; font-size: 14px; }
.pd-rating .r-count { font-size: 13px; color: var(--muted); }
.pd-desc { color: var(--ink-soft); font-size: 15px; line-height: 1.7; margin-bottom: 18px; }
.pd-fresh { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.pd-fresh li { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--sea-green-dark); background: var(--sea-green-soft); padding: 6px 12px; border-radius: var(--r-pill); }
.pd-fresh svg { width: 14px; height: 14px; }

.pd-price-block { background: var(--off-white); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 20px; margin-bottom: 22px; }
.pd-price-block .pp-row { display: flex; align-items: baseline; gap: 10px; }
.pd-price-block .pp-now { font-size: 28px; font-weight: 800; color: var(--ink); }
.pd-price-block .pp-now small { font-size: 14px; font-weight: 600; color: var(--muted); }
.pd-price-block .pp-old { font-size: 16px; color: var(--muted); text-decoration: line-through; }
.pd-price-block .pp-save { font-size: 13px; font-weight: 700; color: var(--success); }
.pd-price-block .pp-note { font-size: 12.5px; color: var(--muted); margin-top: 6px; }

.option-block { margin-bottom: 22px; }
.option-block > h4 { font-family: var(--font-body); font-size: 13.5px; font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between; }
.option-block > h4 .ob-hint { font-size: 12px; color: var(--muted); font-weight: 500; }
.option-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.option-grid--cut { grid-template-columns: repeat(3, 1fr); }
.option-pill {
  border: 1.5px solid var(--line); border-radius: var(--r-md); padding: 12px 10px;
  text-align: center; cursor: pointer; transition: all 0.16s ease; background: #fff;
}
.option-pill .op-main { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.option-pill .op-sub { font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.option-pill:hover { border-color: var(--ocean-400); }
.option-pill.active { border-color: var(--ocean-600); background: var(--ocean-50); box-shadow: 0 0 0 3px rgba(43,156,201,0.12); }
.option-pill.active .op-main { color: var(--ocean-700); }

.qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.qty-stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.qty-stepper button { width: 42px; height: 46px; font-size: 19px; font-weight: 700; color: var(--ocean-600); background: var(--off-white); transition: background 0.15s ease; }
.qty-stepper button:hover { background: var(--ocean-100); }
.qty-stepper .qty-val { width: 52px; text-align: center; font-weight: 700; font-size: 16px; }
.pd-ctas { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.pd-ctas .btn { flex: 1; min-width: 170px; padding: 16px 20px; }
.pd-ctas #wishBtn { flex: 0 0 auto; min-width: 0; gap: 7px; }

.pd-info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 26px; }
.pd-info-card { display: flex; gap: 12px; background: var(--off-white); border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 14px 16px; }
.pd-info-card svg { width: 20px; height: 20px; color: var(--ocean-500); flex-shrink: 0; margin-top: 2px; }
.pd-info-card b { display: block; font-size: 13.5px; color: var(--ink); }
.pd-info-card span { font-size: 12.5px; color: var(--muted); }

.pd-tabs { margin-top: 60px; }
.pd-tabs .tabs-nav { display: flex; gap: 4px; border-bottom: 2px solid var(--line-soft); margin-bottom: 26px; overflow-x: auto; }
.pd-tabs .tabs-nav button { padding: 12px 20px; font-size: 14.5px; font-weight: 700; color: var(--muted); border-bottom: 2.5px solid transparent; margin-bottom: -2px; white-space: nowrap; transition: all 0.16s ease; }
.pd-tabs .tabs-nav button.active { color: var(--ocean-600); border-bottom-color: var(--aqua); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel p { color: var(--ink-soft); font-size: 15px; line-height: 1.75; max-width: 780px; }
.tab-panel ul { margin-top: 12px; }
.tab-panel ul li { display: flex; gap: 10px; padding: 7px 0; font-size: 14.5px; color: var(--ink-soft); }
.tab-panel ul li::before { content: "✓"; color: var(--sea-green); font-weight: 700; }

/* ---------- Cart ---------- */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 30px; align-items: start; }
.cart-items { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg); overflow: hidden; }
.cart-item { display: grid; grid-template-columns: 110px 1fr auto; gap: 18px; padding: 20px; border-bottom: 1px solid var(--line-soft); align-items: center; }
.cart-item:last-child { border-bottom: none; }
.cart-item img { width: 110px; height: 92px; object-fit: cover; border-radius: var(--r-md); }
.cart-item .ci-name { font-family: var(--font-display); font-size: 16.5px; font-weight: 600; }
.cart-item .ci-meta { font-size: 13px; color: var(--muted); margin-top: 4px; display: flex; gap: 8px; flex-wrap: wrap; }
.cart-item .ci-meta .cm-tag { background: var(--ocean-50); color: var(--ocean-700); font-weight: 600; padding: 2px 9px; border-radius: var(--r-pill); font-size: 12px; }
.cart-item .ci-price { font-weight: 700; font-size: 16px; margin-top: 8px; }
.cart-item .ci-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.cart-item .ci-remove { font-size: 12.5px; color: var(--danger); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.cart-item .ci-remove:hover { text-decoration: underline; }

.cart-summary { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 24px; position: sticky; top: calc(var(--header-h) + 30px); }
.cart-summary h3 { font-size: 19px; margin-bottom: 18px; }
.cs-row { display: flex; justify-content: space-between; padding: 9px 0; font-size: 14.5px; color: var(--ink-soft); }
.cs-row.cs-total { border-top: 1.5px dashed var(--line); margin-top: 10px; padding-top: 16px; font-size: 17px; font-weight: 800; color: var(--ink); }
.cs-row.cs-free { color: var(--success); font-weight: 700; }
.cs-note { font-size: 12.5px; color: var(--muted); background: var(--off-white); border-radius: var(--r-md); padding: 12px 14px; margin-top: 14px; line-height: 1.6; }
.cs-coupon { display: flex; gap: 8px; margin: 14px 0; }
.cs-coupon input { flex: 1; padding: 10px 12px; border: 1.5px dashed var(--ocean-300); border-radius: var(--r-md); font-size: 13.5px; outline: none; text-transform: uppercase; letter-spacing: 0.04em; }
.cs-coupon input:focus { border-color: var(--ocean-500); }
.coupon-applied { display: flex; align-items: center; justify-content: space-between; background: var(--sea-green-soft); color: var(--sea-green-dark); font-size: 13px; font-weight: 700; padding: 10px 14px; border-radius: var(--r-md); margin-bottom: 12px; }
.coupon-applied button { color: var(--danger); font-weight: 700; font-size: 12.5px; }

.empty-state { text-align: center; padding: 70px 20px; }
.empty-state .es-icon { width: 90px; height: 90px; margin: 0 auto 22px; border-radius: 50%; background: var(--ocean-50); color: var(--ocean-400); display: grid; place-items: center; }
.empty-state .es-icon svg { width: 42px; height: 42px; }
.empty-state h3 { font-size: 22px; margin-bottom: 8px; }
.empty-state p { color: var(--muted); margin-bottom: 24px; }

/* ---------- Checkout ---------- */
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 30px; align-items: start; }
.checkout-card { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 26px; margin-bottom: 22px; }
.checkout-card > h3 { display: flex; align-items: center; gap: 12px; font-size: 18px; margin-bottom: 20px; }
.checkout-card > h3 .cc-num { width: 30px; height: 30px; border-radius: 50%; background: var(--ocean-600); color: #fff; font-family: var(--font-body); font-size: 14px; font-weight: 700; display: grid; place-items: center; flex-shrink: 0; }
.checkout-card > h3 .cc-num.done { background: var(--success); }

.pay-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pay-option { border: 1.5px solid var(--line); border-radius: var(--r-md); padding: 16px; cursor: pointer; display: flex; align-items: center; gap: 12px; transition: all 0.16s ease; }
.pay-option:hover { border-color: var(--ocean-400); }
.pay-option.active { border-color: var(--ocean-600); background: var(--ocean-50); box-shadow: 0 0 0 3px rgba(43,156,201,0.12); }
.pay-option .po-icon { width: 40px; height: 40px; border-radius: 10px; background: #fff; border: 1px solid var(--line-soft); display: grid; place-items: center; color: var(--ocean-600); }
.pay-option .po-icon svg { width: 20px; height: 20px; }
.pay-option b { display: block; font-size: 14.5px; }
.pay-option span { font-size: 12px; color: var(--muted); }

.slot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.slot-pill { border: 1.5px solid var(--line); border-radius: var(--r-md); padding: 12px 8px; text-align: center; cursor: pointer; transition: all 0.16s ease; background: #fff; }
.slot-pill .sp-time { font-weight: 700; font-size: 14px; }
.slot-pill .sp-tag { font-size: 11px; color: var(--muted); margin-top: 2px; }
.slot-pill:hover { border-color: var(--ocean-400); }
.slot-pill.active { border-color: var(--ocean-600); background: var(--ocean-50); }
.slot-pill.disabled { opacity: 0.45; cursor: not-allowed; }

.order-summary-items { max-height: 320px; overflow-y: auto; padding-right: 6px; }
.os-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
.os-item img { width: 56px; height: 56px; border-radius: var(--r-sm); object-fit: cover; }
.os-item .osi-name { font-size: 14px; font-weight: 700; }
.os-item .osi-meta { font-size: 12px; color: var(--muted); margin-top: 2px; }
.os-item .osi-price { margin-left: auto; font-weight: 700; font-size: 14px; white-space: nowrap; }

/* ---------- Auth pages ---------- */
.auth-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - var(--header-h)); }
.auth-visual { position: relative; background: var(--ocean-900); color: #fff; display: flex; flex-direction: column; justify-content: flex-end; padding: 60px; overflow: hidden; }
.auth-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.auth-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,40,61,0.2), rgba(6,40,61,0.92)); }
.auth-visual .av-content { position: relative; z-index: 1; max-width: 460px; }
.auth-visual h2 { color: #fff; font-size: 32px; margin-bottom: 12px; }
.auth-visual p { color: #c3dbe9; font-size: 15.5px; }
.auth-visual .av-points { margin-top: 22px; display: grid; gap: 10px; }
.auth-visual .av-points li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: #d3eef7; }
.auth-visual .av-points svg { width: 18px; height: 18px; color: var(--aqua); }
.auth-form-wrap { display: flex; align-items: center; justify-content: center; padding: 50px 24px; background: var(--off-white); }
.auth-card { width: 100%; max-width: 440px; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-xl); padding: 40px; box-shadow: var(--shadow-md); }
.auth-card h1 { font-size: 26px; margin-bottom: 6px; }
.auth-card .auth-sub { color: var(--muted); font-size: 14px; margin-bottom: 26px; }
.auth-alt { text-align: center; font-size: 14px; color: var(--muted); margin-top: 20px; }
.auth-alt a { color: var(--ocean-600); font-weight: 700; }
.auth-alt a:hover { text-decoration: underline; }
.otp-row { display: flex; gap: 10px; justify-content: center; margin: 20px 0; }
.otp-row input { width: 48px; height: 56px; text-align: center; font-size: 22px; font-weight: 700; border: 1.5px solid var(--line); border-radius: var(--r-md); outline: none; }
.otp-row input:focus { border-color: var(--ocean-500); box-shadow: 0 0 0 3px rgba(43,156,201,0.15); }

/* ---------- Account dashboard ---------- */
.acct-layout { display: grid; grid-template-columns: 270px 1fr; gap: 30px; align-items: start; }
.acct-side { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg); overflow: hidden; position: sticky; top: calc(var(--header-h) + 30px); }
.acct-side .as-user { padding: 22px; background: var(--ocean-900); color: #fff; display: flex; align-items: center; gap: 14px; }
.acct-side .as-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--aqua); color: var(--navy); font-weight: 800; font-size: 18px; display: grid; place-items: center; }
.acct-side .as-name { font-weight: 700; font-size: 15px; }
.acct-side .as-mail { font-size: 12px; color: #a9c6d8; }
.acct-side nav a { display: flex; align-items: center; gap: 12px; padding: 13px 22px; font-size: 14px; font-weight: 600; color: var(--ink-soft); border-left: 3px solid transparent; transition: all 0.15s ease; }
.acct-side nav a svg { width: 18px; height: 18px; color: var(--muted); }
.acct-side nav a:hover { background: var(--ocean-50); color: var(--ocean-600); }
.acct-side nav a.active { background: var(--ocean-50); color: var(--ocean-600); border-left-color: var(--aqua); }
.acct-side nav a.active svg { color: var(--ocean-600); }

.acct-panel { display: none; }
.acct-panel.active { display: block; }
.acct-panel h2 { font-size: 24px; margin-bottom: 4px; }
.acct-panel .ap-sub { color: var(--muted); font-size: 14px; margin-bottom: 24px; }

.order-card { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 20px; margin-bottom: 16px; }
.order-card .oc-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.order-card .oc-id { font-weight: 700; font-size: 14.5px; }
.order-card .oc-date { font-size: 12.5px; color: var(--muted); }
.order-card .oc-status { font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: var(--r-pill); }
.order-card .oc-status.confirmed { background: var(--ocean-50); color: var(--ocean-600); }
.order-card .oc-status.packed { background: #fdf3e0; color: #b97a12; }
.order-card .oc-status.out { background: var(--sea-green-soft); color: var(--sea-green-dark); }
.order-card .oc-status.delivered { background: #e8f7ef; color: var(--success); }
.order-card .oc-status.cancelled { background: #fdecec; color: var(--danger); }
.order-card .oc-items { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.order-card .oc-items img { width: 52px; height: 52px; border-radius: var(--r-sm); object-fit: cover; }
.order-card .oc-total { font-size: 14px; color: var(--ink-soft); }
.order-card .oc-total b { color: var(--ink); font-size: 15.5px; }

.track-steps { display: flex; gap: 0; margin: 18px 0 6px; }
.track-step { flex: 1; text-align: center; position: relative; }
.track-step::before { content: ""; position: absolute; top: 15px; left: -50%; width: 100%; height: 3px; background: var(--line); z-index: 0; }
.track-step:first-child::before { display: none; }
.track-step .ts-dot { width: 32px; height: 32px; border-radius: 50%; background: #fff; border: 3px solid var(--line); margin: 0 auto 8px; position: relative; z-index: 1; display: grid; place-items: center; color: var(--muted); }
.track-step.done .ts-dot { background: var(--success); border-color: var(--success); color: #fff; }
.track-step.done::before { background: var(--success); }
.track-step.current .ts-dot { border-color: var(--aqua); color: var(--aqua); box-shadow: 0 0 0 5px rgba(34,184,224,0.18); }
.track-step span { font-size: 11.5px; font-weight: 600; color: var(--muted); }
.track-step.done span, .track-step.current span { color: var(--ink); }

.addr-card { background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: 20px; position: relative; }
.addr-card.default { border-color: var(--ocean-400); }
.addr-card .ac-tag { position: absolute; top: 14px; right: 14px; font-size: 11px; font-weight: 700; color: var(--ocean-600); background: var(--ocean-50); padding: 3px 10px; border-radius: var(--r-pill); }
.addr-card b { display: block; font-size: 15px; margin-bottom: 4px; }
.addr-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.addr-card .ac-actions { display: flex; gap: 14px; margin-top: 12px; }
.addr-card .ac-actions button { font-size: 13px; font-weight: 700; color: var(--ocean-600); }
.addr-card .ac-actions button:hover { text-decoration: underline; }

/* ---------- Toast ---------- */
.toast-wrap { position: fixed; bottom: 24px; right: 24px; z-index: 2000; display: flex; flex-direction: column; gap: 10px; }
.toast {
  display: flex; align-items: center; gap: 12px;
  background: var(--navy); color: #fff; padding: 14px 18px;
  border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  font-size: 14px; font-weight: 600; min-width: 280px; max-width: 380px;
  animation: toast-in 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.toast .t-icon { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.toast.success .t-icon { background: var(--success); }
.toast.error .t-icon { background: var(--danger); }
.toast.info .t-icon { background: var(--aqua); }
.toast .t-icon svg { width: 14px; height: 14px; }
.toast.hide { animation: toast-out 0.3s ease forwards; }
@keyframes toast-in { from { opacity: 0; transform: translateY(16px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes toast-out { to { opacity: 0; transform: translateY(10px) scale(0.96); } }

/* ---------- Modal ---------- */
.modal-backdrop { position: fixed; inset: 0; background: rgba(6, 40, 61, 0.6); backdrop-filter: blur(4px); z-index: 1500; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-backdrop.open { display: flex; }
.modal { background: #fff; border-radius: var(--r-xl); max-width: 480px; width: 100%; padding: 34px; box-shadow: var(--shadow-lg); animation: modal-in 0.25s cubic-bezier(0.22, 1, 0.36, 1); max-height: 90vh; overflow-y: auto; }
.modal--lg { max-width: 640px; }
@keyframes modal-in { from { opacity: 0; transform: translateY(20px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal h3 { font-size: 21px; margin-bottom: 8px; }
.modal .modal-sub { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.modal .modal-close { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border-radius: var(--r-md); background: var(--off-white); display: grid; place-items: center; color: var(--ink-soft); }
.modal { position: relative; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.hidden { display: none !important; }
.flex { display: flex; } .flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; }
.text-muted { color: var(--muted); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.fw-700 { font-weight: 700; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-stats { display: none; }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .pd-layout { grid-template-columns: 1fr; gap: 30px; }
  .pd-gallery { position: static; }
  .auth-layout { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .acct-layout { grid-template-columns: 1fr; }
  .acct-side { position: static; }
  .acct-side nav { display: flex; overflow-x: auto; }
  .acct-side nav a { border-left: none; border-bottom: 3px solid transparent; white-space: nowrap; padding: 12px 16px; }
  .acct-side nav a.active { border-bottom-color: var(--aqua); }
  .acct-side .as-user { display: none; }
}

@media (max-width: 900px) {
  .header-search { display: none; }
  .loc-selector { display: none; }
  .nav-bar { display: none; }
  .h-action--mobile { display: flex; }
  .header-main { height: var(--header-h-mobile); }
  .shop-layout { grid-template-columns: 1fr; }
  .filter-panel { position: fixed; inset: 0; z-index: 1200; background: #fff; overflow-y: auto; padding: 24px; border-radius: 0; display: none; }
  .filter-panel.open { display: block; }
  .mobile-filter-btn { display: inline-flex; }
  .filter-panel .filter-actions { position: sticky; bottom: 0; background: #fff; padding-top: 12px; }
  .option-grid { grid-template-columns: repeat(4, 1fr); }
  .slot-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 52px 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .promise-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .steps { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .hero-inner { padding: 64px 0 76px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn { width: 100%; }
  .btn--lg { padding: 14px 20px; font-size: 15px; }
  .hero-trust { gap: 12px 18px; }
  .hero-trust .ht { font-size: 12px; }
  .delivery-banner { padding: 34px 26px; }
  .cart-item { grid-template-columns: 84px 1fr; }
  .cart-item img { width: 84px; height: 76px; }
  .cart-item .ci-right { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
  .option-grid { grid-template-columns: repeat(2, 1fr); }
  .option-grid--cut { grid-template-columns: repeat(2, 1fr); }
  .field-row, .field-row--3 { grid-template-columns: 1fr; }
  .pay-options { grid-template-columns: 1fr; }
  .auth-card { padding: 28px 22px; }
  .pd-ctas { flex-direction: column; }
  .pd-ctas .btn, .pd-ctas #wishBtn { width: 100%; min-width: 0; flex: 1 1 auto; }
  .pd-info-cards { grid-template-columns: 1fr; }
  .toast-wrap { left: 16px; right: 16px; bottom: 16px; }
  .toast { min-width: 0; max-width: none; width: 100%; }
  .product-card .pc-body { padding: 12px 12px 14px; }
  .product-card .pc-name { font-size: 15.5px; }
  .product-card .pc-marathi { font-size: 12px; }
  .product-card .pc-desc { -webkit-line-clamp: 2; margin-top: 5px; }
  .product-card .pc-meta { display: none; }
  .product-card .pc-price-row { margin-top: 10px; }
  .product-card .pc-price { font-size: 14.5px; }
  .product-card .pc-price small { font-size: 11px; }
  .product-card .pc-actions { padding-top: 12px; }
  .product-card .pc-actions .btn { font-size: 12.5px; padding: 10px 8px; }
  .top-strip { font-size: 11px; padding: 6px 0; }
  .top-strip .strip-inner { gap: 4px 8px; }
  .logo-text .name { font-size: 18px; }
  .logo-text .tag { display: none; }
  .logo-mark { width: 38px; height: 38px; }
  .h-action { padding: 6px 8px; }
  .h-action span { display: none; }
  .h-action svg { width: 20px; height: 20px; }
  .cat-card { aspect-ratio: 4 / 4.2; }
  .cat-card .cc-label h3 { font-size: 16px; }
  .step-card .step-arrow { display: none; }
  .section-head { margin-bottom: 28px; }
  .checkout-card { padding: 20px; }
  .order-card .oc-head { flex-direction: column; align-items: flex-start; }
  .track-step span { font-size: 10px; }
}

@media (max-width: 400px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .promise-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
}