/* ============================================================
   Aquadent Supplies — Main Stylesheet
   Fonts + Design tokens matched 1:1 from the Lovable design
   ============================================================ */
/* Preload both weights — display=swap ensures text is visible during load */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

/* ── Design tokens (same oklch values as Lovable) ── */
:root {
  /* Fonts — Plus Jakarta Sans is the Lovable display font */
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Brand colours — exact Lovable oklch */
  --navy:         #0B2C6B;   /* oklch(0.28 0.13 263) */
  --navy-dark:    #071d47;
  --blue:         #1E90FF;   /* oklch(0.66 0.20 250) */
  --blue-light:   #e8f4ff;
  --white:        #ffffff;

  /* Grays — full Tailwind-style scale */
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;

  /* Semantic */
  --green: #16a34a;
  --red:   #dc2626;
  --mint:  #4db8a0;    /* Lovable clinical mint — oklch(0.78 0.10 195) */
  --blue-bright: #1E90FF;   /* alias for --blue */

  /* Gradients — from Lovable --gradient-brand */
  --gradient-brand: linear-gradient(135deg, #0b2c6b 0%, #1e90ff 100%);

  /* Surface — light gray page background (Lovable --surface) */
  --surface: #f8fafc;

  /* Shadows — matching Lovable --shadow-card / --shadow-elevated */
  --shadow-sm:       0 1px 3px rgba(11,44,107,.06), 0 1px 2px rgba(11,44,107,.04);
  --shadow:          0 2px 4px -2px rgba(11,44,107,.06), 0 8px 24px -8px rgba(11,44,107,.12);
  --shadow-card:     0 2px 4px -2px rgba(11,44,107,.06), 0 8px 24px -8px rgba(11,44,107,.12);
  --shadow-lg:       0 10px 30px -12px rgba(11,44,107,.25);
  --shadow-elevated: 0 10px 30px -12px rgba(11,44,107,.25);

  /* Radius — flat 4px everywhere */
  --radius:    4px;
  --radius-sm: 4px;
  --radius-lg: 4px;

  /* Transitions */
  --transition: .2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Slim scrollbars — Lovable style */
*::-webkit-scrollbar       { width: 8px; height: 8px; }
*::-webkit-scrollbar-thumb { background: rgba(11,44,107,.25); border-radius: 4px; }
*::-webkit-scrollbar-track { background: transparent; }

/* ── Typography — Plus Jakarta Sans for all headings ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -0.02em;  /* exact Lovable value */
  color: inherit;
}
h1 { font-size: clamp(2rem, 4vw, 3rem);    font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.25rem;  font-weight: 700; }
h4 { font-size: 1.05rem;  font-weight: 600; }
h5 { font-size: 0.95rem;  font-weight: 600; }
h6 { font-size: 0.85rem;  font-weight: 600; }

/* Body text elements inherit Inter via body */
p, li, td, th, label, input, select, textarea, button, a {
  font-family: var(--font-sans);
}

.section-title { text-align: center; margin-bottom: 12px; color: var(--navy); }
.section-sub   { text-align: center; color: var(--gray-600); margin-bottom: 48px; font-size: .95rem; font-family: var(--font-sans); }

/* ── Tooth SVG patterns — from Lovable .bg-tooth-pattern ── */
.bg-tooth-pattern {
  background-color: var(--gray-50);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%231E90FF' stroke-opacity='0.10' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'><path d='M22 18c-4 0-7 3-7 7 0 5 2 8 3 13 1 4 1 8 4 8 2 0 2-4 3-7 .5-1.5 1.5-1.5 2 0 1 3 1 7 3 7 3 0 3-4 4-8 1-5 3-8 3-13 0-4-3-7-7-7-2 0-3 1-4 2-1-1-2-2-4-2z'/><path d='M62 50c-3 0-5 2-5 5 0 3 1 5 2 8 1 3 1 5 3 5 1 0 1-2 2-4 .3-1 1-1 1.3 0 .6 2 .6 4 2 4 2 0 2-2 3-5 .8-3 2-5 2-8 0-3-2-5-5-5-1 0-2 .6-2.6 1.3-.6-.7-1.4-1.3-2.7-1.3z'/></g></svg>");
  background-size: 220px 220px;
}
.bg-tooth-pattern-light {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23ffffff' stroke-opacity='0.07' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 18c-4 0-7 3-7 7 0 5 2 8 3 13 1 4 1 8 4 8 2 0 2-4 3-7 .5-1.5 1.5-1.5 2 0 1 3 1 7 3 7 3 0 3-4 4-8 1-5 3-8 3-13 0-4-3-7-7-7-2 0-3 1-4 2-1-1-2-2-4-2z'/></g></svg>");
  background-size: 220px 220px;
}

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 64px 0; }
.section-sm { padding: 40px 0; }

/* ── Buttons ── */
.btn         { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border-radius: var(--radius-sm); font-family: var(--font-sans); font-weight: 600; font-size: .9rem; cursor: pointer; border: none; transition: var(--transition); text-decoration: none; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-blue    { background: var(--blue); color: #fff; }
.btn-blue:hover { background: #1070cc; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-sm      { padding: 7px 14px; font-size: .82rem; }
.btn-lg      { padding: 14px 28px; font-size: 1rem; }
.btn-white   { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--gray-100); }

/* ── Topbar ── */
.topbar { background: var(--navy); color: rgba(255,255,255,.85); font-size: .8rem; padding: 8px 0; font-family: var(--font-sans); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.85); display: flex; align-items: center; gap: 5px; }
.topbar a:hover { color: #fff; }

/* ── Navbar ── */
.navbar { background: rgba(255,255,255,0.90); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--gray-200); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.navbar-logo img { height: 52px; width: auto; object-fit: contain; }
.navbar-nav { display: flex; align-items: center; gap: 4px; }
.navbar-nav a { padding: 8px 14px; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 500; font-family: var(--font-sans); color: var(--gray-600); transition: var(--transition); }
.navbar-nav a:hover, .navbar-nav a.active { color: var(--navy); background: var(--blue-light); }
.navbar-right { display: flex; align-items: center; gap: 10px; }
.cart-btn { position: relative; background: var(--navy); color: #fff; padding: 9px 16px; border-radius: var(--radius-sm); font-size: .85rem; font-weight: 600; font-family: var(--font-sans); display: flex; align-items: center; gap: 6px; }
.cart-btn:hover { background: var(--navy-dark); }
.cart-count { background: var(--blue); color: #fff; border-radius: 4px; padding: 1px 7px; font-size: .72rem; font-weight: 700; }
.hamburger { display: none; background: none; border: 1px solid var(--gray-200); border-radius: var(--radius-sm); padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 4px 0; transition: var(--transition); }

/* ── Mobile Nav ── */
.mobile-nav { display: none; background: #fff; border-top: 1px solid var(--gray-200); padding: 12px 0; }
.mobile-nav a { display: block; padding: 11px 20px; font-weight: 500; font-family: var(--font-sans); color: var(--gray-800); border-bottom: 1px solid var(--gray-100); }
.mobile-nav.open { display: block; }

/* ── Navbar phone link ── */
.navbar-phone { display: none; align-items: center; gap: 6px; color: var(--navy); font-size: .82rem; font-weight: 600; font-family: var(--font-sans); }
.navbar-phone:hover { color: var(--blue); }
@media (min-width: 900px) { .navbar-phone { display: flex; } }

/* ── Navbar More dropdown ── */
.navbar-more { position: relative; list-style: none; }
.navbar-more-toggle { cursor: pointer; }
.navbar-dropdown { display: none; position: absolute; top: calc(100% + 8px); left: 0; min-width: 160px; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); box-shadow: var(--shadow-elevated); padding: 6px; z-index: 200; }
.navbar-dropdown a { display: block; padding: 9px 14px; border-radius: var(--radius-sm); font-size: .88rem; color: var(--gray-600); }
.navbar-dropdown a:hover { background: var(--gray-50); color: var(--navy); }
.navbar-more:hover .navbar-dropdown, .navbar-more:focus-within .navbar-dropdown { display: block; }

/* ── Hero with background image overlay (Brands, Categories, Delivery, Contact, About) ── */
.hero-img-bg { position: relative; overflow: hidden; color: #fff; padding: 80px 0 64px; }
.hero-img-bg .hero-img-src { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-img-bg .hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,44,107,.97) 0%, rgba(11,44,107,.85) 55%, rgba(11,44,107,.50) 100%); }
.hero-img-bg .hero-overlay-alt { position: absolute; inset: 0; background: linear-gradient(to right, rgba(11,44,107,.97) 40%, rgba(11,44,107,.60) 100%); }
.hero-img-bg .tooth-layer { position: absolute; inset: 0; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23ffffff' stroke-opacity='0.07' stroke-width='1.2'><path d='M22 18c-4 0-7 3-7 7 0 5 2 8 3 13 1 4 1 8 4 8 2 0 2-4 3-7 .5-1.5 1.5-1.5 2 0 1 3 1 7 3 7 3 0 3-4 4-8 1-5 3-8 3-13 0-4-3-7-7-7-2 0-3 1-4 2-1-1-2-2-4-2z'/></g></svg>"); background-size: 220px; pointer-events: none; }
.hero-img-bg .container { position: relative; z-index: 2; }

/* ── Stats strip (navy with border bottom) ── */
.stats-strip { background: rgba(255,255,255,.06); border-bottom: 1px solid var(--gray-200); }
.stats-strip-inner { display: flex; gap: 0; }
.stats-strip-item { flex: 1; padding: 20px 24px; border-right: 1px solid var(--gray-200); text-align: center; }
.stats-strip-item:last-child { border-right: none; }
.stats-strip-item strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--navy); font-family: var(--font-display); letter-spacing: -0.02em; }
.stats-strip-item span { font-size: .78rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: .05em; font-family: var(--font-sans); }

/* ── Category numbered image cards (like Lovable categories page) ── */
.cat-img-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-img-card { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--gray-200); aspect-ratio: 4/3; cursor: pointer; transition: var(--transition); }
.cat-img-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }
.cat-img-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cat-img-card:hover img { transform: scale(1.05); }
.cat-img-card .cat-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,44,107,.90) 0%, rgba(11,44,107,.40) 55%, rgba(11,44,107,.10) 100%); }
.cat-img-card .cat-img-num { position: absolute; top: 14px; left: 14px; font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.7); letter-spacing: .08em; font-family: var(--font-sans); }
.cat-img-card .cat-img-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 18px; }
.cat-img-card .cat-img-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 4px; letter-spacing: -0.01em; }
.cat-img-card .cat-img-desc { font-size: .78rem; color: rgba(255,255,255,.75); margin-bottom: 12px; font-family: var(--font-sans); line-height: 1.4; }
.cat-img-card .cat-img-footer { display: flex; align-items: center; justify-content: space-between; }
.cat-img-card .cat-img-count { font-size: .72rem; color: rgba(255,255,255,.65); font-family: var(--font-sans); }
.cat-img-card .cat-img-link { font-size: .8rem; font-weight: 700; color: #6eb5ff; display: flex; align-items: center; gap: 4px; font-family: var(--font-sans); }
@media (max-width: 768px) { .cat-img-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .cat-img-grid { grid-template-columns: 1fr; } }

/* ── Brand cards (Lovable brands page style) ── */
.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.brand-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); transition: var(--transition); }
.brand-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-elevated); border-color: var(--blue); }
.brand-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.brand-logo-box { width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--blue-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.brand-logo-box img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.brand-logo-box .brand-initial { font-size: 1.2rem; font-weight: 800; color: var(--navy); font-family: var(--font-display); }
.brand-card-name { font-size: 1rem; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.brand-card-origin { font-size: .75rem; color: var(--gray-400); font-family: var(--font-sans); }
.brand-card-count { display: inline-flex; align-items: center; gap: 4px; background: var(--blue-light); color: var(--blue); border-radius: 4px; padding: 2px 10px; font-size: .72rem; font-weight: 700; font-family: var(--font-sans); margin-bottom: 10px; }
.brand-card-desc { font-size: .85rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 14px; font-family: var(--font-sans); }
.brand-card-link { font-size: .82rem; font-weight: 700; color: var(--blue); display: flex; align-items: center; gap: 4px; font-family: var(--font-sans); }
.brand-card-link:hover { color: var(--navy); }
@media (max-width: 768px) { .brand-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .brand-grid { grid-template-columns: 1fr; } }

/* ── Delivery city cards ── */
.city-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.city-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.city-card:hover { box-shadow: var(--shadow); border-color: var(--blue); }
.city-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.city-card-name { font-size: 1rem; font-weight: 700; color: var(--navy); font-family: var(--font-display); letter-spacing: -0.01em; }
.city-card-badge { background: var(--blue-light); color: var(--blue); font-size: .7rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; font-family: var(--font-sans); }
.city-card-sub { font-size: .78rem; color: var(--gray-400); margin-bottom: 8px; font-family: var(--font-sans); }
.city-card-areas { font-size: .82rem; color: var(--gray-600); line-height: 1.6; font-family: var(--font-sans); margin-bottom: 12px; }
.city-card-link { font-size: .8rem; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 4px; font-family: var(--font-sans); }
@media (max-width: 768px) { .city-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .city-grid { grid-template-columns: 1fr; } }

/* ── Contact method cards ── */
.contact-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
.contact-method { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 18px 20px; display: flex; align-items: center; gap: 16px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.contact-method:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.contact-method-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-method-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-400); font-family: var(--font-sans); margin-bottom: 3px; }
.contact-method-value { font-size: .95rem; font-weight: 600; color: var(--navy); font-family: var(--font-sans); }
.contact-method a { color: inherit; }

/* ── Business hours table ── */
.hours-table { width: 100%; border-collapse: collapse; font-family: var(--font-sans); font-size: .88rem; }
.hours-table td { padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--navy); }
.hours-table tr:last-child td { border-bottom: none; }

/* ── About page value cards ── */
.value-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.value-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--blue-light); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.value-icon svg { width: 22px; height: 22px; color: var(--blue); stroke: var(--blue); fill: none; }

/* ── Timeline (About story) ── */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: grid; grid-template-columns: 140px 1fr; gap: 24px; padding-bottom: 32px; position: relative; }
.timeline-item::before { content: ''; position: absolute; left: 139px; top: 24px; bottom: 0; width: 2px; background: var(--gray-200); }
.timeline-item:last-child::before { display: none; }
.timeline-year { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--blue); letter-spacing: -0.02em; text-align: right; padding-top: 2px; }
.timeline-dot { position: absolute; left: 131px; top: 6px; width: 18px; height: 18px; border-radius: 50%; background: var(--blue); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--blue); }
.timeline-body h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.timeline-body p  { font-size: .88rem; color: var(--gray-600); line-height: 1.6; font-family: var(--font-sans); }

/* ── Hero — tooth pattern on gradient ── */
/* Hero — full bleed background image */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #163a7a 60%, #1a4e9e 100%);
  color: #fff;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}
/* Full-bleed background photo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: .22;
  z-index: 0;
}
/* Tooth pattern overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23ffffff' stroke-opacity='0.06' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 18c-4 0-7 3-7 7 0 5 2 8 3 13 1 4 1 8 4 8 2 0 2-4 3-7 .5-1.5 1.5-1.5 2 0 1 3 1 7 3 7 3 0 3-4 4-8 1-5 3-8 3-13 0-4-3-7-7-7-2 0-3 1-4 2-1-1-2-2-4-2z'/></g></svg>");
  background-size: 220px 220px;
  pointer-events: none;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-family: var(--font-sans);
  color: rgba(255,255,255,.9);
}
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.12; margin-bottom: 22px; }
.hero h1 span { color: #6eb5ff; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.78); line-height: 1.75; margin-bottom: 36px; max-width: 540px; font-family: var(--font-sans); }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }

/* Hero right column — full image panel */
.hero-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 24px 64px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.1);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Subtle inner gradient on image */
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(11,31,75,.4) 100%);
  pointer-events: none;
}

.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong { display: block; font-size: 1.8rem; font-weight: 800; color: #fff; font-family: var(--font-display); letter-spacing: -0.03em; line-height: 1; }
.hero-stat span { font-size: .72rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .06em; font-family: var(--font-sans); margin-top: 3px; }

/* ── Section pill badges — matches Lovable Sparkles style ── */
.featured-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(30, 144, 255, 0.10);
  color: #1e90ff;
  border: 1px solid rgba(30, 144, 255, 0.25);
  border-radius: 4px;
  padding: 5px 14px 5px 9px;
  font-size: .78rem;
  font-weight: 700;
  font-family: var(--font-sans);
  letter-spacing: .03em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
/* Dark-background variant (on navy/dark sections) */
.featured-pill.pill-dark {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.15);
}
/* Sparkles SVG inside any pill */
.featured-pill svg,
.pill-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: currentColor;
}


/* ── Trust bar ── */
.trust-bar { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 14px 0; }
.trust-bar .container { display: flex; justify-content: center; flex-wrap: wrap; gap: 32px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 500; color: var(--gray-600); font-family: var(--font-sans); }
.trust-item .icon { width: 18px; height: 18px; fill: var(--blue); flex-shrink: 0; }

/* ── Category Cards ── */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.cat-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--gray-200); transition: var(--transition); cursor: pointer; background: #fff; }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.cat-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.cat-card-body { padding: 14px 16px; }
.cat-card-body h3 { font-size: .95rem; color: var(--navy); margin-bottom: 4px; letter-spacing: -0.01em; }
.cat-card-body p  { font-size: .78rem; color: var(--gray-400); font-family: var(--font-sans); }

/* ── Product Grid ── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.product-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--gray-200); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.product-img { aspect-ratio: 1/1; overflow: hidden; background: var(--gray-50); position: relative; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom-right, rgba(11,44,107,.35), rgba(11,44,107,.10), rgba(0,0,0,.28)); pointer-events: none; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-badge { position: absolute; top: 10px; left: 10px; background: var(--navy); color: #fff; font-size: .7rem; font-weight: 700; padding: 3px 9px; border-radius: 4px; letter-spacing: .03em; font-family: var(--font-sans); }
.product-badge.blue { background: var(--blue); }
.product-body  { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-brand { font-size: .72rem; color: var(--blue); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; font-family: var(--font-sans); }
.product-name  { font-size: .97rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; letter-spacing: -0.01em; }
.product-short { font-size: .82rem; color: var(--gray-600); line-height: 1.5; flex: 1; font-family: var(--font-sans); }
.product-footer { padding: 14px 16px; border-top: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.product-price  { font-size: 1rem; font-weight: 700; color: var(--navy); font-family: var(--font-display); letter-spacing: -0.02em; }
.add-to-quote  { background: var(--navy); color: #fff; border: none; padding: 8px 14px; border-radius: var(--radius-sm); font-size: .8rem; font-weight: 600; cursor: pointer; transition: var(--transition); font-family: var(--font-sans); }
.add-to-quote:hover { background: var(--blue); }

/* ── Testimonials — tooth pattern background ── */
.testimonials { background-color: var(--gray-50); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%231E90FF' stroke-opacity='0.10' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'><path d='M22 18c-4 0-7 3-7 7 0 5 2 8 3 13 1 4 1 8 4 8 2 0 2-4 3-7 .5-1.5 1.5-1.5 2 0 1 3 1 7 3 7 3 0 3-4 4-8 1-5 3-8 3-13 0-4-3-7-7-7-2 0-3 1-4 2-1-1-2-2-4-2z'/><path d='M62 50c-3 0-5 2-5 5 0 3 1 5 2 8 1 3 1 5 3 5 1 0 1-2 2-4 .3-1 1-1 1.3 0 .6 2 .6 4 2 4 2 0 2-2 3-5 .8-3 2-5 2-8 0-3-2-5-5-5-1 0-2 .6-2.6 1.3-.6-.7-1.4-1.3-2.7-1.3z'/></g></svg>"); background-size: 220px 220px; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testi-card { background: #fff; border-radius: var(--radius); padding: 28px; border: 1px solid var(--gray-200); box-shadow: var(--shadow); }
.testi-stars  { color: #f59e0b; font-size: 1rem; margin-bottom: 14px; }
.testi-quote  { font-size: .92rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; font-style: italic; font-family: var(--font-sans); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; font-family: var(--font-display); }
.testi-name   { font-weight: 700; font-size: .9rem; color: var(--navy); letter-spacing: -0.01em; }
.testi-role   { font-size: .78rem; color: var(--gray-400); font-family: var(--font-sans); }

/* ── CTA Banner — tooth pattern ── */
.cta-banner { background: linear-gradient(135deg, var(--navy), #1a4e9e); color: #fff; text-align: center; padding: 72px 20px; position: relative; overflow: hidden; }
.cta-banner::after { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23ffffff' stroke-opacity='0.07' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 18c-4 0-7 3-7 7 0 5 2 8 3 13 1 4 1 8 4 8 2 0 2-4 3-7 .5-1.5 1.5-1.5 2 0 1 3 1 7 3 7 3 0 3-4 4-8 1-5 3-8 3-13 0-4-3-7-7-7-2 0-3 1-4 2-1-1-2-2-4-2z'/></g></svg>"); background-size: 220px 220px; pointer-events: none; }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,.8); margin-bottom: 32px; font-size: 1.05rem; font-family: var(--font-sans); }
.cta-banner .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer { background: linear-gradient(180deg, var(--navy-dark) 0%, #04152e 100%); color: rgba(255,255,255,.8); padding: 60px 0 0; }
.footer .container { padding-left: 48px; padding-right: 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer h4 { font-family: var(--font-sans); color: #fff; font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.footer p  { font-size: .88rem; line-height: 1.7; margin-bottom: 16px; font-family: var(--font-sans); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.7); transition: var(--transition); font-family: var(--font-sans); }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; font-family: var(--font-sans); }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; fill: var(--blue); }
.social-links a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-links a:hover { background: var(--blue); color: #fff; }
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; margin-top: 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: .8rem; color: rgba(255,255,255,.5); font-family: var(--font-sans); }

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .85rem; font-weight: 600; color: var(--gray-800); margin-bottom: 6px; font-family: var(--font-sans); }
.form-control { width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-size: .9rem; font-family: var(--font-sans); transition: var(--transition); background: #fff; }
.form-control:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,144,255,.12); }
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Alert / Flash ── */
.alert         { padding: 14px 18px; border-radius: var(--radius-sm); font-size: .9rem; margin-bottom: 20px; border: 1px solid transparent; font-family: var(--font-sans); }
.alert-success { background: #dcfce7; color: #166534; border-color: #bbf7d0; }
.alert-error   { background: #fee2e2; color: #991b1b; border-color: #fecaca; }
.alert-info    { background: #dbeafe; color: #1e40af; border-color: #bfdbfe; }

/* ── Breadcrumb ── */
.breadcrumb { padding: 14px 0; font-size: .82rem; color: var(--gray-400); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-family: var(--font-sans); }
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── Page Header — tooth pattern ── */
.page-header { background: linear-gradient(135deg, var(--navy), #163a7a); color: #fff; padding: 48px 0; position: relative; overflow: hidden; }
.page-header::after { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23ffffff' stroke-opacity='0.07' stroke-width='1.2'><path d='M22 18c-4 0-7 3-7 7 0 5 2 8 3 13 1 4 1 8 4 8 2 0 2-4 3-7 .5-1.5 1.5-1.5 2 0 1 3 1 7 3 7 3 0 3-4 4-8 1-5 3-8 3-13 0-4-3-7-7-7-2 0-3 1-4 2-1-1-2-2-4-2z'/></g></svg>"); background-size: 220px 220px; pointer-events: none; }
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { margin-bottom: 8px; }
.page-header p  { color: rgba(255,255,255,.75); font-size: .95rem; font-family: var(--font-sans); }

/* ── Filter bar ── */
.filter-bar { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px; margin-bottom: 32px; display: flex; gap: 14px; flex-wrap: wrap; align-items: flex-end; box-shadow: var(--shadow-sm); }
.filter-bar .form-group { margin: 0; flex: 1; min-width: 180px; }
.search-box { position: relative; flex: 2; }
.search-box input { padding-left: 40px; }
.search-box .search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; fill: var(--gray-400); }

/* ── Quote Cart ── */
.cart-table    { width: 100%; border-collapse: collapse; }
.cart-table th { background: var(--gray-50); padding: 12px 16px; text-align: left; font-size: .82rem; color: var(--gray-600); font-weight: 600; border-bottom: 1px solid var(--gray-200); font-family: var(--font-sans); }
.cart-table td { padding: 14px 16px; border-bottom: 1px solid var(--gray-100); font-size: .9rem; font-family: var(--font-sans); }
.cart-table tr:last-child td { border-bottom: none; }
.qty-input  { width: 64px; padding: 6px 10px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); text-align: center; font-size: .9rem; font-family: var(--font-sans); }
.remove-btn { background: none; border: none; color: var(--red); cursor: pointer; font-size: .82rem; font-weight: 600; font-family: var(--font-sans); }
.remove-btn:hover { text-decoration: underline; }

/* ── Product Detail ── */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-detail-img { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); aspect-ratio: 1; background: var(--gray-50); }
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-info h1 { font-size: 1.6rem; color: var(--navy); margin-bottom: 12px; }
.product-detail-price   { font-size: 1.8rem; font-weight: 800; color: var(--navy); margin: 16px 0; font-family: var(--font-display); letter-spacing: -0.02em; }
.features-list { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.features-list li { display: flex; align-items: center; gap: 10px; font-size: .9rem; font-family: var(--font-sans); }
.features-list li::before { content: '✓'; width: 20px; height: 20px; background: var(--blue-light); color: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .75rem; flex-shrink: 0; }

/* ── Admin ── */
.admin-layout  { display: flex; min-height: 100vh; }
.admin-sidebar { width: 240px; background: var(--navy); color: #fff; flex-shrink: 0; display: flex; flex-direction: column; height: 100vh; overflow: hidden; position: sticky; top: 0; }
.admin-sidebar-header { padding: 20px 16px; border-bottom: 1px solid rgba(255,255,255,.1); }
.admin-sidebar-header img { height: 40px; }
.admin-sidebar-header p { font-size: .75rem; color: rgba(255,255,255,.5); margin-top: 4px; font-family: var(--font-sans); }
.admin-nav { padding: 16px 0; flex: 1; }
.admin-nav a { display: flex; align-items: center; gap: 10px; padding: 11px 20px; font-size: .88rem; font-family: var(--font-sans); color: rgba(255,255,255,.75); transition: var(--transition); }
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,.1); color: #fff; }
.admin-main    { flex: 1; background: var(--gray-50); overflow-x: auto; }
.admin-topbar { background: #fff; border-bottom: 1px solid var(--gray-200); padding: 16px 24px; display: flex; justify-content: space-between; align-items: center; position: relative; }
.admin-topbar::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background: linear-gradient(to right, var(--navy), rgba(30,144,255,.60), transparent); }
.admin-topbar h2 { font-size: 1.1rem; color: var(--navy); }
.admin-content { padding: 28px 24px; }
.admin-card    { background: #fff; border-radius: var(--radius); border: 1px solid var(--gray-200); overflow: hidden; box-shadow: var(--shadow-sm); }
.admin-card-header { padding: 18px 20px; border-bottom: 1px solid var(--gray-200); display: flex; justify-content: space-between; align-items: center; }
.admin-card-header h3 { font-size: 1rem; color: var(--navy); }
.admin-table th { background: var(--gray-50); padding: 12px 16px; text-align: left; font-size: .78rem; font-family: var(--font-sans); color: var(--gray-600); font-weight: 600; border-bottom: 1px solid var(--gray-200); text-transform: uppercase; letter-spacing: .04em; }
.admin-table td { padding: 14px 16px; border-bottom: 1px solid var(--gray-100); font-size: .88rem; font-family: var(--font-sans); vertical-align: middle; }
.admin-table    { width: 100%; border-collapse: collapse; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--gray-50); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 28px; }
.stat-card  { background: #fff; border-radius: var(--radius); padding: 24px; border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); }
.stat-card .label { font-size: .78rem; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-family: var(--font-sans); }
.stat-card .value { font-size: 2rem; font-weight: 800; color: var(--navy); margin: 8px 0 0; font-family: var(--font-display); letter-spacing: -0.02em; }
.badge         { display: inline-block; padding: 3px 10px; border-radius: 4px; font-size: .72rem; font-weight: 700; font-family: var(--font-sans); }
.badge-new     { background: #dbeafe; color: #1e40af; }
.badge-sent    { background: #d1fae5; color: #065f46; }
.badge-pending { background: #fef9c3; color: #854d0e; }
.badge-closed  { background: var(--gray-100); color: var(--gray-600); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr 340px; gap: 40px; }
  .hero-image { height: 360px; }
}
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero { min-height: auto; padding: 80px 0 64px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .navbar-nav { display: none; }
  .hamburger  { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .cat-grid   { grid-template-columns: repeat(2,1fr); }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .hero-stat strong { font-size: 1.5rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .cat-grid { grid-template-columns: 1fr; }
}

/* ── Utilities ── */
.text-center { text-align: center; }
.text-navy   { color: var(--navy); }
.text-blue   { color: var(--blue); }
.text-muted  { color: var(--gray-400); }
.fw-bold     { font-weight: 700; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.d-flex { display: flex; }
.gap-2  { gap: 8px; }
.gap-4  { gap: 16px; }
.align-center     { align-items: center; }
.justify-between  { justify-content: space-between; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* ── Animations ── */
@keyframes fadeInUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.fade-in { animation: fadeInUp .5s ease forwards; }

/* ── WhatsApp float — Lovable ping animation ── */
.wa-float { position: fixed; bottom: 80px; right: 24px; z-index: 999; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .2s; }
.wa-float:hover { transform: scale(1.05); }
.wa-float a { position: relative; display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: #25d366; box-shadow: 0 10px 30px -6px rgba(37,211,102,.55); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; position: relative; z-index: 1; }
.wa-ping { position: absolute; inset: 0; border-radius: 50%; background: #25d366; opacity: .30; animation: wa-ping 1.5s cubic-bezier(0,0,.2,1) infinite; }
@keyframes wa-ping { 75%, 100% { transform: scale(2); opacity: 0; } }

/* ── Mobile sticky CTA bar (Lovable pattern) ── */
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 40; border-top: 1px solid var(--gray-200); background: rgba(255,255,255,.95); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); padding: 10px 12px; box-shadow: 0 -6px 20px -10px rgba(0,0,0,.18); }
.mobile-cta-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.mobile-cta a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; border-radius: 4px; padding: 8px 4px; font-size: 11px; font-weight: 600; font-family: var(--font-sans); text-decoration: none; }
.mobile-cta .cta-call { background: var(--navy); color: #fff; }
.mobile-cta .cta-wa { background: #25d366; color: #fff; }
.mobile-cta .cta-quote { background: #fff; color: var(--navy); border: 1.5px solid rgba(11,44,107,.25); position: relative; }
.mobile-cta .cta-quote .cta-badge { position: absolute; top: -6px; right: -6px; background: var(--navy); color: #fff; border-radius: 4px; width: 20px; height: 20px; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.mobile-cta svg { width: 16px; height: 16px; }
@media (max-width: 768px) { .mobile-cta { display: block; } .wa-float { bottom: 90px; } }

/* ── Accordion (FAQ) ── */
.accordion-item   { border: 1px solid var(--gray-200); border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; box-shadow: var(--shadow-sm); }
.accordion-header { width: 100%; background: #fff; border: none; padding: 18px 20px; text-align: left; font-size: .95rem; font-weight: 600; font-family: var(--font-display); letter-spacing: -0.01em; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); }
.accordion-header:hover { background: var(--gray-50); }
.accordion-header .icon { font-size: 1.2rem; transition: transform .2s; }
.accordion-header.open .icon { transform: rotate(45deg); }
.accordion-body      { display: none; padding: 0 20px 18px; font-size: .9rem; color: var(--gray-600); line-height: 1.7; font-family: var(--font-sans); }
.accordion-body.open { display: block; }

/* ── Pagination ── */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 40px; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: var(--radius-sm); font-size: .88rem; font-weight: 500; font-family: var(--font-sans); border: 1px solid var(--gray-200); color: var(--gray-600); transition: var(--transition); }
.pagination a:hover { border-color: var(--blue); color: var(--blue); }
.pagination .active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── Empty state ── */
.empty-state      { text-align: center; padding: 80px 20px; color: var(--gray-400); }
.empty-state .icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state h3   { color: var(--gray-600); margin-bottom: 8px; }


/* -----------------------------------------------------------
   Nav / Topbar CSS � moved from header.php to eliminate FOUC
   ----------------------------------------------------------- */
/* ─── TOPBAR ─── */
.aq-topbar {
  background: #0b1f4b;
  color: rgba(255,255,255,.75);
  font-size: .76rem;
  font-family: var(--font-sans);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.aq-topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  gap: 16px;
}
.aq-topbar-left, .aq-topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.aq-topbar-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.65);
}
.aq-topbar-sep { color: rgba(255,255,255,.2); }
.aq-topbar-link { text-decoration: none; transition: color .15s; }
.aq-topbar-link:hover { color: #fff !important; }
.aq-topbar-wa { color: #4ade80 !important; font-weight: 600; }
.aq-topbar-wa:hover { color: #86efac !important; }

/* ─── NAVBAR ─── */
.aq-nav {
  /* Lovable glassmorphism nav — semi-transparent with blur */
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 236, 245, 0.8);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .2s;
}
.aq-nav.scrolled {
  box-shadow: 0 4px 24px rgba(11,31,75,.1);
  background: rgba(255, 255, 255, 0.97);
}
.aq-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  height: 64px;
}

/* Logo */
.aq-nav-logo { flex-shrink: 0; margin-right: 24px; display: flex; align-items: center; }
.aq-nav-logo img { height: 44px; width: auto; object-fit: contain; }

/* Nav links */
.aq-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  min-width: 0;
  overflow: visible;
}
.aq-nav-links > li { position: relative; flex-shrink: 0; }
.aq-nav-links > li > a,
.aq-nav-more-btn {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 6px 14px;
  border-radius: 7px;
  font-size: .84rem;
  font-weight: 500;
  color: #374151;
  font-family: var(--font-sans);
  transition: background .15s, color .15s;
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.aq-nav-links > li > a:hover,
.aq-nav-more-btn:hover {
  background: #f0f4ff;
  color: #0b2c6b;
}
.aq-nav-active {
  background: #eef2ff !important;
  color: #0b2c6b !important;
  font-weight: 600 !important;
}

/* Dropdown */
.aq-nav-more { position: relative; }
.aq-nav-dropdown {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(11,31,75,.15);
  padding: 6px;
  z-index: 9999;
  transform: translateY(-6px);
  transition: opacity .15s ease, transform .15s ease, visibility 0s linear .15s;
}
/* JS adds .open - this is the ONLY trigger for visibility */
.aq-nav-more.open .aq-nav-dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity .15s ease, transform .15s ease, visibility 0s linear 0s;
}
.aq-nav-more-btn svg { transition: transform .2s; }
.aq-nav-more.open .aq-nav-more-btn svg { transform: rotate(180deg); }
.aq-nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: 7px;
  font-size: .87rem;
  font-weight: 500;
  color: #374151;
  font-family: var(--font-sans);
  transition: background .12s, color .12s;
  text-decoration: none;
}
.aq-nav-dropdown a:hover { background: #f0f4ff; color: #0b2c6b; }
.aq-nav-dropdown a svg { color: #6b7280; flex-shrink: 0; }
.aq-dd-active { color: #0b2c6b !important; font-weight: 600 !important; }

/* Right actions */
.aq-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
  flex-shrink: 0;
}

/* Quote CTA button — never wraps */
.aq-nav-quote {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0b2c6b;
  color: #fff;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background .15s, transform .15s;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}
.aq-nav-quote:hover { background: #1e90ff; transform: translateY(-1px); color: #fff; }
.aq-nav-quote-active { background: #1e90ff; }
.aq-cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: #f97316;
  color: #fff;
  border-radius: 4px;
  font-size: .67rem;
  font-weight: 800;
  line-height: 1;
}

/* Hamburger (mobile only) */
.aq-hamburger {
  display: none;
  background: none;
  border: 1.5px solid #e5e7eb;
  border-radius: 7px;
  width: 38px;
  height: 38px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
}
.aq-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #0b2c6b;
  border-radius: 2px;
  transition: .25s;
}
.aq-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.aq-hamburger.open span:nth-child(2) { opacity: 0; }
.aq-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── MOBILE NAV ─── */
.aq-mobile-nav {
  display: none;
  background: #fff;
  border-top: 2px solid #eef2ff;
  position: fixed;
  top: 104px; /* topbar + navbar height */
  left: 0; right: 0;
  z-index: 999;
  overflow-y: auto;
  max-height: calc(100vh - 104px);
  box-shadow: 0 12px 40px rgba(11,31,75,.15);
}
.aq-mobile-nav.open { display: block; }
.aq-mobile-nav-inner {
  padding: 8px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.aq-mobile-nav-inner > a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 4px;
  font-size: .92rem;
  font-weight: 500;
  color: #374151;
  font-family: var(--font-sans);
  transition: background .12s;
}
.aq-mobile-nav-inner > a:hover { background: #f0f4ff; color: #0b2c6b; }
.aq-mob-active { color: #0b2c6b !important; font-weight: 700 !important; background: #eef2ff; }
.aq-mob-divider { height: 1px; background: #e5e7eb; margin: 8px 0; }
.aq-mob-quote {
  background: #0b2c6b !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 4px;
  justify-content: center !important;
  margin-top: 4px;
}
.aq-mob-quote:hover { background: #1e90ff !important; }
.aq-mob-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: #f97316;
  color: #fff;
  border-radius: 4px;
  font-size: .67rem;
  font-weight: 800;
}
.aq-mob-phone {
  border: 1.5px solid #e5e7eb !important;
  color: #0b2c6b !important;
  justify-content: center !important;
  font-weight: 600 !important;
  margin-top: 6px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .aq-nav-links { display: none; }
  .aq-hamburger { display: flex; }
  .aq-nav-logo { margin-right: auto; }
  .aq-nav-inner { height: 60px; }
}
@media (max-width: 600px) {
  .aq-nav-logo img { height: 38px; }
  .aq-nav-quote { padding: 7px 12px; font-size: .78rem; }
  .aq-topbar { display: none; }
  .aq-mobile-nav { top: 60px; max-height: calc(100vh - 60px); }
}

/* ═══════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVENESS
   ═══════════════════════════════════════════════════════════ */

/* ── Global: padding bottom for sticky mobile CTA bar ── */
@media (max-width: 768px) {
  body { padding-bottom: 72px; }
}

/* ── Container padding on small screens ── */
@media (max-width: 480px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .section    { padding: 48px 0; }
  .section-sm { padding: 28px 0; }
}

/* ── Hero section ── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr 340px; gap: 40px; }
  .hero-image { height: 360px; }
}
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero { min-height: auto; padding: 64px 0 52px; }
  .hero h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .hero-sub { font-size: .95rem; margin-bottom: 28px; }
  .hero-btns { margin-bottom: 32px; }
}
@media (max-width: 480px) {
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; }
  .hero-stat strong { font-size: 1.5rem; }
}

/* ── Stats strip — scroll horizontally on mobile ── */
@media (max-width: 640px) {
  .stats-strip-inner { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .stats-strip-inner::-webkit-scrollbar { display: none; }
  .stats-strip-item { min-width: 120px; padding: 14px 16px; }
  .stats-strip-item strong { font-size: 1.3rem; }
}

/* ── Product grid — 2 cols on tablet, 1 col on phone ── */
@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-body  { padding: 10px; }
  .product-footer { padding: 10px; }
  .product-name  { font-size: .85rem; }
}
@media (max-width: 360px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ── Cat grid ── */
@media (max-width: 640px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .cat-grid { grid-template-columns: 1fr; }
}

/* ── Cat image grid (categories page) ── */
@media (max-width: 768px) { .cat-img-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .cat-img-grid { grid-template-columns: 1fr; } }

/* ── Brand grid ── */
@media (max-width: 768px) { .brand-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .brand-grid { grid-template-columns: 1fr; } }

/* ── Testimonials grid — 1 col on mobile ── */
@media (max-width: 640px) {
  .testi-grid { grid-template-columns: 1fr; }
}

/* ── Filter bar — stack vertically ── */
@media (max-width: 768px) {
  .filter-bar { flex-direction: column; gap: 10px; padding: 14px; }
  .filter-bar .form-group { min-width: 100%; }
  .search-box { min-width: 100%; }
}

/* ── Form rows — always single column on mobile ── */
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ── Quote cart table — horizontal scroll ── */
.cart-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 4px;
}
@media (max-width: 640px) {
  .cart-table th, .cart-table td { padding: 10px 12px; font-size: .82rem; }
  .qty-input { width: 52px; padding: 5px 6px; }
}

/* ── Quote form actions ── */
@media (max-width: 480px) {
  .quote-form-section .btn { width: 100%; justify-content: center; }
}

/* ── Product detail ── */
@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; gap: 28px; }
}

/* ── Page header ── */
@media (max-width: 480px) {
  .page-header { padding: 32px 0; }
  .page-header h1 { font-size: 1.6rem; }
}

/* ── Timeline (About) — single column ── */
@media (max-width: 600px) {
  .timeline-item { grid-template-columns: 80px 1fr; gap: 14px; }
  .timeline-item::before { left: 79px; }
  .timeline-dot { left: 71px; }
  .timeline-year { font-size: .9rem; }
}

/* ── Utility grid cols ── */
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .grid-3 { grid-template-columns: 1fr; }
}

/* ── Footer ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer .container { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer { padding-top: 40px; }
  .footer .container { padding-left: 16px; padding-right: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer-bottom div { justify-content: center; }
}

/* ── CTA banner ── */
@media (max-width: 640px) {
  .cta-banner { padding: 48px 20px; }
  .cta-banner h2 { font-size: 1.4rem; }
  .cta-banner .btns { flex-direction: column; align-items: center; }
  .cta-banner .btns .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ── Newsletter strip ── */
@media (max-width: 640px) {
  .nl-inner { flex-direction: column; text-align: center; }
  .nl-form { width: 100%; }
  .nl-input { flex: 1; width: auto; }
}

/* ── Admin stats grid ── */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-detail { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .navbar-nav { display: none; }
  .hamburger  { display: block; }
  .cat-grid   { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .hero-stat strong { font-size: 1.5rem; }
}
@media (max-width: 400px) {
  .cat-grid { grid-template-columns: 1fr; }
}

/* ── City grid ── */
@media (max-width: 768px) { .city-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .city-grid { grid-template-columns: 1fr; } }

/* ── Mobile sticky CTA bar ── */
@media (max-width: 768px) { .mobile-cta { display: block; } .wa-float { bottom: 90px; } }

/* ── Trust bar — wrap and center ── */
@media (max-width: 600px) {
  .trust-bar .container { gap: 16px; justify-content: flex-start; }
  .trust-item { font-size: .78rem; }
}

/* ── Featured product cards on homepage ── */
@media (max-width: 640px) {
  .featured-products-section .cat-card-acts { gap: 4px; }
  .featured-products-section .cat-act { width: 30px; height: 30px; }
}

/* ── Tap target minimum — all buttons/links ── */
@media (max-width: 768px) {
  .btn { min-height: 44px; }
  .aq-mobile-nav-inner > a { min-height: 48px; }
  .cat-page-btn { min-width: 40px; min-height: 40px; }
  .add-to-quote { min-height: 36px; }
}

