/* ========================================================
   DK SUPERMART BHALKI — Stylesheet
   ======================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #e8500a;
  --primary-dark: #c43d00;
  --primary-light: #fff3ee;
  --primary-glow: rgba(232,80,10,.25);
  --accent: #fbbf24;
  --accent-dark: #f59e0b;
  --success: #10b981;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --text: #334155;
  --muted: #64748b;
  --border: #e2e8f0;
  --white: #ffffff;
  --bg: #fafafa;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(15,23,42,.06);
  --shadow-md: 0 6px 24px rgba(15,23,42,.08);
  --shadow-lg: 0 16px 48px rgba(15,23,42,.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; }

/* ========================================================
   TOP BAR
   ======================================================== */
.topbar {
  background: linear-gradient(90deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
  font-size: .82rem;
  padding: 8px 0;
  border-bottom: 3px solid var(--primary);
}
.topbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-inner span { font-weight: 500; opacity: .9; }
.topbar-contact { display: flex; align-items: center; gap: 10px; }
.topbar-contact a { color: var(--accent); text-decoration: none; font-weight: 600; transition: color .2s; }
.topbar-contact a:hover { color: #fff; }
.dot { opacity: .5; }

/* ========================================================
   NAVBAR
   ======================================================== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(15,23,42,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  font-weight: 900;
  letter-spacing: -1px;
  box-shadow: 0 6px 16px var(--primary-glow);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text span { font-size: 1.15rem; font-weight: 800; color: var(--dark); }
.logo-text span em { font-style: normal; color: var(--primary); }
.logo-text small { font-size: .68rem; font-weight: 600; color: var(--muted); letter-spacing: .18em; margin-top: 4px; }

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: .92rem;
  font-weight: 600;
  transition: color .2s;
  position: relative;
}
.nav-links a:not(.nav-cta):hover { color: var(--primary); }
.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 10px;
  box-shadow: 0 6px 16px var(--primary-glow);
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px var(--primary-glow); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 4px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--white);
  z-index: 99;
  padding: 24px 6%;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  transform: translateY(-10px);
  opacity: 0;
  transition: transform .25s, opacity .25s;
  pointer-events: none;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
.mobile-nav a:hover { color: var(--primary); }
.mob-cta {
  margin-top: 16px !important;
  background: var(--primary);
  color: #fff !important;
  text-align: center;
  padding: 14px !important;
  border-radius: 10px;
  border: none !important;
}
.mob-cta-alt {
  margin-top: 10px !important;
  background: var(--dark);
}

/* ========================================================
   HERO
   ======================================================== */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f3460 100%);
  color: #fff;
  padding: 80px 5% 100px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 65%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: 15%;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(251,191,36,.2) 0%, transparent 65%);
  border-radius: 50%;
}

.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  background: rgba(232,80,10,.2);
  border: 1.5px solid rgba(232,80,10,.5);
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 50px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero h1 span {
  background: linear-gradient(90deg, var(--accent), #fef3c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-stats { display: flex; gap: 28px; margin-bottom: 32px; flex-wrap: wrap; }
.hs-item {
  display: flex;
  flex-direction: column;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.hs-item:last-child { border-right: 0; padding-right: 0; }
.hs-item strong {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hs-item span {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-hours {
  display: inline-block;
  background: rgba(16,185,129,.15);
  border: 1px solid rgba(16,185,129,.35);
  color: #86efac;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: .88rem;
}

.hero-visual {
  position: relative;
  z-index: 2;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,.15);
}
.ring1 { width: 400px; height: 400px; animation: rotate 40s linear infinite; }
.ring2 { width: 280px; height: 280px; animation: rotate 30s linear infinite reverse; }
@keyframes rotate { to { transform: rotate(360deg); } }

.hero-card {
  background: rgba(255,255,255,.98);
  color: var(--dark);
  padding: 28px 32px;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
}
.cart-emoji {
  font-size: 3.2rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 12px;
  border-radius: 16px;
  line-height: 1;
}
.cart-text { display: flex; flex-direction: column; }
.cart-text strong { font-size: 1.1rem; font-weight: 800; }
.cart-text small { font-size: .82rem; color: var(--muted); margin-top: 4px; }

.floating {
  position: absolute;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  cursor: grab;
  user-select: none;
  letter-spacing: .01em;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  white-space: nowrap;
  will-change: transform, left, top;
  transition: box-shadow .15s;
}
.floating:active { cursor: grabbing; }
.floating.popping {
  animation: pop .35s ease forwards;
}
.f1 { background: linear-gradient(135deg, #ec4899, #be185d); }
.f2 { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.f3 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.f4 { background: linear-gradient(135deg, #ef4444, #b91c1c); }
.f5 { background: linear-gradient(135deg, #06b6d4, #0891b2); }

@keyframes pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.5) rotate(8deg); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
  70%  { transform: scale(0.85) rotate(-4deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* ========================================================
   BUTTONS
   ======================================================== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,.15); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* ========================================================
   MARQUEE
   ======================================================== */
.marquee-wrap {
  background: linear-gradient(90deg, var(--primary), var(--accent-dark));
  color: #fff;
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-size: .95rem;
  font-weight: 700;
  margin: 0 36px;
  letter-spacing: .02em;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========================================================
   SECTIONS
   ======================================================== */
section { padding: 88px 5%; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.light-tag { background: rgba(232,80,10,.15); color: var(--accent); }
.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.section-header p { color: var(--muted); max-width: 620px; margin: 0 auto; font-size: 1.02rem; }

/* ========================================================
   CATEGORY GRID
   ======================================================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.cat-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: default;
  position: relative;
  overflow: hidden;
  color: inherit;
  display: block;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--cat-color, var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--cat-color, var(--primary)); }
.cat-card:hover::before { transform: scaleX(1); }

.cat-icon {
  width: 78px;
  height: 78px;
  border-radius: 20px;
  background: var(--cat-bg, var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 16px;
  transition: transform .3s;
}
.cat-card:hover .cat-icon { transform: scale(1.1) rotate(-5deg); }
.cat-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.cat-card .cat-count {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--cat-color, var(--primary));
  background: var(--cat-bg, var(--primary-light));
  padding: 3px 12px;
  border-radius: 50px;
  margin-top: 4px;
}

.see-all-wrap { text-align: center; margin-top: 48px; }

/* ========================================================
   WHY US (dark)
   ======================================================== */
#why {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
#why::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 65%);
  border-radius: 50%;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.why-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  transition: transform .25s, background .25s;
}
.why-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.08); }
.why-icon { font-size: 2.6rem; margin-bottom: 16px; }
.why-card h4 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.why-card p { font-size: .88rem; color: rgba(255,255,255,.7); }

/* ========================================================
   VISIT SECTION
   ======================================================== */
.visit-section { background: linear-gradient(180deg, #fff 0%, var(--primary-light) 100%); }
.visit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}
.visit-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.visit-card-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-dark) 100%);
  color: #fff;
  border: 0;
}
.visit-card-primary h3, .visit-card-primary p { color: #fff !important; }
.v-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 18px;
}
.visit-card-primary .v-icon { background: rgba(255,255,255,.2); color: #fff; }
.visit-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.visit-card p { color: var(--muted); font-size: .92rem; margin-bottom: 20px; }

.visit-phones { display: flex; flex-direction: column; gap: 10px; }
.phone-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
  padding: 14px 18px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: background .2s, transform .2s;
}
.phone-btn:hover { background: rgba(255,255,255,.25); transform: translateX(4px); }
.ph-label { font-size: .78rem; opacity: .8; text-transform: uppercase; letter-spacing: .08em; }
.ph-num { font-size: 1.1rem; font-weight: 800; letter-spacing: .02em; }

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
}
.hours-row:last-of-type { border-bottom: 0; }
.hours-row strong { color: var(--dark); font-weight: 600; }
.hours-row span { color: var(--primary); font-weight: 700; }
.hours-note {
  margin-top: 14px;
  background: #d1fae5;
  color: #065f46;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 600;
}

address { font-style: normal; font-size: .92rem; line-height: 1.8; color: var(--text); margin-bottom: 20px; }
footer address { color: rgba(255,255,255,.75); }
.loc-btn {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: .88rem;
  transition: background .2s;
}
.loc-btn:hover { background: var(--primary); color: #fff; }

/* ========================================================
   CTA STRIP
   ======================================================== */
.cta-strip {
  background: linear-gradient(135deg, var(--dark) 0%, #0f3460 100%);
  color: #fff;
  padding: 60px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 800; margin-bottom: 8px; }
.cta-strip p { color: rgba(255,255,255,.75); max-width: 480px; }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ========================================================
   FOOTER
   ======================================================== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 60px 5% 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  gap: 48px;
  max-width: 1300px;
  margin: 0 auto 40px;
}
.footer-brand .logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.fb-name { display: block; font-size: 1.1rem; font-weight: 800; color: #fff; }
.fb-loc { font-size: .68rem; font-weight: 600; color: var(--accent); letter-spacing: .18em; }
.footer-brand p { font-size: .88rem; line-height: 1.75; }

.footer-col h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 3px;
  background: var(--primary);
  border-radius: 3px;
}
.footer-col ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
.footer-col ul li a,
.footer-col ul li span {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .85rem;
  padding: 5px 0;
  display: block;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--accent); }

.fc-row { display: flex; gap: 12px; margin-bottom: 14px; }
.fc-ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(232,80,10,.2);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fc-row a { color: rgba(255,255,255,.75); text-decoration: none; font-weight: 600; }
.fc-row a:hover { color: var(--accent); }
.fc-row small { opacity: .6; font-size: .78rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  text-align: center;
  font-size: .85rem;
}
.footer-bottom strong { color: var(--accent); }

/* ========================================================
   FLOATING CALL BUTTON (mobile)
   ======================================================== */
.float-call {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  z-index: 90;
  box-shadow: 0 8px 24px rgba(16,185,129,.5);
  animation: pulse 2s ease-in-out infinite;
  text-decoration: none;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 24px rgba(16,185,129,.5); }
  50% { transform: scale(1.08); box-shadow: 0 12px 32px rgba(16,185,129,.7); }
}

/* ========================================================
   PRODUCTS PAGE
   ======================================================== */
.products-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0f3460 100%);
  color: #fff;
  padding: 60px 5% 50px;
  text-align: center;
}
.products-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.products-hero p { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto; }

.filters {
  position: sticky;
  top: 72px;
  z-index: 50;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  padding: 20px 5%;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.filters-row {
  display: flex;
  gap: 12px;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.search-wrap {
  flex: 1;
  min-width: 200px;
  position: relative;
}
.search-wrap input {
  width: 100%;
  padding: 12px 18px 12px 42px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: .95rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.search-wrap input:focus { border-color: var(--primary); }
.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1.1rem;
}

.cat-pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 16px 5% 0;
  max-width: 1300px;
  margin: 0 auto;
  scrollbar-width: thin;
}
.cat-pills::-webkit-scrollbar { height: 4px; }
.cat-pills::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.pill {
  padding: 8px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s;
  font-family: inherit;
}
.pill:hover { border-color: var(--primary); color: var(--primary); }
.pill.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.products-container { padding: 32px 5% 60px; max-width: 1400px; margin: 0 auto; }
.results-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.results-meta .count { font-size: .95rem; color: var(--muted); }
.results-meta .count strong { color: var(--dark); font-weight: 800; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 18px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.pc-cat-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--pc-bg, var(--primary-light));
  color: var(--pc-color, var(--primary));
  text-transform: uppercase;
  letter-spacing: .04em;
}
.pc-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--pc-bg, var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.pc-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 4px;
  min-height: 2.5em;
}
.pc-variant {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 8px;
  min-height: 1.1em;
}
.pc-brand {
  font-size: .72rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.pc-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}
.pc-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
}
.pc-price small { font-size: .7rem; color: var(--muted); font-weight: 500; }
.pc-unit {
  font-size: .72rem;
  color: var(--muted);
  background: #f1f5f9;
  padding: 3px 8px;
  border-radius: 6px;
}

.no-results {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}
.no-results .emoji { font-size: 3rem; display: block; margin-bottom: 12px; }
.no-results h3 { color: var(--dark); font-size: 1.3rem; margin-bottom: 8px; }

.load-more-wrap { text-align: center; margin-top: 32px; }

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 968px) {
  .hero { grid-template-columns: 1fr; padding: 60px 5% 80px; text-align: center; gap: 40px; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-visual { height: 340px; }
  .ring1 { width: 300px; height: 300px; }
  .ring2 { width: 210px; height: 210px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar { font-size: .74rem; }
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-inner span { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .float-call { display: flex; }

  section { padding: 56px 5%; }

  .logo-text span { font-size: 1rem; }
  .logo-text small { font-size: .6rem; letter-spacing: .12em; }

  .hero { padding: 44px 5% 60px; }
  .hero-stats { gap: 16px; }
  .hs-item { padding-right: 14px; }
  .hs-item strong { font-size: 1.35rem; }
  .hs-item span { font-size: .7rem; }
  .hero-visual { height: 300px; }
  .floating { font-size: .74rem; padding: 8px 14px; }
  .f5 { right: 10px; left: auto; margin-left: 0; }

  .cta-strip { padding: 44px 5%; flex-direction: column; text-align: center; }
  .cta-buttons { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-col ul { grid-template-columns: 1fr 1fr; }

  .filters { top: 72px; padding: 14px 5%; }
  .products-container { padding: 24px 5% 40px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card { padding: 14px; }
  .pc-icon { width: 48px; height: 48px; font-size: 1.4rem; }
  .pc-name { font-size: .82rem; min-height: 2.4em; }
  .pc-price { font-size: 1rem; }
  .pc-cat-tag { font-size: .6rem; padding: 2px 8px; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-card { padding: 20px 12px; }
  .cat-icon { width: 60px; height: 60px; font-size: 1.7rem; margin-bottom: 12px; }
  .cat-card h3 { font-size: .88rem; }
  .cat-card .cat-count { font-size: .7rem; }
  .products-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 380px) {
  .products-grid { grid-template-columns: 1fr; }
}
