/* ============================================================
   ZUNO.LK — Main Stylesheet
   Upload to: public_html/assets/css/style.css
   ============================================================ */

/* ─── GOOGLE FONTS ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --yellow:        #E8A020;
  --yellow-dark:   #c98918;
  --yellow-light:  #fff8ec;
  --yellow-glow:   rgba(232,160,32,.28);
  --navy:          #1A1A2E;
  --navy-mid:      #22223a;
  --navy-deep:     #111120;
  --off-white:     #F5F4F0;
  --white:         #ffffff;
  --text-dark:     #1A1A1A;
  --text-mid:      #555555;
  --text-light:    #888888;
  --green:         #22C55E;
  --green-light:   #f0fdf4;
  --red:           #EF4444;
  --red-light:     #fef2f2;
  --orange:        #F97316;
  --orange-light:  #fff7ed;
  --border:        #E5E5E5;
  --border-dark:   rgba(255,255,255,.09);
  --card-shadow:   0 2px 16px rgba(0,0,0,.07);
  --card-shadow-hover: 0 10px 36px rgba(0,0,0,.14);
  --glow-yellow:   0 0 24px rgba(232,160,32,.25);
  --radius:        10px;
  --radius-lg:     16px;
  --radius-sm:     6px;
  --transition:    all .22s cubic-bezier(.4,0,.2,1);
  --font:          'Inter', system-ui, -apple-system, sans-serif;
  --header-h:      68px;
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: var(--font); }
button { cursor: pointer; border: none; background: none; }

/* ─── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 3px; }

/* ─── UTILITY ───────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 60px 0; }
.sr-only { position:absolute;width:1px;height:1px;clip:rect(0,0,0,0);overflow:hidden; }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.hidden { display: none !important; }

/* ─── SECTION TITLE ─────────────────────────────────────────── */
.section-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: -0.5px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  margin: 10px auto 0;
}
.section-title span { color: var(--yellow); }
.section-title--light { color: #fff; }
.section-title--light::after { background: var(--yellow); }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--yellow);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--yellow-glow);
}
.btn--outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border);
}
.btn--outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-1px);
}
.btn--dark {
  background: var(--navy);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}
.btn--sm { padding: 7px 16px; font-size: 13px; }
.btn--lg { padding: 14px 32px; font-size: 16px; }
.btn--full { width: 100%; }
.btn:disabled { opacity: .5; pointer-events: none; }

/* ─── BADGE ─────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.badge--new  { background: #22C55E; color: #fff; }
.badge--hot  { background: #EF4444; color: #fff; }
.badge--sale { background: var(--yellow); color: #fff; }
.badge--best { background: var(--navy); color: var(--yellow); }

/* ─── STOCK STATUS ──────────────────────────────────────────── */
.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.stock--in   { background: var(--green-light); color: #16a34a; }
.stock--low  { background: var(--orange-light); color: #c2410c; }
.stock--out  { background: var(--red-light); color: #dc2626; }
.stock-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

/* ─── ORDER STATUS ──────────────────────────────────────────── */
.badge-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}
.badge-status--new       { background: #dbeafe; color: #1d4ed8; }
.badge-status--confirmed { background: #fef9c3; color: #854d0e; }
.badge-status--shipped   { background: #ede9fe; color: #6d28d9; }
.badge-status--delivered { background: var(--green-light); color: #16a34a; }
.badge-status--cancelled { background: var(--red-light); color: #dc2626; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  box-shadow: 0 1px 16px rgba(0,0,0,.07);
  animation: slideDown .4s ease;
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header__logo-img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
}
.header__logo-text strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.header__logo-text span {
  font-size: 11px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}
.header__logo-text span::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  display: inline-block;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 10px;
}
.header__nav a {
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
}
.header__nav a:hover,
.header__nav a.active {
  color: var(--text-dark);
  background: var(--yellow-light);
}
.header__nav a.active {
  font-weight: 700;
  color: var(--yellow-dark);
}

/* Search */
.header__search {
  flex: 1;
  max-width: 400px;
  position: relative;
}
.header__search-wrap {
  display: flex;
  align-items: center;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.header__search-wrap:focus-within {
  border-color: var(--yellow);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,160,32,.12);
}
.header__search input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 9px 14px;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
}
.header__search input::placeholder { color: var(--text-light); }
.header__search-btn {
  background: var(--yellow);
  color: var(--white);
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  flex-shrink: 0;
}
.header__search-btn:hover { background: var(--yellow-dark); }

/* Search dropdown */
.search-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow-hover);
  z-index: 1000;
  overflow: hidden;
  animation: fadeInDown .15s ease;
}
.search-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  transition: background .15s;
  cursor: pointer;
}
.search-dropdown__item:hover { background: var(--yellow-light); }
.search-dropdown__item img {
  width: 40px; height: 40px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.search-dropdown__name  { font-size: 13px; font-weight: 500; flex: 1; }
.search-dropdown__price { font-size: 13px; font-weight: 700; color: var(--yellow-dark); }

/* Cart icon */
.header__cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  flex-shrink: 0;
}
.header__cart:hover { background: var(--yellow-light); color: var(--yellow-dark); }

/* Right group: search icon + cart */
.header__right {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-shrink: 0;
}
.header__search-icon {
  display: none; /* hidden on desktop */
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius);
  color: var(--text-dark);
  transition: var(--transition);
}
.header__search-icon:hover { background: var(--yellow-light); color: var(--yellow-dark); }
.header__cart-label { /* "Cart" text — hidden on mobile */ }
.header__cart svg { width: 22px; height: 22px; }
.cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--yellow);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  animation: pop .3s ease;
}
@keyframes pop {
  0%   { transform: scale(0.5); }
  70%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.cart-jiggle { animation: jiggle .4s ease; }
@keyframes jiggle {
  0%,100% { transform: rotate(0); }
  20%     { transform: rotate(-12deg); }
  40%     { transform: rotate(12deg); }
  60%     { transform: rotate(-8deg); }
  80%     { transform: rotate(8deg); }
}

/* Mobile menu toggle */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.header__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SLIDER  — premium dark treatment
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  min-height: 520px;
}
.hero__track {
  display: flex;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
}
.hero__slide {
  min-width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 520px;
  padding: 70px 0;
  background-size: cover;
  background-position: center;
}
/* dark overlay + slight vignette */
.hero__slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(17,17,32,.93) 0%,
    rgba(17,17,32,.70) 55%,
    rgba(17,17,32,.30) 100%
  );
  z-index: 0;
}
/* subtle grid pattern for gaming feel */
.hero__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,160,32,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,160,32,.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  animation: heroIn .75s cubic-bezier(.4,0,.2,1) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__tag {
  display: inline-block;
  background: rgba(232,160,32,.15);
  border: 1px solid rgba(232,160,32,.5);
  color: var(--yellow);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(30px, 5.5vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
}
.hero__title span {
  color: var(--yellow);
  text-shadow: var(--glow-yellow);
}
.hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,.68);
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 440px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* prev / next arrows */
.hero__prev, .hero__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}
.hero__prev { left: 20px; }
.hero__next { right: 20px; }
.hero__prev:hover, .hero__next:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  box-shadow: var(--glow-yellow);
}

/* dots */
.hero__dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.3);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.hero__dot.active {
  background: var(--yellow);
  width: 28px;
  box-shadow: var(--glow-yellow);
}

/* ============================================================
   CATEGORIES GRID
   ============================================================ */
.categories { padding: 56px 0; background: var(--off-white); }
.categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 14px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--yellow-light) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
}
.cat-card:hover {
  border-color: var(--yellow);
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0,0,0,.10), 0 0 0 1px rgba(232,160,32,.15);
}
.cat-card:hover::before { opacity: 1; }
.cat-card__icon {
  font-size: 30px;
  line-height: 1;
  position: relative;
}
.cat-card__name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  position: relative;
}
.cat-card__from {
  font-size: 11px;
  color: var(--text-light);
  position: relative;
}
.categories__see-all { text-align: center; margin-top: 28px; }
.see-all-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: .4px;
  text-transform: uppercase;
  transition: var(--transition);
}
.see-all-link:hover { gap: 10px; }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: rgba(232,160,32,.6);
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,.11), 0 0 0 1px rgba(232,160,32,.1);
}
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
}
.product-card__actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}
.product-card:hover .product-card__actions {
  opacity: 1;
  transform: translateX(0);
}
.product-card__action-btn {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.product-card__action-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--white);
}
.product-card__img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f9f9f9;
}
.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .4s ease;
  padding: 8px;
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.07); }
.product-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__cat {
  font-size: 10px;
  font-weight: 700;
  color: var(--yellow-dark);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 5px;
}
.product-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 10px;
  flex: 1;
}
.product-card__price {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.product-card__btns {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

/* ============================================================
   BRANDS STRIP — auto-scroll marquee
   ============================================================ */
.brands {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.brands__marquee-wrap {
  position: relative;
  overflow: hidden;
  /* fade edges */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.brands__marquee-wrap:hover .brands__track { animation-play-state: paused; }
.brands__track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-mid);
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
  min-width: 100px;
  text-align: center;
  letter-spacing: .2px;
}
.brand-chip:hover {
  border-color: var(--yellow);
  color: var(--yellow-dark);
  background: var(--yellow-light);
  box-shadow: var(--glow-yellow);
  transform: translateY(-2px);
}
.brand-chip img {
  width: 48px;
  height: 36px;
  object-fit: contain;
  display: block;
}
/* Old manual-scroll nav kept for fallback but hidden by default */
.brands__nav { display: none; }

/* ============================================================
   BLOG GRID — 3 column on desktop
   ============================================================ */
.blog { padding: 64px 0; background: var(--navy); }
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-card {
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232,160,32,.35);
  box-shadow: 0 12px 36px rgba(0,0,0,.3), var(--glow-yellow);
}
.blog-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy-mid);
}
.blog-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.blog-card:hover .blog-card__img img { transform: scale(1.06); }
.blog-card__body { padding: 20px; }
.blog-card__date {
  font-size: 10px;
  color: var(--yellow);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}
.blog-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-card__excerpt {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   GOOGLE MAP SECTION
   ============================================================ */
.store-map {
  padding: 64px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}
.store-map__inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: stretch;
}
.store-map__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--card-shadow);
  min-height: 340px;
  background: #eee;
}
.store-map__frame iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: none;
  display: block;
}
.store-map__info {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.store-map__info-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}
.store-map__info-tag {
  font-size: 11px;
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.store-map__info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}
.store-map__info-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(232,160,32,.15);
  border: 1px solid rgba(232,160,32,.25);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.store-map__info-item strong {
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 2px;
}
.store-map__directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 10px 20px;
  background: var(--yellow);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
  width: fit-content;
}
.store-map__directions:hover {
  background: var(--yellow-dark);
  box-shadow: var(--glow-yellow);
  transform: translateY(-1px);
}

/* ============================================================
   SUPPORT BANNER
   ============================================================ */
.support {
  background: var(--navy);
  padding: 48px 0;
  color: var(--white);
}
.support__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.support__heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}
.support__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}
.support__sub { color: rgba(255,255,255,.6); font-size: 14px; }
.support__btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.support__stats { display: flex; flex-direction: column; gap: 20px; }
.support__stat strong { display: block; font-size: 20px; font-weight: 800; color: var(--yellow); }
.support__stat span { font-size: 13px; color: rgba(255,255,255,.6); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0e0e1c;
  color: rgba(255,255,255,.6);
  padding: 56px 0 24px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer__logo strong { font-size: 18px; font-weight: 800; color: var(--white); }
.footer__logo span { font-size: 12px; color: rgba(255,255,255,.3); }
.footer__desc { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.footer__links a {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--yellow); }
.footer__col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: .4px;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
}
.footer__contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,.28);
}
.footer__bottom-links { display: flex; gap: 16px; }
.footer__bottom-links a { color: rgba(255,255,255,.28); transition: var(--transition); }
.footer__bottom-links a:hover { color: var(--yellow); }

/* ============================================================
   PRODUCTS PAGE — LAYOUT
   ============================================================ */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  padding: 40px 0;
  align-items: start;
}

/* Sidebar */
.sidebar {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.sidebar__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar__section { margin-bottom: 24px; }
.sidebar__section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--text-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar__check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 13px;
  cursor: pointer;
}
.sidebar__check-item input[type=checkbox] {
  accent-color: var(--yellow);
  width: 15px; height: 15px;
}
.sidebar__count {
  margin-left: auto;
  font-size: 11px;
  color: var(--text-light);
  background: var(--off-white);
  padding: 1px 6px;
  border-radius: 10px;
}

/* Price range */
.price-range { padding: 8px 0; }
.price-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}
.price-inputs input {
  width: 100%;
  padding: 7px 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  outline: none;
  transition: var(--transition);
}
.price-inputs input:focus { border-color: var(--yellow); }

/* Sort bar */
.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.sort-bar__left { display: flex; align-items: center; gap: 10px; }
.sort-bar__count { font-size: 14px; color: var(--text-mid); }
.sort-bar select {
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  outline: none;
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.sort-bar select:focus { border-color: var(--yellow); }
.view-toggle { display: flex; gap: 4px; }
.view-btn {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  background: var(--white);
}
.view-btn.active, .view-btn:hover {
  border-color: var(--yellow);
  background: var(--yellow-light);
  color: var(--yellow-dark);
}
.mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  background: var(--white);
}

/* List view */
.products-list .product-card { flex-direction: row; max-height: 160px; }
.products-list .product-card__img-wrap { width: 160px; flex-shrink: 0; aspect-ratio: unset; }
.products-list .product-card__body { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 12px; }
.products-list .product-card__name { flex: 1; }
.products-list .product-card__btns { grid-template-columns: 1fr 1fr; }

/* Empty state */
.empty-state { text-align: center; padding: 80px 20px; color: var(--text-mid); }
.empty-state__icon { font-size: 60px; margin-bottom: 16px; }
.empty-state__title { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail { padding: 36px 0 60px; }
.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-light); transition: var(--transition); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb__sep { color: #ccc; }
.breadcrumb__current { color: var(--text-dark); font-weight: 500; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 20px;
  transition: var(--transition);
}
.back-link:hover { color: var(--yellow); gap: 4px; }

/* Gallery */
.gallery__main {
  aspect-ratio: 1;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
  cursor: zoom-in;
  position: relative;
}
.gallery__main img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform .3s ease;
}
.gallery__main:hover img { transform: scale(1.05); }
.gallery__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.gallery__thumb {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.gallery__thumb.active, .gallery__thumb:hover { border-color: var(--yellow); }

/* Product info panel */
.product-info__cat {
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow-dark);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 8px;
}
.product-info__name {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.product-info__price {
  font-size: 30px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.product-info__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.warranty-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: var(--yellow-light);
  border: 1px solid rgba(232,160,32,.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--yellow-dark);
}
.delivery-info {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--green-light);
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: #15803d;
  margin-bottom: 20px;
}
.product-info__label { font-size: 13px; font-weight: 600; color: var(--text-mid); margin-bottom: 8px; }
.variant-select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  background: var(--white);
  outline: none;
  margin-bottom: 18px;
  transition: var(--transition);
  cursor: pointer;
}
.variant-select:focus { border-color: var(--yellow); }

/* Quantity stepper */
.qty-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
  margin-bottom: 20px;
}
.qty-stepper button {
  width: 40px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  background: var(--off-white);
  transition: var(--transition);
  color: var(--text-dark);
}
.qty-stepper button:hover { background: var(--yellow); color: var(--white); }
.qty-stepper input {
  width: 56px; height: 42px;
  border: none;
  border-left: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  background: var(--white);
}
.product-info__btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

/* WhatsApp button */
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
  width: 100%;
  margin-bottom: 20px;
}
.whatsapp-btn:hover {
  background: #20b858;
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.whatsapp-btn svg { width: 20px; height: 20px; }

/* COD badge */
.cod-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.cod-badge strong { color: var(--text-dark); }

/* Product description */
.product-desc { padding: 48px 0; }
.product-desc__grid {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.product-desc__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}
/* Spec table rendered from pasted content */
.product-desc__content { color: var(--text-mid); line-height: 1.8; }
.product-desc__content h2,
.product-desc__content h3 { color: var(--text-dark); margin: 20px 0 10px; font-weight: 700; }
.product-desc__content ul { padding-left: 20px; margin: 10px 0; }
.product-desc__content li { margin-bottom: 6px; list-style: disc; }
.product-desc__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 20px;
  font-size: 14px;
}
.product-desc__content table th,
.product-desc__content table td {
  padding: 9px 14px;
  border: 1px solid var(--border);
  text-align: left;
}
.product-desc__content table thead th {
  background: var(--navy);
  color: var(--yellow);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.product-desc__content table tbody tr:nth-child(even) td { background: var(--off-white); }
.product-desc__content table tbody tr:hover td { background: var(--yellow-light); }
.product-desc__content table td:first-child { font-weight: 600; color: var(--text-dark); width: 35%; }

/* Key highlights */
.highlights { margin: 24px 0; }
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.highlight-item:last-child { border-bottom: none; }
.highlight-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--yellow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  color: var(--yellow-dark);
}
.highlight-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.highlight-text span   { font-size: 13px; color: var(--text-mid); }

/* Specs table */
.specs-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.specs-table tr:nth-child(odd) td { background: var(--off-white); }
.specs-table td { padding: 10px 14px; border: 1px solid var(--border); font-size: 14px; }
.specs-table td:first-child { font-weight: 600; color: var(--text-mid); width: 35%; }
.specs-table td:last-child   { color: var(--text-dark); }

/* Related products */
.related { padding: 0 0 60px; }

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-page { padding: 40px 0 60px; }
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text-light);
  border-bottom: 2px solid var(--border);
}
.cart-table td { padding: 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-item__img {
  width: 72px; height: 72px;
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px;
}
.cart-item__name    { font-weight: 600; font-size: 14px; color: var(--text-dark); }
.cart-item__variant { font-size: 12px; color: var(--text-light); margin-top: 3px; }
.cart-item__price   { font-size: 15px; font-weight: 600; }
.cart-item__total   { font-size: 16px; font-weight: 700; color: var(--yellow-dark); }
.cart-remove {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--red-light);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}
.cart-remove:hover { background: var(--red); color: var(--white); }
.cart-summary {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.cart-summary__title  { font-size: 17px; font-weight: 700; margin-bottom: 20px; }
.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.cart-summary__row:last-of-type { border-bottom: none; }
.cart-summary__total { font-size: 22px; font-weight: 800; color: var(--text-dark); }
.cart-summary__note  { font-size: 12px; color: var(--text-light); margin: 12px 0; line-height: 1.6; }

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-page { padding: 40px 0 60px; }
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}
.checkout-form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 7px; }
.form-group label .req { color: var(--red); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
  background: var(--white);
}
.form-control:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(232,160,32,.1); }
.form-control.error { border-color: var(--red); }
.form-error { font-size: 12px; color: var(--red); margin-top: 5px; }
textarea.form-control { resize: vertical; min-height: 90px; }
.order-items-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.order-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.order-item:last-of-type { border-bottom: none; }
.order-item__img {
  width: 56px; height: 56px;
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px;
  flex-shrink: 0;
}
.order-item__name    { font-size: 13px; font-weight: 600; flex: 1; }
.order-item__variant { font-size: 11px; color: var(--text-light); }
.order-item__total   { font-size: 14px; font-weight: 700; white-space: nowrap; }

/* ============================================================
   ORDER SUCCESS PAGE
   ============================================================ */
.success-page {
  padding: 80px 20px;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.success-check {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
  animation: checkPop .5s cubic-bezier(.17,.67,.42,1.37) both;
}
@keyframes checkPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ============================================================
   ABOUT / PRIVACY PAGES
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2a2a50 100%);
  padding: 56px 0;
  color: var(--white);
  text-align: center;
}
.page-hero__breadcrumb { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.page-hero__title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 10px; }
.page-hero__sub   { color: rgba(255,255,255,.65); font-size: 15px; }
.page-tags { display: flex; justify-content: center; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.page-tag {
  padding: 5px 16px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}
.page-content { padding: 56px 0; }
.page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.content-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.content-card--highlight { background: var(--yellow-light); border-color: rgba(232,160,32,.3); }
.content-card__title { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; }
.content-card__list { list-style: none; }
.content-card__list li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.content-card__list li:last-child { border-bottom: none; }
.content-card__list li::before { content: '•'; color: var(--yellow); font-weight: 700; flex-shrink: 0; }

/* Policy tabs */
.policy-tabs { padding: 0 0 56px; }
.policy-tabs__nav { display: flex; gap: 4px; margin-bottom: 20px; border-bottom: 2px solid var(--border); }
.tab-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  background: none;
  cursor: pointer;
}
.tab-btn.active, .tab-btn:hover { color: var(--yellow-dark); border-bottom-color: var(--yellow); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ============================================================
   ORDER TRACKING PAGE
   ============================================================ */
.track-form {
  max-width: 480px;
  margin: 60px auto;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}
.track-result { margin-top: 32px; text-align: left; }
.track-timeline { position: relative; padding-left: 28px; margin-top: 20px; }
.track-step { position: relative; padding-bottom: 24px; }
.track-step::before {
  content: '';
  position: absolute;
  left: -20px; top: 6px; bottom: -6px;
  width: 2px;
  background: var(--border);
}
.track-step:last-child::before { display: none; }
.track-step__dot {
  position: absolute;
  left: -26px; top: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--white);
}
.track-step.done   .track-step__dot { background: var(--green); }
.track-step.active .track-step__dot { background: var(--yellow); box-shadow: 0 0 0 3px rgba(232,160,32,.2); }
.track-step__label { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.track-step__time  { font-size: 12px; color: var(--text-light); }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination { margin-top: 36px; }
.pagination__list { display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; }
.pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px; height: 38px;
  padding: 0 10px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
  background: var(--white);
}
.pagination__btn:hover { border-color: var(--yellow); color: var(--yellow-dark); }
.pagination__btn--active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--white);
  font-weight: 700;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible       { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: var(--transition);
  animation: waPulse 2.5s infinite;
}
.wa-float:hover { background: #20b858; transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.wa-float svg { width: 28px; height: 28px; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.1); }
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 28px;
  width: 100%;
  max-width: 480px;
  transform: translateY(40px);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.modal-overlay.open .modal { transform: translateY(0); }

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.toast {
  background: var(--navy);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  animation: toastIn .3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toast--success { background: var(--green); }
.toast--error   { background: var(--red); }
@keyframes toastIn  { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes toastOut { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(16px); } }

/* ============================================================
   SEARCH RESULTS PAGE
   ============================================================ */
.search-page { padding: 40px 0 60px; }
.search-query-display { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.search-query-display em { color: var(--yellow-dark); font-style: normal; }
.search-count { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   MOBILE FILTER DRAWER
   ============================================================ */
.filter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.filter-overlay.open { opacity: 1; visibility: visible; }
.filter-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 300px;
  background: var(--white);
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  padding: 24px;
  overflow-y: auto;
}
.filter-drawer.open { transform: translateX(0); }
.filter-drawer__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .product-detail__grid { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: repeat(2, 1fr); }
  .store-map__inner { grid-template-columns: 1fr; }
  .store-map__frame { min-height: 280px; }
  .store-map__frame iframe { min-height: 280px; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  /* ── MOBILE HEADER ── */
  .header__inner { gap: 8px; }

  /* Burger shows on mobile */
  .header__burger { display: flex; }

  /* Logo shrinks slightly */
  .header__logo-text span { display: none; }

  /* Nav hidden until burger clicked */
  .header__nav { display: none; }
  .header__nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 12px 20px;
    gap: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    z-index: 998;
  }

  /* Hide desktop search bar completely on mobile */
  .header__search { display: none; }

  /* Show search icon on mobile */
  .header__search-icon { display: flex; }

  /* Hide "Cart" text label on mobile — show icon only */
  .header__cart-label { display: none; }
  .header__cart { padding: 8px; }

  .shop-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; position: static; }
  .sidebar.open { display: block; }
  .mobile-filter-btn { display: flex; }

  .cart-layout,
  .checkout-layout { grid-template-columns: 1fr; }
  .order-items-card { position: static; }
  .cart-summary     { position: static; }

  .support__inner { grid-template-columns: 1fr; }
  .support__stats { flex-direction: row; gap: 24px; }

  .page-grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .blog__grid { grid-template-columns: 1fr; }

  .product-info__btns { grid-template-columns: 1fr; }

  .checkout-form-card { padding: 20px; }

  .wa-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }

  .hero { min-height: 400px; }
  .hero__slide { min-height: 400px; }

  .categories__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card__price { font-size: 15px; }
  .product-card__btns { grid-template-columns: 1fr; }
  .categories__grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hero__title { font-size: 26px; }
  .hero { min-height: 360px; }
  .hero__slide { min-height: 360px; }
  .store-map__info { padding: 22px; }
}