/* ===========================================================
   Suriya Dental Depot — shared stylesheet
   Palette drawn from brand logo: red, navy, gold, white
=========================================================== */

:root {
  --red: #C8102E;
  --red-dark: #8B0000;
  --navy: #0B1F4B;
  --navy-light: #16305F;
  --gold: #C9A227;
  --gold-light: #E8C766;
  --white: #FFFFFF;
  --off-white: #F7F8FB;
  --grey: #6B7280;
  --grey-light: #E5E7EB;
  --text: #1A1A2E;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow: 0 4px 20px rgba(11, 31, 75, 0.08);
  --shadow-lg: 0 10px 40px rgba(11, 31, 75, 0.15);
  --radius: 10px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.section-head p { color: var(--grey); margin-top: 12px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 6px 20px rgba(200,16,46,0.3); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--red); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ---------- Top info bar ---------- */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar a:hover { color: var(--gold-light); }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
}
.topbar-social a:hover { background: var(--gold); color: var(--navy); }

/* ---------- Header / Nav ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 52px; width: auto; flex-shrink: 0; border-radius: 8px; }
.footer-brand .brand-logo { background: var(--white); padding: 4px; }
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.brand-text { line-height: 1.1; }
.brand-text .name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.brand-text .name .hi { color: var(--red); }
.brand-text .name .lo { color: var(--navy); }
.brand-text .tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
}

nav.main-nav ul { display: flex; gap: 4px; align-items: center; }
nav.main-nav a.nav-link {
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
nav.main-nav a.nav-link:hover,
nav.main-nav a.nav-link.active {
  color: var(--red);
  background: rgba(200,16,46,0.06);
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ---------- Mega menu (hover dropdown under Dental / Medical / Lab) ---------- */
/* .has-mega is intentionally NOT position:relative — .mega-panel positions
   against header.site-header (position:sticky) so it spans the full header
   width instead of just the nav item's width. */
.has-mega > .nav-link { display: flex; align-items: center; gap: 5px; }
.has-mega > .nav-link::after { content: '▾'; font-size: 0.7em; opacity: 0.6; }
.mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--grey-light);
  box-shadow: 0 24px 48px rgba(11,31,75,0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 90;
}
.has-mega:hover .mega-panel,
.has-mega:focus-within .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-scroll { position: relative; padding: 0 56px; }
.mega-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 26px 0;
  scrollbar-width: none;
}
.mega-track::-webkit-scrollbar { display: none; }
.mega-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 92px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  flex-shrink: 0;
}
.mega-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.mega-item:hover .mega-icon { background: var(--red); color: var(--white); border-color: var(--red); transform: translateY(-3px); }
.mega-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.mega-item:hover .mega-icon img { opacity: 0.85; }
.mega-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--grey-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
  box-shadow: var(--shadow);
  z-index: 2;
}
.mega-arrow:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.mega-prev { left: 8px; }
.mega-next { right: 8px; }
.mega-viewall {
  display: flex; align-items: center; justify-content: center;
  background: var(--off-white);
  border-top: 1px solid var(--grey-light);
  padding: 12px;
  font-size: 0.85rem; font-weight: 700; color: var(--red);
}
@media (max-width: 980px) {
  .mega-panel { display: none; }
  .has-mega > .nav-link::after { display: none; }
}

/* ---------- Simple dropdown (Company menu — plain list, not the icon mega-menu) ---------- */
.has-dropdown { position: relative; }
.has-dropdown > .nav-link { display: flex; align-items: center; gap: 5px; }
.has-dropdown > .nav-link::after { content: '▾'; font-size: 0.7em; opacity: 0.6; }
.dropdown-panel {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 90;
}
.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-panel a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.dropdown-panel a:hover { background: var(--off-white); color: var(--red); }
@media (max-width: 980px) {
  .dropdown-panel {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-left: 2px solid var(--grey-light);
    margin: 4px 0 4px 14px; padding: 0;
  }
  .has-dropdown > .nav-link::after { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 55%, var(--red-dark) 130%);
  color: var(--white);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.hero h1 span { color: var(--gold-light); }
.hero p { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 520px; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(6px);
}
.hero-visual img { border-radius: 14px; width: 100%; }
.hero-deco {
  position: absolute; inset: 0; z-index: 1; opacity: 0.15;
  background-image: radial-gradient(circle at 20% 20%, var(--gold) 0, transparent 45%),
                     radial-gradient(circle at 80% 80%, var(--red) 0, transparent 45%);
}

.page-hero {
  background: linear-gradient(120deg, var(--navy), var(--navy-light));
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 14px auto 0; }
.breadcrumb { margin-top: 16px; font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ---------- Stats ---------- */
.stats {
  background: var(--off-white);
  border-top: 1px solid var(--grey-light);
  border-bottom: 1px solid var(--grey-light);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 0;
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--red);
}
.stat-label { color: var(--grey); font-size: 0.88rem; margin-top: 4px; }

/* ---------- Category cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.cat-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cat-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(200,16,46,0.1), rgba(201,162,39,0.15));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.cat-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.cat-card p { color: var(--grey); font-size: 0.92rem; margin-bottom: 16px; }
.cat-link { color: var(--red); font-weight: 700; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 6px; }
.cat-link:hover { gap: 10px; }

/* ---------- Product cards ---------- */
.product-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-img { aspect-ratio: 4/3; overflow: hidden; background: var(--off-white); }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 20px; }
.product-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,162,39,0.12);
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.product-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.product-body p { color: var(--grey); font-size: 0.88rem; margin-bottom: 14px; }
.product-foot { display: flex; justify-content: space-between; align-items: center; }

/* ---------- Testimonials ---------- */
.testi-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid var(--gold);
}
.testi-stars { color: var(--gold); margin-bottom: 12px; font-size: 0.95rem; }
.testi-quote { color: var(--text); font-size: 0.95rem; margin-bottom: 18px; font-style: italic; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--red-dark));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-head);
  flex-shrink: 0;
}
.testi-person .pname { font-weight: 700; font-size: 0.9rem; }
.testi-person .prole { color: var(--grey); font-size: 0.8rem; }

/* ---------- Why choose / features ---------- */
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.feature h4 { font-size: 1rem; margin-bottom: 4px; }
.feature p { color: var(--grey); font-size: 0.88rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--red), var(--red-dark));
  color: var(--white);
  border-radius: 20px;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.4rem, 2.6vw, 2rem); }
.cta-banner p { color: rgba(255,255,255,0.85); margin-top: 8px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Home hero (reversed: image left, copy right) ---------- */
.home-hero { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 60%, var(--red-dark) 140%); color: var(--white); padding: 64px 0 0; position: relative; overflow: hidden; }
.home-hero .container { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; padding-bottom: 90px; }
.home-hero .hero-ph { order: -1; }
.home-hero h1 { color: var(--white); font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 18px; }
.home-hero p { color: rgba(255,255,255,0.82); font-size: 1.02rem; margin-bottom: 26px; max-width: 480px; }
@media (max-width: 980px) { .home-hero .container { grid-template-columns: 1fr; } }

/* ---------- Shop-by-category strip (image tiles) ---------- */
.shop-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.shop-cat-card { text-align: center; }
.shop-cat-card .sc-media { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; }
.shop-cat-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.shop-cat-card p { color: var(--grey); font-size: 0.9rem; margin-bottom: 10px; }
@media (max-width: 760px) { .shop-cat-grid { grid-template-columns: 1fr; } }

/* ---------- Featured products (navy panel) ---------- */
.featured-navy { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.featured-navy .section-head h2 { color: var(--white); }
.featured-navy .section-head .eyebrow { color: var(--gold-light); }
.fp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fp-card { background: var(--white); border-radius: var(--radius); overflow: hidden; display: grid; grid-template-columns: 1fr 1.3fr; }
.fp-media { position: relative; background: var(--off-white); }
.fp-media .ph-media { position: absolute; inset: 0; }
.fp-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fp-tags { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; z-index: 2; }
.fp-tag { font-size: 0.66rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; padding: 4px 8px; border-radius: 5px; }
.fp-tag.best { background: var(--red); color: var(--white); }
.fp-tag.new { background: var(--gold); color: var(--navy); }
.fp-body { padding: 20px; color: var(--text); }
.fp-body .product-cat { margin-bottom: 6px; }
.fp-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.fp-body p { color: var(--grey); font-size: 0.85rem; margin-bottom: 14px; line-height: 1.6; }
@media (max-width: 860px) { .fp-grid { grid-template-columns: 1fr; } .fp-card { grid-template-columns: 1fr; } }

/* ---------- Alternating content blocks (image / text, image / text reversed) ---------- */
.alt-block { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 56px; }
.alt-block:last-child { margin-bottom: 0; }
.alt-block.reverse .alt-media { order: 2; }
.alt-block .alt-media { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; }
.alt-block h3 { font-size: 1.3rem; margin-bottom: 14px; }
.alt-block p { color: var(--grey); margin-bottom: 18px; line-height: 1.7; }
@media (max-width: 760px) { .alt-block, .alt-block.reverse { grid-template-columns: 1fr; } .alt-block.reverse .alt-media { order: 0; } }

/* ---------- Plain icon strip (navy, no cards) ---------- */
.icon-strip { background: var(--navy); color: rgba(255,255,255,0.85); }
.icon-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.icon-strip-item .is-icon { font-size: 1.8rem; color: var(--gold-light); margin-bottom: 12px; }
.icon-strip-item p { font-size: 0.88rem; line-height: 1.6; }
@media (max-width: 760px) { .icon-strip-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Client logos ---------- */
.clients-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 32px; }
.client-badge {
  width: 110px; height: 90px; border-radius: 10px; border: 1px solid var(--grey-light);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-size: 0.72rem; font-weight: 700; color: var(--grey); padding: 8px; line-height: 1.3;
  filter: grayscale(1); opacity: 0.75;
}

/* ---------- Testimonial carousel (reuses .mega-scroll/.mega-track pattern) ---------- */
.testi-track { gap: 24px; padding: 6px 0 20px; }
.testi-track .testi-card { min-width: 320px; max-width: 320px; flex-shrink: 0; }

/* ---------- Newsletter + social ---------- */
.newsletter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.newsletter-form { display: flex; gap: 12px; margin-top: 20px; max-width: 420px; }
.newsletter-form input { flex: 1; padding: 13px 16px; border: 1px solid var(--grey-light); border-radius: 8px; font-family: inherit; }
.social-card { background: var(--off-white); border: 1px solid var(--grey-light); border-radius: var(--radius); padding: 28px; text-align: center; }
.social-card .sc-icons { display: flex; justify-content: center; gap: 14px; margin-top: 16px; }
.social-card .sc-icons a { width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.social-card .sc-icons a:hover { background: var(--red); }
@media (max-width: 760px) { .newsletter-grid { grid-template-columns: 1fr; } }

/* ---------- In-page category carousel (with dot pagination) ---------- */
.pcc-dots { display: flex; justify-content: center; gap: 8px; margin-top: 4px; }
.pcc-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grey-light); border: none; padding: 0; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.pcc-dots .dot.active { background: var(--red); transform: scale(1.3); }

/* ---------- FAQ accordion ---------- */
.faq-list { border-top: 1px solid var(--grey-light); }
.faq-item { border-bottom: 1px solid var(--grey-light); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 4px; font-weight: 700; font-size: 0.98rem; color: var(--navy);
  text-align: left; background: none; border: none; cursor: pointer; font-family: inherit;
}
.faq-caret { color: var(--red); flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item.open .faq-caret { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-a p { padding: 0 4px 20px; color: var(--grey); font-size: 0.9rem; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; }

/* ---------- Get Quote modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(11,31,75,0.55);
  display: none; align-items: center; justify-content: center;
  padding: 20px; z-index: 500;
}
.modal-overlay.open { display: flex; }
.modal-panel {
  background: var(--white); border-radius: 16px; padding: 32px;
  width: 100%; max-width: 620px; max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.modal-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 6px; }
.modal-head h3 { font-size: 1.3rem; }
.modal-close { font-size: 1.4rem; line-height: 1; color: var(--grey); background: none; border: none; cursor: pointer; padding: 4px; }
.modal-close:hover { color: var(--red); }
.modal-panel p { color: var(--grey); font-size: 0.9rem; margin-bottom: 18px; }
.modal-product-pill {
  display: inline-block; background: var(--off-white); border: 1px solid var(--grey-light);
  border-radius: 8px; padding: 8px 14px; font-weight: 700; font-size: 0.88rem; color: var(--navy);
  margin-bottom: 20px;
}
.modal-actions { display: flex; align-items: center; gap: 18px; margin-top: 8px; }
.modal-cancel { color: var(--red); font-weight: 700; font-size: 0.9rem; background: none; border: none; cursor: pointer; }
.modal-cancel:hover { text-decoration: underline; }

/* ---------- Product detail page ---------- */
.pd-topbar { background: var(--navy); color: var(--white); }
.pd-topbar-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 0; flex-wrap: wrap;
}
.pd-topbar-row .pd-name { font-weight: 700; font-size: 0.95rem; }
.pd-topbar-actions { display: flex; gap: 10px; }

.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.pd-media { aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; }
.pd-media .ph-media { font-size: 5rem; width: 100%; height: 100%; }
.pd-media img { width: 100%; height: 100%; object-fit: cover; }
.pd-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
@media (max-width: 760px) { .pd-grid { grid-template-columns: 1fr; } }

.pd-specs { width: 100%; border-collapse: collapse; border: 1px solid var(--grey-light); border-radius: var(--radius); overflow: hidden; }
.pd-specs tr:nth-child(odd) { background: var(--off-white); }
.pd-specs td { padding: 14px 20px; font-size: 0.9rem; border-bottom: 1px solid var(--grey-light); }
.pd-specs td:first-child { font-weight: 700; color: var(--navy); width: 40%; }
.pd-specs tr:last-child td { border-bottom: none; }

.product-track .product-card,
.product-track .blog-card { min-width: 220px; max-width: 220px; flex-shrink: 0; }

/* ---------- Category hero banner (dental/medical/lab landing) ---------- */
.cat-hero {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 60%, var(--red-dark) 140%);
  color: var(--white);
  padding: 56px 0 100px;
}
.cat-hero .container { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: center; }
.cat-hero .eyebrow { color: var(--gold-light); }
.cat-hero h1 { color: var(--white); font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.cat-hero p { color: rgba(255,255,255,0.82); margin: 16px 0 26px; max-width: 480px; }
.breadcrumb-lt { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.breadcrumb-lt a:hover { color: var(--gold-light); }

.stat-card-row {
  max-width: 1200px;
  margin: -70px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 3;
}
.stat-card {
  background: var(--white);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 6px;
}
.stat-card .sc-icon { font-size: 1.5rem; }
.stat-card .sc-num { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--navy); }
.stat-card .sc-label { color: var(--grey); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.04em; }

@media (max-width: 980px) {
  .cat-hero .container { grid-template-columns: 1fr; }
  .cat-hero .hero-ph { order: -1; }
}
@media (max-width: 700px) {
  .stat-card-row { grid-template-columns: repeat(2, 1fr); margin-top: 24px; }
  .cat-hero { padding-bottom: 40px; }
}

/* ---------- Product catalog (sidebar filter + search + sort + grid) ---------- */
.catalog {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}
.catalog-sidebar {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 90px;
}
.catalog-sidebar h3 { font-size: 1rem; margin-bottom: 4px; }
.radio-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; font-size: 0.9rem; color: var(--text);
  cursor: pointer; border-bottom: 1px solid var(--off-white);
}
.radio-item input { accent-color: var(--red); width: 15px; height: 15px; flex-shrink: 0; }
.radio-item.active-cat { color: var(--red); font-weight: 700; }

.catalog-toolbar {
  display: flex; gap: 16px; align-items: center;
  margin-bottom: 22px; flex-wrap: wrap;
}
.catalog-search { flex: 1; min-width: 220px; position: relative; }
.catalog-search input {
  width: 100%; padding: 12px 44px 12px 16px;
  border: 1px solid var(--grey-light); border-radius: 8px;
  font-family: inherit; font-size: 0.92rem;
}
.catalog-search input:focus { outline: 2px solid var(--red); outline-offset: 1px; }
.catalog-search .search-ic { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--grey); pointer-events: none; }
.catalog-count { color: var(--grey); font-size: 0.88rem; white-space: nowrap; }
.catalog-sort select {
  padding: 10px 14px; border: 1px solid var(--grey-light); border-radius: 8px;
  font-family: inherit; font-size: 0.88rem; background: var(--white);
}
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.catalog-empty { display: none; text-align: center; color: var(--grey); padding: 60px 0; }
.product-body .product-cat { color: var(--grey); font-size: 0.78rem; margin-bottom: 4px; }

@media (max-width: 980px) {
  .catalog { grid-template-columns: 1fr; }
  .catalog-sidebar { position: static; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-toolbar { flex-direction: column; align-items: stretch; }
}

/* ---------- Our Network page ---------- */
.net-wrap {
  display: grid;
  grid-template-columns: 380px 1fr;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 560px;
}
.net-sidebar { background: var(--white); border-right: 1px solid var(--grey-light); display: flex; flex-direction: column; }
.net-sidebar .catalog-search { padding: 18px 18px 0; }
.net-toggle { display: flex; gap: 18px; padding: 14px 18px; border-bottom: 1px solid var(--grey-light); font-size: 0.85rem; }
.net-toggle label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-weight: 600; }
.net-toggle input { accent-color: var(--red); }
.net-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.net-dot.branch { background: var(--red); }
.net-dot.distributor { background: var(--navy); border: 2px solid var(--navy-light); background: transparent; border-color: var(--navy); }
.net-list.catalog-grid { display: block; }
.net-list { overflow-y: auto; flex: 1; }
.location-card { padding: 16px 18px; border-bottom: 1px solid var(--off-white); }
.location-card .lc-name { font-weight: 700; font-size: 0.95rem; color: var(--navy); margin-bottom: 4px; }
.location-card .lc-type { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 2px 8px; border-radius: 6px; margin-bottom: 6px; }
.location-card .lc-type.branch { background: rgba(200,16,46,0.1); color: var(--red); }
.location-card .lc-type.distributor { background: rgba(11,31,75,0.08); color: var(--navy); }
.location-card .lc-address { font-size: 0.85rem; color: var(--grey); line-height: 1.5; }
.net-map { background: var(--off-white); }
.net-map iframe { width: 100%; height: 100%; min-height: 560px; border: 0; display: block; }
@media (max-width: 860px) {
  .net-wrap { grid-template-columns: 1fr; }
  .net-map iframe { min-height: 320px; }
  .net-list { max-height: 420px; }
}

/* ---------- Blog carousel + tags + pagination ---------- */
.blog-track { gap: 20px; padding: 6px 0 22px; }
.blog-track .blog-card { min-width: 280px; max-width: 280px; flex-shrink: 0; }
.tag-pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-pill {
  display: inline-block; padding: 7px 14px; border-radius: 999px;
  background: var(--off-white); color: var(--navy); font-size: 0.82rem; font-weight: 600;
  border: 1px solid var(--grey-light);
}
.tag-pill:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.pagination { display: flex; gap: 10px; margin-top: 32px; }
.pagination a, .pagination span {
  min-width: 40px; height: 40px; padding: 0 12px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px; font-weight: 700; font-size: 0.88rem;
  border: 1px solid var(--grey-light); color: var(--navy);
}
.pagination .current { background: var(--red); color: var(--white); border-color: var(--red); }
.pagination a:hover { border-color: var(--red); color: var(--red); }

/* ---------- Blog ---------- */
.blog-card { background: var(--white); border: 1px solid var(--grey-light); border-radius: var(--radius); overflow: hidden; transition: box-shadow .25s, transform .25s; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-img { aspect-ratio: 16/10; background: var(--off-white); overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 20px; }
.blog-meta { font-size: 0.78rem; color: var(--grey); margin-bottom: 8px; }
.blog-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.blog-body p { color: var(--grey); font-size: 0.88rem; }
.blog-read { color: var(--red); font-weight: 700; font-size: 0.85rem; margin-top: 14px; display: inline-block; }

/* ---------- Form ---------- */
.form-card { background: var(--off-white); border-radius: 16px; padding: 36px; border: 1px solid var(--grey-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--grey-light);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.92rem;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: 2px solid var(--red); outline-offset: 1px; }

.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 36px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 20px; }
.contact-row { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-row .ci-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold-light);
}
.contact-row .ci-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-row .ci-value { font-weight: 600; margin-top: 2px; }
.map-frame { border-radius: 16px; overflow: hidden; border: 1px solid var(--grey-light); margin-top: 28px; }
.map-frame iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); }
.footer-top { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr 1fr; gap: 32px; }
.footer-brand .brand-text .name { color: var(--white); }
.footer-brand p { margin-top: 14px; font-size: 0.9rem; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; font-size: 0.88rem; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  z-index: 200;
  animation: wa-pulse 2.4s infinite;
}
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Placeholder media (until client supplies real photos) ---------- */
.ph-media {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
  color: rgba(255,255,255,0.92);
  background: linear-gradient(135deg, var(--navy), var(--red-dark));
}
.ph-media.v2 { background: linear-gradient(135deg, var(--red), var(--navy-light)); }
.ph-media.v3 { background: linear-gradient(135deg, var(--gold), var(--red-dark)); }
.ph-media.v4 { background: linear-gradient(135deg, var(--navy-light), var(--gold)); }
.hero-ph {
  aspect-ratio: 4/3.4;
  border-radius: 14px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  border: 1px dashed rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
  font-size: 4rem;
  text-align: center;
}
.hero-ph small { font-size: 0.78rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.6); }
.hero-ph.has-photo { border-style: solid; padding: 0; overflow: hidden; }
.hero-ph img { width: 100%; height: 100%; object-fit: cover; border-radius: 13px; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.bg-off { background: var(--off-white); }
.placeholder-note {
  background: #FFF7E6;
  border: 1px dashed var(--gold);
  color: #8a6d00;
  font-size: 0.8rem;
  padding: 8px 14px;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  nav.main-nav { position: fixed; top: 0; right: 0; height: 100vh; width: 78%; max-width: 320px;
    background: var(--white); box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform 0.3s ease; padding: 90px 24px 24px; z-index: 99; }
  nav.main-nav.open { transform: translateX(0); }
  nav.main-nav ul { flex-direction: column; align-items: flex-start; gap: 2px; width: 100%; }
  nav.main-nav a.nav-link { display: block; width: 100%; }
  .hamburger { display: flex; }
  .nav-actions .btn span { display: none; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .topbar-left { display: none; }
}
