/* ============================================================
   TENACITY LOCKS LTD — Main Stylesheet
   Brand: #981491 (Purple) | #282627 (Dark)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── Variables ── */
:root {
  --purple: #981491;
  --purple-light: #b01aa9;
  --purple-dark: #720f6d;
  --dark: #282627;
  --dark2: #1a1719;
  --dark3: #0f0e0f;
  --white: #ffffff;
  --off-white: #f8f4f8;
  --gray: #6b6b6b;
  --gray-light: #e8e4e8;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.18);
  --shadow-purple: 0 4px 24px rgba(152,20,145,0.3);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --topbar-h: 40px;
  --topbar-h-mobile: auto;
  --nav-h: 80px;
  --header-total: calc(var(--topbar-h) + var(--nav-h));
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--gray); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: rgba(152,20,145,0.08);
  color: var(--purple);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 12px;
}
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 99px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: var(--shadow-purple);
}
.btn-primary:hover { background: var(--purple-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(152,20,145,0.4); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #3a363a; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}
.btn-outline:hover { background: var(--purple); color: #fff; }
.btn-white { background: #fff; color: var(--purple); }
.btn-white:hover { background: var(--off-white); }
.btn-sm { padding: 8px 20px; font-size: 0.8rem; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1db954; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.btn-icon { width: 44px; height: 44px; padding: 0; justify-content: center; border-radius: 50%; }

/* ── Top Bar ── */
/* ── Top Bar ── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  background: var(--dark3);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  z-index: 1001;
  overflow: hidden;
}
.topbar > .container {
  height: 100%;
  display: flex;
  align-items: center;
}
/* Three-column grid: social | email | phones — no overlap ever */
.topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 8px;
}
.topbar-social {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
}
.topbar-social a {
  color: rgba(255,255,255,0.65);
  font-size: 0.74rem;
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
  transition: var(--transition);
  white-space: nowrap;
}
.topbar-social a:hover { color: #e0b4dd; }
.topbar-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: rgba(255,255,255,0.75);
  font-size: 0.74rem;
  white-space: nowrap;
  line-height: 1;
}
.topbar-email a { color: rgba(255,255,255,0.75); transition: var(--transition); }
.topbar-email a:hover { color: #fff; }
.topbar-phones {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.topbar-phones a {
  color: rgba(255,255,255,0.65);
  font-size: 0.74rem;
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
  transition: var(--transition);
  white-space: nowrap;
}
.topbar-phones a:hover { color: #fff; }
.topbar-phones .sep { color: rgba(255,255,255,0.2); font-size: 0.65rem; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(30, 28, 30, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
  display: flex;
  align-items: stretch;
}
.nav > .container {
  display: flex;
  align-items: stretch;
  height: 100%;
}
.nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.4); }
.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
  width: 100%;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; margin-right: 24px; }
.nav-logo img { height: 30px; filter: brightness(0) invert(1); }
.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-links a {
  padding: 10px 14px;
  font-family: var(--font-display);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.72);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  line-height: 1;
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; background: rgba(152,20,145,0.22); }
.nav-links a.active { color: #e0b4dd; background: rgba(152,20,145,0.18); }
.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.cart-btn {
  position: relative;
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: rgba(152,20,145,0.25);
  color: #fff;
  border-radius: 99px;
  font-family: var(--font-display);
  font-size: 0.83rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}
.cart-btn:hover { background: var(--purple); box-shadow: var(--shadow-purple); }
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  min-width: 18px; height: 18px;
  background: var(--warning);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 99px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
/* Hamburger — hidden on desktop, shown on mobile via media query */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: transparent;
  border: none;
  margin-left: 8px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
/* Mobile nav — slides down from nav bar */
.mobile-nav {
  position: fixed;
  top: var(--header-total);
  left: 0; right: 0;
  background: var(--dark2);
  border-bottom: 2px solid rgba(152,20,145,0.3);
  padding: 12px 16px 16px;
  transform: translateY(-110%);
  opacity: 0;
  z-index: 999;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav a {
  display: block;
  padding: 13px 16px;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: #fff; background: rgba(152,20,145,0.2); }
body { padding-top: var(--header-total); }

/* ── Hero ── */
.hero {
  min-height: calc(100vh - var(--header-total));
  background: var(--dark3);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
  padding: 80px 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.55);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(100, 0, 95, 0.55) 0%,
    rgba(8, 6, 8, 0.65) 60%,
    rgba(8, 6, 8, 0.75) 100%
  );
}
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 700px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(152,20,145,0.3);
  border: 1px solid rgba(152,20,145,0.5);
  color: #e8a0e5;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
}
.hero-content h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); color: #fff; margin-bottom: 20px; line-height: 1.1; }
.hero-content h1 span { color: #ce8bcb; }
.hero-content p { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 40px; }
.hero-stat .num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: #fff; }
.hero-stat .label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-badge {
  position: absolute; bottom: 40px; right: 0;
  background: var(--purple);
  color: #fff;
  padding: 20px 32px;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  z-index: 2;
}
.hero-badge span { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.8; }
.hero-badge strong { display: block; font-family: var(--font-display); font-size: 1.4rem; }

/* ── Marquee / Trust Bar ── */
.trust-bar {
  background: var(--purple);
  overflow: hidden;
  padding: 12px 0;
}
.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0 32px;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.marquee-track span::after { content: '◆'; color: rgba(255,255,255,0.3); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Product Cards ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(152,20,145,0.2); }
.product-card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--off-white);
  position: relative;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.offer-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--purple);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
}
.product-card-body { padding: 16px 20px 20px; }
.product-card-cat {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.product-card-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-price { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.price-current { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; color: var(--purple); }
.price-original { font-size: 0.85rem; color: var(--gray); text-decoration: line-through; }
.product-card-actions { display: flex; gap: 8px; }
.product-card-actions .btn { flex: 1; padding: 10px; font-size: 0.8rem; }

/* ── Category Cards ── */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.cat-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: var(--transition);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.cat-card:hover img { transform: scale(1.08); }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 8, 10, 0.97) 0%,
    rgba(10, 8, 10, 0.70) 45%,
    rgba(10, 8, 10, 0.30) 100%
  );
  transition: var(--transition);
}
.cat-card:hover .cat-card-overlay {
  background: linear-gradient(
    to top,
    rgba(100, 0, 95, 0.97) 0%,
    rgba(100, 0, 95, 0.65) 45%,
    rgba(10, 8, 10, 0.25) 100%
  );
}
.cat-card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 18px 18px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
.cat-card-count {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-top: 3px;
}

/* ── Promo Banner ── */
.promo-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 380px;
  display: flex; align-items: center;
}
.promo-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo-banner-content { position: relative; z-index: 1; padding: 64px 56px; width: 100%; }

/* ── Why Us Section ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 32px; }
.why-card { text-align: center; }
.why-icon {
  width: 72px; height: 72px;
  background: rgba(152,20,145,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--purple); }
.why-card h4 { font-size: 1rem; margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; color: var(--gray); }

/* ── Testimonials ── */
.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.testimonial-stars { color: var(--warning); font-size: 1rem; margin-bottom: 16px; }
.testimonial-text { font-size: 0.95rem; color: var(--dark); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--purple);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-loc { font-size: 0.75rem; color: var(--gray); }

/* ── Blog Cards ── */
.blog-card {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-meta { font-size: 0.75rem; color: var(--gray); margin-bottom: 10px; }
.blog-card-cat { color: var(--purple); font-weight: 600; margin-right: 8px; }
.blog-card-title { font-size: 1.1rem; font-family: var(--font-display); font-weight: 700; margin-bottom: 10px; }
.blog-card-excerpt { font-size: 0.88rem; color: var(--gray); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ── Filter Tabs ── */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-tab {
  padding: 8px 20px;
  background: var(--off-white);
  color: var(--dark);
  border: 2px solid transparent;
  border-radius: 99px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.filter-tab:hover { border-color: var(--purple); color: var(--purple); }
.filter-tab.active { background: var(--purple); color: #fff; border-color: var(--purple); }

/* ── Product Detail ── */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.product-gallery .main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--off-white);
}
.product-gallery .main-img img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.product-thumbs { display: flex; gap: 10px; }
.product-thumb {
  width: 70px; height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: var(--transition);
}
.product-thumb:hover, .product-thumb.active { border-color: var(--purple); opacity: 1; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info { position: sticky; top: calc(var(--nav-h) + 24px); }
.product-info .breadcrumb { font-size: 0.8rem; color: var(--gray); margin-bottom: 16px; }
.product-info .breadcrumb a:hover { color: var(--purple); }
.product-info h1 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 12px; }
.product-price-block { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.product-price-block .current { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--purple); }
.product-price-block .original { font-size: 1rem; color: var(--gray); text-decoration: line-through; }
.product-price-block .save { background: rgba(152,20,145,0.1); color: var(--purple); font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 99px; }
.qty-selector { display: flex; align-items: center; gap: 0; border: 2px solid var(--gray-light); border-radius: 99px; overflow: hidden; width: fit-content; margin-bottom: 20px; }
.qty-btn { width: 40px; height: 40px; background: transparent; color: var(--dark); font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: var(--off-white); }
.qty-input { width: 50px; height: 40px; text-align: center; border: none; border-left: 2px solid var(--gray-light); border-right: 2px solid var(--gray-light); font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
.product-features { margin: 24px 0; }
.product-features h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); margin-bottom: 10px; }
.feature-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.feature-tag {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 99px;
}

/* ── Cart ── */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); padding: 12px 16px; border-bottom: 2px solid var(--gray-light); text-align: left; }
.cart-table td { padding: 16px; border-bottom: 1px solid var(--gray-light); vertical-align: middle; }
.cart-product-info { display: flex; align-items: center; gap: 16px; }
.cart-product-img { width: 64px; height: 64px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.cart-product-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-product-name { font-weight: 600; font-size: 0.9rem; }
.cart-product-sku { font-size: 0.75rem; color: var(--gray); }
.cart-summary {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.cart-summary h3 { margin-bottom: 24px; font-size: 1.2rem; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--gray-light); font-size: 0.9rem; }
.summary-row.total { border-bottom: none; font-weight: 700; font-size: 1.1rem; padding-top: 14px; }
.empty-cart { text-align: center; padding: 80px 20px; }
.empty-cart .icon { font-size: 4rem; margin-bottom: 16px; opacity: 0.3; }
.empty-cart h3 { margin-bottom: 8px; color: var(--gray); }

/* ── Checkout / WhatsApp Modal ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: var(--transition);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.modal-header h3 { font-size: 1.4rem; }
.modal-close { width: 32px; height: 32px; background: var(--off-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--gray); cursor: pointer; }
.modal-close:hover { background: var(--gray-light); }

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray); margin-bottom: 8px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--off-white);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--dark);
  transition: var(--transition);
}
.form-control:focus { border-color: var(--purple); background: #fff; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; }
.contact-info-card {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(152,20,145,0.25);
}
/* ── Contact Info Card ── */
.contact-info-card {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(152,20,145,0.3);
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-info-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 30px;
  margin-top: 1px;
}
.contact-info-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e0b4dd;
  margin-bottom: 6px;
  font-weight: 700;
  font-family: var(--font-display);
}
.contact-info-value {
  font-weight: 400;
  color: #ffffff;
  line-height: 1.75;
  font-size: 0.93rem;
}
.contact-info-value a {
  color: #f0d0ee;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(240,208,238,0.35);
  transition: var(--transition);
}
.contact-info-value a:hover {
  color: #fff;
  text-decoration-color: rgba(255,255,255,0.6);
}
.mpesa-card {
  background: rgba(152,20,145,0.22);
  border: 1px solid rgba(152,20,145,0.5);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  margin-top: 28px;
}
.mpesa-card h4 {
  color: #e0b4dd;
  font-size: 0.8rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-family: var(--font-display);
}
.mpesa-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  margin-bottom: 8px;
}
.mpesa-row:last-child { margin-bottom: 0; }
.mpesa-row span:first-child { color: rgba(255,255,255,0.7); }
.mpesa-row strong { color: #fff; font-size: 1.05rem; font-family: var(--font-display); }

/* ── Page Header ── */
.page-header {
  background: var(--dark2);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(152,20,145,0.2) 0%, transparent 60%);
}
.page-header-content { position: relative; z-index: 1; }
.page-header h1 { color: #fff; margin-bottom: 12px; }

/* ── Shop Sidebar ── */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.shop-sidebar {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: calc(var(--header-total) + 24px);
}
.sidebar-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-light);
}
.sidebar-cat-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.88rem;
  color: var(--dark);
  font-weight: 500;
  border: 2px solid transparent;
  margin-bottom: 4px;
  text-align: left;
  width: 100%;
  background: transparent;
}
.sidebar-cat-item:hover { background: var(--off-white); color: var(--purple); }
.sidebar-cat-item.active { background: rgba(152,20,145,0.08); color: var(--purple); border-color: rgba(152,20,145,0.2); font-weight: 700; }
.sidebar-cat-count {
  background: var(--off-white);
  color: var(--gray);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
  min-width: 24px;
  text-align: center;
}
.sidebar-cat-item.active .sidebar-cat-count { background: var(--purple); color: #fff; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: 0.3; }

/* ── About Page ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-image-grid img { border-radius: var(--radius); }
.about-image-grid img:first-child { grid-column: span 2; }
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin: 40px 0; }
.stat-item { text-align: center; padding: 24px; background: var(--off-white); border-radius: var(--radius); }
.stat-item .num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--purple); }
.stat-item .label { font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; }

/* ── Admin ── */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px;
  background: var(--dark3);
  flex-shrink: 0;
  position: fixed; top: 0; bottom: 0; left: 0;
  overflow-y: auto;
  padding: 0 0 32px;
  z-index: 100;
}
.admin-sidebar-logo { padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.admin-sidebar-logo img { height: 28px; filter: brightness(0) invert(1); }
.admin-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.admin-nav-item:hover { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.9); }
.admin-nav-item.active { background: rgba(152,20,145,0.15); color: #fff; border-color: var(--purple); }
.admin-nav-section { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.25); padding: 24px 20px 8px; }
.admin-main { margin-left: 260px; flex: 1; background: #f5f3f5; min-height: 100vh; padding: 32px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.admin-header h1 { font-size: 1.6rem; }
.admin-card { background: #fff; border-radius: var(--radius); padding: 24px; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.admin-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.admin-stat-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); border-left: 4px solid var(--purple); }
.admin-stat-card .val { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--dark); }
.admin-stat-card .lbl { font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); padding: 10px 14px; border-bottom: 2px solid var(--gray-light); text-align: left; }
.admin-table td { padding: 12px 14px; border-bottom: 1px solid var(--gray-light); font-size: 0.88rem; }
.admin-table tr:hover td { background: var(--off-white); }
.badge { display: inline-block; padding: 3px 10px; border-radius: 99px; font-size: 0.7rem; font-weight: 700; }
.badge-success { background: rgba(34,197,94,0.1); color: #16a34a; }
.badge-warning { background: rgba(245,158,11,0.1); color: #d97706; }
.badge-purple { background: rgba(152,20,145,0.1); color: var(--purple); }
.badge-danger { background: rgba(239,68,68,0.1); color: #dc2626; }
.admin-login {
  min-height: 100vh;
  background: var(--dark3);
  display: flex; align-items: center; justify-content: center;
}
.admin-login-card { background: #fff; border-radius: var(--radius-lg); padding: 48px; width: 400px; text-align: center; }
.admin-login-card img { height: 32px; margin: 0 auto 32px; }
.action-btns { display: flex; gap: 8px; }

/* ── Footer ── */
.footer { background: var(--dark3); color: rgba(255,255,255,0.7); }
.footer-top { padding: 80px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 64px; }
.footer-brand img { height: 32px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--purple); color: #fff; }
.footer-col h4 { color: #fff; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; }
.footer-contact-item span:first-child { color: var(--purple); font-size: 0.9rem; }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.8rem; }

/* ── Floating WhatsApp ── */
.wa-float {
  position: fixed; bottom: 32px; right: 32px;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 500;
  animation: waPulse 3s infinite;
  transition: var(--transition);
}
.wa-float:hover { transform: scale(1.12); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.8); }
}

/* ── Toast ── */
.cart-toast {
  position: fixed; bottom: 100px; right: 32px;
  background: var(--dark);
  color: #fff;
  padding: 12px 24px;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 500;
  z-index: 3000;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.cart-toast.show { opacity: 1; transform: translateY(0); }

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Pagination ── */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.page-btn { width: 40px; height: 40px; border-radius: 50%; background: var(--off-white); color: var(--dark); font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.page-btn:hover, .page-btn.active { background: var(--purple); color: #fff; }

/* ── Utility ── */
.text-purple { color: var(--purple); }
.text-gray { color: var(--gray); }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; } .mt-5 { margin-top: 48px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; } .mb-5 { margin-bottom: 48px; }
.hidden { display: none !important; }
.divider { border: none; border-top: 1px solid var(--gray-light); margin: 32px 0; }
.bg-off { background: var(--off-white); }
.bg-dark { background: var(--dark); color: #fff; }
.bg-purple { background: var(--purple); color: #fff; }

/* ── Search bar ── */
.search-bar { display: flex; gap: 0; max-width: 400px; }
.search-bar input { flex: 1; border-radius: var(--radius-sm) 0 0 var(--radius-sm); border: 2px solid var(--gray-light); border-right: none; padding: 10px 16px; font-size: 0.9rem; }
.search-bar input:focus { border-color: var(--purple); }
.search-bar button { padding: 10px 20px; background: var(--purple); color: #fff; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 0.9rem; }



/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile First, Clean & Conflict-Free
   Breakpoints:
     ≤ 1100px  tablet landscape
     ≤  768px  tablet portrait / large phone
     ≤  600px  phone
     ≤  400px  small phone
   ══════════════════════════════════════════════════════════════ */

/* ── 1100px — Tablet landscape ── */
@media (max-width: 1100px) {
  /* Topbar: shrink gap so all 3 cols fit */
  .topbar-inner { gap: 4px; }
  .topbar-social { gap: 10px; }
  .topbar-social a { font-size: 0.7rem; }
  .topbar-email { font-size: 0.7rem; }
  .topbar-phones a { font-size: 0.7rem; }
  .topbar-phones .sep { display: none; }
  /* Hide second phone number to save space */
  .topbar-phones a:last-child { display: none; }

  .shop-layout { grid-template-columns: 220px 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-inner { gap: 20px; }
  .nav-links a { padding: 10px 10px; font-size: 0.8rem; }
}

/* ── 900px — Hamburger kicks in ── */
@media (max-width: 900px) {
  /* Show hamburger, hide desktop nav links */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Topbar: hide email on small tablet, keep social + phones */
  .topbar-email { display: none; }
  /* Reset grid to 2 cols */
  .topbar-inner { grid-template-columns: 1fr 1fr; }
  .topbar-phones { justify-content: flex-end; }
  .topbar-phones a:last-child { display: flex; } /* show both phones again */
  .topbar-phones .sep { display: inline; }

  /* Layouts */
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static !important; display: flex; flex-wrap: wrap; gap: 8px; padding: 16px; }
  .shop-sidebar .sidebar-title { width: 100%; margin-bottom: 4px; }
  .sidebar-cat-item { width: auto; flex: none; }

  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .product-info { position: static; }

  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .admin-stat-grid { grid-template-columns: 1fr 1fr; }
}

/* ── 768px — Tablet portrait ── */
@media (max-width: 768px) {
  /* Topbar: single col, only social centred */
  .topbar-inner { grid-template-columns: 1fr; justify-items: center; gap: 0; }
  .topbar-email { display: none; }
  .topbar-phones { display: none; }
  .topbar-social { justify-content: center; gap: 18px; }
  .topbar-social a { font-size: 0.72rem; }

  /* Nav adjustments */
  .nav-inner { gap: 12px; }

  /* Hero */
  .hero { padding: 56px 0 40px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-badge { display: none; }
  .hero-actions .btn { min-width: 160px; }

  /* Grids */
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; gap: 16px; }
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-top { padding: 48px 0 32px; }

  /* Sections */
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 32px; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Cart */
  .cart-grid { grid-template-columns: 1fr !important; }
  .cart-summary { position: static; }
  .cart-table th:nth-child(3), .cart-table td:nth-child(3) { display: none; }

  /* Modal */
  .modal { padding: 24px 20px; }

  /* Admin */
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; padding: 24px 16px; }
  .admin-stat-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .admin-header { flex-wrap: wrap; gap: 12px; }
  .report-kpi-grid { grid-template-columns: 1fr 1fr !important; gap: 14px; }
  .chart-card-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .compare-controls { flex-wrap: wrap; }

  /* About */
  .stat-row { grid-template-columns: 1fr 1fr; gap: 16px; }
}

/* ── 600px — Phone ── */
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .nav-logo { margin-right: 12px; }
  .nav-logo img { height: 22px; }

  /* Hero */
  .hero { min-height: 88vh; padding: 40px 0 32px; }
  .hero-content h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .hero-content p { font-size: 0.92rem; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero-stat .num { font-size: 1.5rem; }

  /* Products */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card-body { padding: 12px 12px 14px; }
  .product-card-name { font-size: 0.83rem; }
  .price-current { font-size: 1rem; }
  .product-card-actions { flex-direction: column; gap: 6px; }
  .product-card-actions .btn { flex: none; width: 100%; text-align: center; justify-content: center; }

  /* Categories */
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Grids */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  /* Why */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .why-icon { width: 56px; height: 56px; font-size: 1.4rem; }
  .why-card h4 { font-size: 0.9rem; }
  .why-card p { font-size: 0.82rem; }

  /* Testimonials */
  .testimonial-card { padding: 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand p { max-width: 100%; }

  /* Sections */
  .section { padding: 40px 0; }
  .section-header { margin-bottom: 24px; }

  /* Page header */
  .page-header { padding: 32px 0; }

  /* About */
  .stat-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-item { padding: 14px; }
  .stat-item .num { font-size: 1.6rem; }

  /* Contact */
  .contact-info-card { padding: 24px 20px; }
  .mpesa-card { padding: 16px; }

  /* Cart */
  .cart-table th:nth-child(4), .cart-table td:nth-child(4) { display: none; }
  .cart-product-img { width: 48px; height: 48px; }
  .cart-product-name { font-size: 0.82rem; }
  .cart-summary { padding: 20px 16px; }
  .empty-cart { padding: 48px 16px; }

  /* Admin */
  .admin-stat-card { padding: 16px; }
  .admin-stat-card .val { font-size: 1.5rem; }
  .admin-login-card { padding: 28px 20px; margin: 0 16px; width: auto; }
  .admin-table { font-size: 0.8rem; }
  .admin-table th, .admin-table td { padding: 8px 8px; }

  /* Buttons */
  .btn-lg { padding: 14px 24px; font-size: 0.92rem; }

  /* Promo banner */
  .promo-banner { min-height: 420px !important; }

  /* Modal */
  .modal { padding: 20px 16px; }
  .modal-header h3 { font-size: 1.1rem; }

  /* Floating elements */
  .wa-float { bottom: 20px; right: 16px; width: 52px; height: 52px; font-size: 1.4rem; }
  .cart-toast { right: 16px; bottom: 80px; font-size: 0.82rem; }

  /* Product detail */
  .product-thumbs { gap: 6px; }
  .product-thumb { width: 54px; height: 54px; }
  .product-price-block .current { font-size: 1.5rem; }
  .feature-tags { gap: 6px; }
  .feature-tag { font-size: 0.72rem; padding: 5px 10px; }

  /* Filter tabs */
  .filter-tabs { gap: 6px; }
  .filter-tab { padding: 7px 14px; font-size: 0.78rem; }
}

/* ── 400px — Small phone ── */
@media (max-width: 400px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .nav-logo img { height: 20px; }
  .cart-btn { padding: 8px 14px; font-size: 0.78rem; }
}
