/* MMM Bazaar — Premium multi-vendor marketplace */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@600;700&display=swap");

:root {
  --gold: #1a7a52;
  --yellow: #0d5c3d;
  --yellow-dark: #08402b;
  --yellow-soft: rgba(13, 92, 61, 0.22);
  --bottle: #0d5c3d;
  --bottle-light: #1a7a52;
  --bottle-bright: #22a06b;
  --navy: #050d18;
  --navy-mid: #0a1628;
  --navy-soft: #1a3050;
  --blue: #4d8dff;
  --blue-bright: #6ba0ff;
  --text: #e8eef6;
  --heading: #f4f7fb;
  --muted: #8b9bb0;
  --border: rgba(255, 255, 255, 0.09);
  --bg: #060e1a;
  --bg-soft: #0f1c2e;
  --card: #101e32;
  --card-hover: #15263e;
  --danger: #ff5a7a;
  --danger-bg: rgba(255, 90, 122, 0.16);
  --success: #34d399;
  --on-yellow: #f2faf6;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 22px 60px rgba(0, 0, 0, 0.45);
  --max: 1280px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(ellipse 70% 45% at 8% -5%, rgba(13, 92, 61, 0.18), transparent 55%),
    radial-gradient(ellipse 55% 40% at 100% 5%, rgba(77, 141, 255, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 35% at 50% 100%, rgba(16, 80, 60, 0.2), transparent 55%),
    linear-gradient(180deg, #040a14 0%, var(--bg) 35%, #081422 100%);
  background-attachment: fixed;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
button, input, select, textarea { font: inherit; }
ul { list-style: none; }

.container { width: min(100% - 2.25rem, var(--max)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Reveal animation */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ========== TOP STRIP ========== */
.top-strip {
  background: linear-gradient(90deg, #030910 0%, #0c1f18 45%, #0a1628 100%);
  color: rgba(255,255,255,0.88);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid rgba(13, 92, 61, 0.22);
}
.top-strip strong { color: var(--yellow); font-weight: 700; }

/* ========== HEADER ========== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8, 16, 30, 0.88);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid rgba(13, 92, 61, 0.18);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
.header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.35rem;
  padding: 0.95rem 0;
}
.brand { display: flex; align-items: center; gap: 0.75rem; min-width: 0; }
.brand-logo {
  width: 54px; height: 54px; object-fit: contain;
  border-radius: 50%; flex-shrink: 0; background: #fff;
  box-shadow: 0 0 0 2px rgba(13, 92, 61, 0.45), 0 4px 18px rgba(13, 92, 61, 0.25);
  transition: transform 0.35s var(--ease);
}
.brand:hover .brand-logo { transform: scale(1.05) rotate(-3deg); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--display);
  font-size: 1.55rem; font-weight: 700; color: var(--heading);
  letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 0.65rem; color: var(--muted); font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
}

.search-wrap {
  display: flex; align-items: stretch; max-width: 580px; width: 100%;
  margin-inline: auto;
  border: 1.5px solid rgba(255,255,255,0.12); border-radius: 999px;
  overflow: hidden; background: rgba(16, 30, 50, 0.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-wrap:focus-within {
  border-color: rgba(34, 160, 107, 0.55);
  box-shadow: 0 0 0 4px rgba(13, 92, 61, 0.18);
}
.search-wrap input {
  flex: 1; border: 0; outline: 0; padding: 0.78rem 1.15rem; min-width: 0;
  color: var(--heading); background: transparent;
}
.search-wrap input::placeholder { color: #6f8096; }
.search-btn {
  width: 52px; margin: 4px; border-radius: 999px;
  background: linear-gradient(135deg, var(--bottle) 0%, var(--bottle-light) 100%);
  border: 0; cursor: pointer;
  display: grid; place-items: center; color: var(--on-yellow);
  transition: transform 0.2s, filter 0.2s;
}
.search-btn:hover { transform: scale(1.04); filter: brightness(0.97); }

.header-actions { display: flex; align-items: center; gap: 0.35rem 1rem; }
.action {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; color: var(--heading); font-weight: 600; white-space: nowrap;
  padding: 0.4rem 0.5rem; border-radius: 10px;
  transition: background 0.2s;
}
.action:hover { background: rgba(255,255,255,0.06); }
.action svg { width: 18px; height: 18px; flex-shrink: 0; stroke: var(--yellow); fill: none; stroke-width: 1.8; }
.action.phone { color: var(--muted); font-weight: 500; }
.action.cart { position: relative; padding-right: 0.45rem; }
.cart-badge {
  position: absolute; top: -2px; right: -2px;
  background: linear-gradient(135deg, var(--bottle), var(--bottle-light));
  color: var(--on-yellow);
  font-size: 0.62rem; font-weight: 800; min-width: 18px; height: 18px;
  border-radius: 999px; display: grid; place-items: center; padding: 0 4px;
  box-shadow: 0 2px 8px rgba(13,92,61,0.45);
}

.menu-toggle, .mobile-search-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 0.4rem; color: var(--heading);
  border-radius: 10px;
}
.menu-toggle:hover, .mobile-search-toggle:hover { background: rgba(255,255,255,0.06); }
.menu-toggle svg, .mobile-search-toggle svg {
  width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2;
}

.nav-bar { border-top: 1px solid rgba(255,255,255,0.06); }
.nav-inner {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.6rem 0; overflow-x: auto; scrollbar-width: none;
}
.nav-inner::-webkit-scrollbar { display: none; }
.btn-categories {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: linear-gradient(135deg, var(--bottle) 0%, var(--bottle-light) 100%);
  color: var(--on-yellow); font-weight: 700; font-size: 0.84rem;
  padding: 0.58rem 1.05rem; border-radius: 999px; border: 0; cursor: pointer;
  white-space: nowrap; flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(13,92,61,0.4);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.btn-categories:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(13,92,61,0.45); }
.btn-categories svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.2; }
.nav-links { display: flex; align-items: center; gap: 0.1rem; flex: 1; }
.nav-links a {
  font-size: 0.82rem; font-weight: 600; color: var(--muted);
  padding: 0.5rem 0.75rem; border-radius: 999px; white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: rgba(255,255,255,0.06); color: var(--heading); }
.nav-links a.deals {
  color: var(--yellow); font-weight: 800; margin-left: auto;
  background: var(--yellow-soft);
}
.nav-links a.deals:hover { background: var(--yellow); color: var(--on-yellow); }
.nav-links a.active { background: rgba(77,141,255,0.15); color: var(--blue-bright); }

/* ========== HERO ========== */
.hero {
  padding: 1.5rem 0 0.25rem;
  position: relative;
}
.hero-slider {
  position: relative; border-radius: 20px; overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(13, 92, 61, 0.18);
}
.hero-track { display: flex; transition: transform 0.55s var(--ease); }
.hero-slide { min-width: 100%; position: relative; }
.hero-slide img {
  width: 100%; height: auto; aspect-ratio: 16 / 9;
  object-fit: cover; object-position: center;
  min-height: 260px; max-height: 500px;
  transition: transform 6s ease;
}
.hero-slide:hover img { transform: scale(1.03); }
.hero-slide-link { position: absolute; inset: 0; z-index: 1; }
.hero-nav {
  position: absolute; inset: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1rem; z-index: 2;
}
.hero-nav button {
  pointer-events: auto; width: 44px; height: 44px; border-radius: 50%; border: 0;
  background: rgba(10, 18, 32, 0.85); color: var(--yellow); cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  border: 1px solid rgba(13,92,61,0.3);
  display: grid; place-items: center; font-size: 1.25rem; line-height: 1;
  transition: transform 0.2s, background 0.2s;
}
.hero-nav button:hover { transform: scale(1.08); background: var(--yellow); color: var(--on-yellow); }
.hero-dots {
  position: absolute; left: 50%; bottom: 1.1rem; transform: translateX(-50%);
  display: flex; gap: 0.45rem; z-index: 2;
  background: rgba(5, 13, 24, 0.55); backdrop-filter: blur(8px);
  padding: 0.4rem 0.65rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,0.35); cursor: pointer; padding: 0;
  transition: width 0.3s, background 0.3s;
}
.hero-dots button.active {
  background: var(--yellow); width: 22px; border-radius: 999px;
}

/* ========== SECTIONS ========== */
.section { padding: 2.25rem 0; }
.section-title-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 1.4rem; gap: 1rem;
}
.section-title-row h2 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 700; color: var(--heading);
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 0.45rem;
}
.section-title-row h2::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 42px; height: 3px; border-radius: 999px;
  background: linear-gradient(90deg, var(--bottle-bright), var(--bottle));
}
.view-all {
  font-size: 0.88rem; font-weight: 700; color: var(--yellow);
  white-space: nowrap; padding: 0.4rem 0.85rem; border-radius: 999px;
  background: var(--yellow-soft);
  transition: background 0.2s, color 0.2s;
}
.view-all:hover { background: var(--yellow); color: var(--on-yellow); }

/* Categories */
.categories {
  display: grid; grid-template-columns: repeat(9, 1fr); gap: 1rem;
}
.cat-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.65rem; text-align: center;
}
.cat-icon {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(145deg, #15263e, #0d1a2c);
  border: 3px solid rgba(13, 92, 61, 0.25);
  display: grid; place-items: center; overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.04);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}
.cat-icon img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s var(--ease); }
.cat-item:hover .cat-icon {
  transform: translateY(-6px);
  border-color: var(--yellow);
  box-shadow: 0 14px 32px rgba(13,92,61,0.28), 0 0 0 1px rgba(13,92,61,0.4);
}
.cat-item:hover .cat-icon img { transform: scale(1.08); }
.cat-item span {
  font-size: 0.72rem; font-weight: 700; color: var(--heading);
  line-height: 1.25; max-width: 11ch;
}

/* Promo banners */
.promo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem;
}
.promo-card {
  border-radius: 18px; overflow: hidden; display: grid;
  grid-template-columns: 1.05fr 0.95fr; min-height: 180px;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  text-decoration: none; color: inherit;
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
}
.promo-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06); pointer-events: none; z-index: 1;
}
.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.promo-card.green { background: linear-gradient(135deg, #1a2e18 0%, #243820 40%, #15251a 100%); }
.promo-card.blue { background: linear-gradient(135deg, #12253f 0%, #1a3560 45%, #0f1f35 100%); }
.promo-card.gold { background: linear-gradient(135deg, #12281c 0%, #1a3d2a 45%, #0e1f16 100%); }
.promo-copy {
  padding: 1.4rem 1.2rem; display: flex; flex-direction: column;
  justify-content: center; gap: 0.4rem; min-width: 0; position: relative; z-index: 2;
}
.promo-copy h3 {
  font-family: var(--display);
  font-size: 1.35rem; font-weight: 700; color: var(--heading); line-height: 1.2;
}
.promo-copy p { font-size: 0.82rem; color: var(--muted); font-weight: 500; }
.promo-copy .btn-link {
  display: inline-flex; align-items: center; gap: 0.3rem; width: fit-content;
  background: var(--yellow); color: var(--on-yellow); font-size: 0.76rem; font-weight: 700;
  padding: 0.55rem 1rem; border-radius: 999px; margin-top: 0.45rem;
  transition: background 0.2s, transform 0.2s;
}
.promo-card:hover .btn-link { background: #22a06b; transform: translateX(3px); }
.promo-card .promo-media { min-height: 170px; overflow: hidden; }
.promo-card .promo-media img {
  width: 100%; height: 100%; object-fit: cover; min-height: 170px;
  transition: transform 0.55s var(--ease);
}
.promo-card:hover .promo-media img { transform: scale(1.07); }

/* Products */
.products-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.1rem;
}
.product-card {
  background: var(--card); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; padding: 0.85rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s, background 0.35s;
  position: relative; overflow: hidden;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 92, 61, 0.35);
  background: var(--card-hover);
}
.wish-btn {
  position: absolute; top: 0.75rem; right: 0.75rem; width: 34px; height: 34px;
  border-radius: 50%; border: 0; background: rgba(8, 16, 30, 0.85);
  cursor: pointer; display: grid; place-items: center; z-index: 2; color: var(--muted);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s, transform 0.2s;
}
.wish-btn:hover, .wish-btn.active { color: var(--danger); transform: scale(1.08); }
.wish-btn svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.wish-btn.active svg { fill: currentColor; }

.product-img {
  aspect-ratio: 1; border-radius: 12px;
  background: linear-gradient(160deg, #15263e, #0d1a2c);
  display: grid; place-items: center; overflow: hidden; margin-bottom: 0.2rem;
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-title {
  font-size: 0.84rem; font-weight: 650; color: var(--heading); line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 2.3em;
}
.product-title:hover { color: var(--yellow); }
.product-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.35rem; }
.price-now {
  font-size: 1.05rem; font-weight: 800; color: var(--yellow);
  letter-spacing: -0.02em;
}
.price-old { font-size: 0.78rem; color: #6b7a8c; text-decoration: line-through; }
.price-off {
  font-size: 0.66rem; font-weight: 800; color: var(--danger);
  background: var(--danger-bg); padding: 0.15rem 0.4rem; border-radius: 6px;
}
.product-rating {
  font-size: 0.75rem; color: var(--muted);
  display: flex; align-items: center; gap: 0.25rem;
}
.stars { color: #22a06b; letter-spacing: -1px; }
.btn-cart {
  margin-top: auto; width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  background: linear-gradient(135deg, var(--bottle) 0%, var(--bottle-light) 100%);
  color: var(--on-yellow); font-weight: 800; font-size: 0.8rem;
  padding: 0.65rem 0.5rem; border: 0; border-radius: 999px; cursor: pointer;
  box-shadow: 0 4px 14px rgba(13,92,61,0.35);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.btn-cart:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(13,92,61,0.4);
  filter: brightness(1.02);
}
.btn-cart svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; }
.product-card.simple .btn-cart,
.product-card.simple .product-rating,
.product-card.simple .wish-btn { display: none; }
.product-card.simple .product-price { margin-top: auto; }

/* Testimonials */
.testimonials {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(13,92,61,0.15), transparent 50%),
    linear-gradient(180deg, #0a1524, #0d1c30);
  border-block: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.testimonial-card {
  background: rgba(16, 30, 50, 0.9);
  border-radius: 18px; padding: 1.45rem;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 0.8rem;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(13,92,61,0.3); }
.testimonial-top { display: flex; align-items: center; gap: 0.8rem; }
.avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, #1a3a66, var(--blue));
  color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 0.95rem;
  flex-shrink: 0; box-shadow: 0 4px 12px rgba(77,141,255,0.3);
}
.t-name { font-weight: 800; font-size: 0.95rem; color: var(--heading); }
.t-city { font-size: 0.75rem; color: var(--muted); }
.testimonial-card blockquote {
  font-style: italic; color: var(--muted); line-height: 1.6;
  font-family: var(--display); font-size: 1.05rem;
}

/* Trust */
.trust-bar {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.6rem 0;
  background: rgba(8, 16, 30, 0.7);
}
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.trust-item {
  display: flex; align-items: center; gap: 0.75rem; justify-content: center;
  padding: 0.5rem; border-radius: 14px;
  transition: background 0.2s;
}
.trust-item:hover { background: rgba(255,255,255,0.04); }
.trust-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(145deg, rgba(13,92,61,0.25), rgba(13,92,61,0.1));
  color: var(--yellow); display: grid; place-items: center; font-size: 1.2rem; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(13,92,61,0.18);
  border: 1px solid rgba(13,92,61,0.25);
}
.trust-item strong {
  display: block; font-size: 0.8rem; font-weight: 750; color: var(--heading); line-height: 1.25;
}

/* Footer */
.site-footer {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(13,92,61,0.12), transparent 40%),
    linear-gradient(165deg, #071526 0%, #0c223d 55%, #0a2f28 100%);
  color: #c9d4e4; padding-top: 3rem; margin-top: 1rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 1.85rem; padding-bottom: 2.25rem;
}
.footer-brand .brand-name { color: #fff; font-size: 1.45rem; }
.footer-brand .brand-logo {
  width: 48px; height: 48px;
  box-shadow: 0 0 0 2px rgba(13,92,61,0.4);
}
.footer-tagline {
  font-size: 0.88rem; margin: 0.95rem 0 1.15rem; max-width: 28ch; line-height: 1.5;
  color: #a8b8cc;
}
.socials { display: flex; gap: 0.55rem; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center; font-size: 0.85rem; color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.socials a:hover {
  background: var(--yellow); color: var(--on-yellow); transform: translateY(-2px);
}
.footer-col h4 {
  color: #fff; font-size: 0.95rem; font-weight: 750;
  margin-bottom: 1rem; letter-spacing: 0.02em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.84rem; color: #a8b6c9; transition: color 0.15s, padding-left 0.15s; }
.footer-col a:hover { color: var(--yellow); padding-left: 3px; }
.footer-col .contact-line { font-size: 0.84rem; margin-bottom: 0.55rem; line-height: 1.45; color: #a8b6c9; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 1.15rem 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; font-size: 0.78rem; flex-wrap: wrap;
}
.grow-tag {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: #9fd89f; font-weight: 650;
}

.overlay { display: none; }

/* ========== PAGE CHROME ========== */
.page-hero {
  background:
    radial-gradient(ellipse at 90% 20%, rgba(13,92,61,0.15), transparent 45%),
    linear-gradient(135deg, #071526 0%, #123056 55%, #1a4a8a 100%);
  color: #fff; padding: 2.4rem 0;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; right: -40px; bottom: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(13,92,61,0.08); pointer-events: none;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 700; margin-bottom: 0.4rem; letter-spacing: -0.01em;
}
.page-hero p { opacity: 0.88; font-size: 0.98rem; max-width: 48ch; }
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 0.35rem; font-size: 0.8rem;
  color: rgba(255,255,255,0.7); margin-bottom: 0.75rem;
}
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { opacity: 0.5; }

.page-content { padding: 2.25rem 0 3.25rem; }
.content-card {
  background: var(--card); border: 1px solid rgba(255,255,255,0.08); border-radius: 18px;
  padding: 1.75rem; box-shadow: var(--shadow);
}
.content-card h2 {
  font-family: var(--display);
  font-size: 1.4rem; color: var(--heading); margin: 1.35rem 0 0.7rem;
}
.content-card h2:first-child { margin-top: 0; }
.content-card p, .content-card li {
  color: var(--muted); font-size: 0.96rem; margin-bottom: 0.75rem; line-height: 1.65;
}
.content-card ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1rem; }

.shop-layout {
  display: grid; grid-template-columns: 250px 1fr; gap: 1.6rem; align-items: start;
}
.filters {
  background: var(--card); border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; padding: 1.25rem;
  position: sticky; top: 120px; box-shadow: var(--shadow);
}
.filters h3 { font-size: 0.95rem; color: var(--heading); margin-bottom: 0.8rem; font-weight: 750; }
.filter-group { margin-bottom: 1.2rem; }
.filter-group label {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: var(--muted); padding: 0.35rem 0; cursor: pointer;
  border-radius: 8px; transition: color 0.15s;
}
.filter-group label:hover { color: var(--heading); }
.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.15rem; flex-wrap: wrap;
  color: var(--muted);
}
.shop-toolbar select {
  border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; padding: 0.5rem 1rem;
  background: var(--card); color: var(--heading);
}

.product-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.25rem; align-items: start;
}
.product-gallery {
  background: linear-gradient(160deg, #15263e, #0d1a2c);
  border-radius: 20px; padding: 1.75rem;
  border: 1px solid rgba(255,255,255,0.08); box-shadow: var(--shadow);
}
.product-gallery img { width: 100%; max-height: 440px; object-fit: contain; margin-inline: auto; border-radius: 12px; }
.product-info h1 {
  font-family: var(--display);
  font-size: 1.85rem; color: var(--heading); margin-bottom: 0.5rem;
}
.product-info .vendor { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.9rem; }
.product-info .vendor a { color: var(--yellow); font-weight: 650; }
.qty-row { display: flex; align-items: center; gap: 0.75rem; margin: 1.1rem 0; color: var(--heading); }
.qty-row input {
  width: 76px; border: 1px solid rgba(255,255,255,0.12); border-radius: 10px;
  padding: 0.55rem; text-align: center; background: var(--card); color: var(--heading);
}
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  background: linear-gradient(135deg, var(--bottle), var(--bottle-light));
  color: var(--on-yellow); font-weight: 800;
  padding: 0.8rem 1.45rem; border: 0; border-radius: 999px; cursor: pointer;
  box-shadow: 0 6px 18px rgba(13,92,61,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(13,92,61,0.45); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  background: transparent; color: var(--heading); font-weight: 700;
  padding: 0.8rem 1.45rem; border: 1.5px solid rgba(255,255,255,0.15); border-radius: 999px; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--yellow); background: var(--yellow-soft); color: var(--yellow); }
.action-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.5rem; }

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td {
  text-align: left; padding: 0.95rem 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
  vertical-align: middle; font-size: 0.9rem; color: var(--text);
}
.cart-table th {
  color: var(--muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.cart-item { display: flex; align-items: center; gap: 0.85rem; }
.cart-item img {
  width: 68px; height: 68px; object-fit: cover; background: var(--bg-soft); border-radius: 12px;
}
.cart-summary {
  background: var(--bg-soft); border-radius: 16px; padding: 1.35rem; margin-top: 1.5rem;
  max-width: 360px; margin-left: auto; border: 1px solid rgba(255,255,255,0.08);
}
.cart-summary .row {
  display: flex; justify-content: space-between; margin-bottom: 0.55rem; font-size: 0.9rem;
}
.cart-summary .total {
  font-weight: 800; font-size: 1.15rem; color: var(--yellow);
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 0.85rem; margin-top: 0.55rem;
}

.form-grid { display: grid; gap: 1rem; max-width: 520px; }
.form-grid label { display: grid; gap: 0.4rem; font-size: 0.85rem; font-weight: 650; color: var(--heading); }
.form-grid input, .form-grid select, .form-grid textarea {
  border: 1.5px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 0.75rem 0.95rem;
  background: var(--bg-soft); color: var(--heading);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
  outline: 0; border-color: rgba(34,160,107,0.55);
  box-shadow: 0 0 0 4px rgba(13,92,61,0.18);
}
.form-grid textarea { min-height: 120px; resize: vertical; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.account-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.35rem; }
.account-tabs button {
  padding: 0.6rem 1.1rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.12);
  background: var(--card); cursor: pointer; font-weight: 650; color: var(--heading);
  transition: background 0.2s, color 0.2s;
}
.account-tabs button.active {
  background: var(--yellow); color: var(--on-yellow); border-color: var(--yellow);
}

.vendor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.vendor-card {
  border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; padding: 1.45rem;
  text-align: center; background: var(--card); box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.vendor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(13,92,61,0.3); }
.vendor-avatar {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 0.85rem;
  background: linear-gradient(135deg, var(--blue), #0a2444);
  color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.25rem;
  box-shadow: 0 6px 16px rgba(77,141,255,0.25);
}
.faq-item {
  border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; margin-bottom: 0.8rem;
  overflow: hidden; background: var(--card); box-shadow: var(--shadow);
}
.faq-item summary {
  padding: 1.1rem 1.25rem; cursor: pointer; font-weight: 700; color: var(--heading);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { background: rgba(255,255,255,0.04); }
.faq-item p { padding: 0 1.25rem 1.1rem; color: var(--muted); font-size: 0.92rem; }

.empty-state { text-align: center; padding: 3.5rem 1rem; color: var(--muted); }
.empty-state h3 { color: var(--heading); margin-bottom: 0.5rem; font-family: var(--display); font-size: 1.5rem; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .categories { grid-template-columns: repeat(5, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .vendor-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .header-actions .action.loc,
  .header-actions .action.phone,
  .header-actions .action.account span { display: none; }
  .brand-sub { display: none; }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-card { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:last-child { grid-column: 1 / -1; justify-content: center; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .product-detail { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .top-strip { font-size: 0.7rem; padding: 0.5rem 0.75rem; }
  .menu-toggle, .mobile-search-toggle { display: grid; }
  .search-wrap { display: none; }
  .search-wrap.mobile-open {
    display: flex; position: absolute; left: 1rem; right: 1rem; top: 100%;
    max-width: none; margin: 0; z-index: 20; box-shadow: var(--shadow-lg);
  }
  .header-main { position: relative; grid-template-columns: auto auto 1fr auto auto; }
  .brand { grid-column: 2; }
  .brand-name { font-size: 1.25rem; }
  .nav-bar { display: none; }
  .nav-bar.open {
    display: block; position: fixed; inset: 0 auto 0 0; width: min(86vw, 320px);
    background: #0a1524; z-index: 200; box-shadow: 8px 0 32px rgba(0,0,0,0.45);
    overflow-y: auto; border-top: 0; padding: 1.35rem;
    border-right: 1px solid rgba(13,92,61,0.22);
  }
  .nav-bar.open .nav-inner {
    flex-direction: column; align-items: stretch; overflow: visible; padding: 0; gap: 0.4rem;
  }
  .nav-bar.open .nav-links { flex-direction: column; align-items: stretch; }
  .nav-bar.open .nav-links a.deals { margin-left: 0; }
  .overlay.open {
    display: block; position: fixed; inset: 0; background: rgba(7,21,38,0.5); z-index: 150;
    backdrop-filter: blur(2px);
  }
  .categories {
    display: flex; overflow-x: auto; gap: 0.95rem; padding-bottom: 0.45rem; scrollbar-width: thin;
  }
  .cat-item { flex: 0 0 auto; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-title-row h2 { font-size: 1.35rem; }
  .hero-slide img { min-height: 180px; max-height: 260px; }
  .vendor-grid { grid-template-columns: 1fr; }
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
  .cart-table tr {
    border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 0.85rem; margin-bottom: 0.85rem;
    background: var(--card);
  }
  .cart-table td { border: 0; padding: 0.35rem 0; }
  .promo-card { grid-template-columns: 1fr; }
  .promo-card .promo-media { min-height: 140px; }
}
@media (max-width: 480px) {
  .container { width: min(100% - 1.35rem, var(--max)); }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:last-child { justify-content: flex-start; grid-column: auto; }
  .header-actions { gap: 0.35rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
