/* ============================================
   AlterEco – Pest & Virus Control
   Design System & Styles
   ============================================ */

/* -- Google Fonts -- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&display=swap');

/* -- CSS Variables -- */
:root {
  --primary: #0070B0;
  --primary-dark: #005A8E;
  --primary-light: #3B9BD4;
  --primary-pale: #E8F4FB;
  --accent: #00A86B;
  --accent-dark: #008756;
  --accent-light: #E6F7F0;
  --bg: #FAFCFE;
  --bg-alt: #F0F5F9;
  --text: #1E2A3A;
  --text-secondary: #4A5B6E;
  --text-light: #7B8DA0;
  --border: #D8E2EB;
  --white: #FFFFFF;
  --dark: #0F1923;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-heading: 'Manrope', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-width: 1200px;
  --header-height: 72px;
}

/* -- Reset -- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* -- Typography -- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 4.5vw, 3rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { margin-bottom: 1rem; }

/* -- Container -- */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* -- Section -- */
.section { padding: 5rem 0; }
.section--alt { background: var(--bg-alt); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--text-secondary); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-pale);
  padding: .35rem .9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.header-logo img {
  height: 44px;
  width: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}
.header-logo span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.header-logo .logo-sub {
  font-size: .7rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: block;
  letter-spacing: .02em;
}

/* Navigation */
.nav { display: flex; align-items: center; gap: .25rem; }
.nav a {
  padding: .5rem .85rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all .2s;
  white-space: nowrap;
}
.nav a:hover, .nav a.active { color: var(--primary); background: var(--primary-pale); }

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-alt);
  border-radius: 100px;
  padding: 3px;
  margin-left: .75rem;
  border: 1px solid var(--border);
}
.lang-switch a {
  padding: .3rem .65rem;
  font-size: .78rem;
  font-weight: 600;
  font-family: var(--font-heading);
  border-radius: 100px;
  color: var(--text-light);
  transition: all .2s;
}
.lang-switch a.active {
  background: var(--primary);
  color: var(--white);
}

/* Hamburger (mobile) */
.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 4rem;
  background: linear-gradient(170deg, var(--primary-pale) 0%, var(--bg) 55%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,112,176,.08), transparent 70%);
  pointer-events: none;
}
.hero .container {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.hero-content { flex: 1; max-width: 600px; }
.hero-visual { flex: 0 0 auto; position: relative; }
.hero-visual img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 .highlight { color: var(--primary); }
.hero p { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 2rem; max-width: 520px; }

/* CTA Buttons */
.cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--radius);
  transition: all .25s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0,112,176,.25);
}
.btn--primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,112,176,.35); }
.btn--outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn--outline:hover { background: var(--primary); color: var(--white); }
.btn--accent { background: var(--accent); color: var(--white); }
.btn--accent:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-1px); }
.btn--sm { padding: .6rem 1.2rem; font-size: .85rem; }

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-bar { padding: 2.5rem 0; border-bottom: 1px solid var(--border); }
.trust-items {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .5rem 0;
}
.trust-icon {
  width: 44px; height: 44px;
  background: var(--primary-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 22px; height: 22px; color: var(--primary); }
.trust-text { font-size: .85rem; font-weight: 600; font-family: var(--font-heading); color: var(--text); line-height: 1.3; }
.trust-text small { display: block; font-weight: 400; color: var(--text-light); font-size: .75rem; }

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.service-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
  width: 52px; height: 52px;
  background: var(--primary-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-card-icon svg { width: 26px; height: 26px; color: var(--primary); }
.service-card h3 { margin-bottom: .5rem; }
.service-card p { color: var(--text-secondary); font-size: .92rem; margin-bottom: 1rem; }
.service-card .btn--sm { margin-top: auto; }

/* Service detail page */
.service-detail { padding: 2rem 0 3rem; }
.service-detail h3 { color: var(--primary); margin: 2rem 0 .75rem; font-size: 1.15rem; }
.service-detail ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.service-detail ul li { position: relative; padding-left: 1.2rem; margin-bottom: .4rem; color: var(--text-secondary); }
.service-detail ul li::before {
  content: '';
  position: absolute;
  left: 0; top: .65rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

/* ============================================
   WHY US / FEATURES
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all .3s;
}
.feature-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.feature-card-icon {
  width: 48px; height: 48px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feature-card-icon svg { width: 24px; height: 24px; color: var(--accent); }
.feature-card h4 { margin-bottom: .4rem; }
.feature-card p { color: var(--text-secondary); font-size: .9rem; margin: 0; }

/* ============================================
   CERTIFICATIONS / ISO
   ============================================ */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.cert-card {
  background: var(--white);
  border: 2px solid var(--primary-pale);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all .3s;
}
.cert-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-sm); }
.cert-badge {
  width: 64px; height: 64px;
  margin: 0 auto 1rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-badge svg { width: 32px; height: 32px; color: var(--white); }
.cert-card h4 { margin-bottom: .4rem; }
.cert-card p { color: var(--text-secondary); font-size: .88rem; margin: 0; }

/* ============================================
   GUIDES / ACCORDIONS
   ============================================ */
.guide-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.guide-category {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.guide-category-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  transition: all .2s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.guide-category-header:hover { background: var(--primary-pale); color: var(--primary); }
.guide-category-header .arrow {
  margin-left: auto;
  transition: transform .3s;
  flex-shrink: 0;
}
.guide-category.open .guide-category-header .arrow { transform: rotate(180deg); }
.guide-category-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.guide-category.open .guide-category-body { max-height: 2000px; }
.guide-item {
  padding: .75rem 1.5rem;
  border-top: 1px solid var(--border);
}
.guide-item h5 {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .25rem;
  color: var(--primary-dark);
}
.guide-item p { font-size: .85rem; color: var(--text-secondary); margin: 0; line-height: 1.5; }
.guide-item .guide-meta { font-size: .8rem; color: var(--text-light); margin-top: .25rem; }

/* Article cards */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all .3s;
}
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.article-card h4 { margin-bottom: .4rem; }
.article-card p { color: var(--text-secondary); font-size: .9rem; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info-block h3 { margin-bottom: 1.25rem; }
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
}
.contact-line svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: .2rem; }
.contact-line span { color: var(--text-secondary); }
.contact-line a { font-weight: 500; }

/* Mailto form */
.mailto-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.mailto-form h3 { margin-bottom: 1.25rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: .35rem;
  color: var(--text);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,112,176,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer h5 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.footer-brand p { font-size: .9rem; line-height: 1.6; margin-bottom: 1rem; }
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .75rem;
}
.footer-brand .footer-logo img {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
}
.footer-brand .footer-logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  padding: .25rem 0;
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .6rem;
  font-size: .88rem;
}
.footer-contact-line svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: .2rem; opacity: .6; }
.footer-contact-line a { color: rgba(255,255,255,.65); }
.footer-contact-line a:hover { color: var(--white); }

/* Social icons */
.social-icons { display: flex; gap: .6rem; margin-top: .5rem; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.social-icon:hover { background: var(--primary); transform: translateY(-2px); }
.social-icon svg { width: 18px; height: 18px; color: rgba(255,255,255,.8); }

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }
.disclaimer {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  max-width: 600px;
  line-height: 1.5;
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 2.5rem;
  background: linear-gradient(170deg, var(--primary-pale) 0%, var(--bg) 100%);
  text-align: center;
}
.page-header h1 { margin-bottom: .5rem; }
.page-header p { color: var(--text-secondary); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .hero .container { flex-direction: column; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .cta-group { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-visual img { width: 200px; height: 200px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { 
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: .25rem;
    z-index: 999;
    overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav a { padding: .75rem 1rem; font-size: 1rem; }
  .lang-switch { margin: 1rem 0 0; }
  .menu-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .guide-categories { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-items { gap: 1rem; }
  .section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .cta-group { flex-direction: column; }
  .cta-group .btn { width: 100%; justify-content: center; }
}

/* ============================================
   CTA BAND SECTION (new)
   ============================================ */
.cta-band-section {
  background: var(--primary);
  color: var(--white);
  text-align: center;
}
.cta-band-section h2 { color: var(--white); margin-bottom: .75rem; }
.cta-band-section p { color: rgba(255,255,255,.85); max-width: 520px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* CTA button variants */
.btn--cta-white {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.6rem; font-family: var(--font-heading); font-weight: 600; font-size: .95rem;
  border-radius: var(--radius); transition: all .25s; white-space: nowrap;
  background: var(--white); color: var(--primary);
}
.btn--cta-white:hover { background: var(--primary-pale); color: var(--primary-dark); transform: translateY(-1px); }
.btn--outline-white {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.6rem; font-family: var(--font-heading); font-weight: 600; font-size: .95rem;
  border-radius: var(--radius); transition: all .25s; white-space: nowrap;
  border: 2px solid var(--white); color: var(--white); background: transparent;
}
.btn--outline-white:hover { background: rgba(255,255,255,.15); color: var(--white); }

/* ============================================
   MOBILE STICKY CTA
   ============================================ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
  transform: translateY(100%);
  transition: transform .3s ease;
}
.mobile-sticky-cta.visible { transform: translateY(0); }
.btn--mobile-call {
  width: 100%;
  justify-content: center;
  padding: .9rem 1rem;
  font-size: 1rem;
  border-radius: var(--radius);
}

@media (max-width: 768px) {
  .mobile-sticky-cta { display: block; }
  .footer { padding-bottom: 5rem; }
}
/* ===========================
   FIX: Huge icons in Guides cards / dropdown headers
   Paste at END of css/styles.css
   =========================== */

#guideCategories svg,
#guideCategories img,
#guideCategories .icon,
.guide-categories svg,
.guide-categories img,
.guide-categories .icon {
  width: 20px !important;
  height: 20px !important;
  flex: 0 0 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
}

/* If icons are inside the clickable header row */
#guideCategories .guide-category-header svg,
#guideCategories .guide-category-header img,
#guideCategories .dropdown-header svg,
#guideCategories .dropdown-header img,
.guide-category-header svg,
.guide-category-header img,
.dropdown-header svg,
.dropdown-header img {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px !important;
}

/* Make sure SVG doesn't blow up due to viewBox scaling */
#guideCategories svg,
.guide-categories svg,
.guide-category-header svg,
.dropdown-header svg {
  display: block;
}

/* Optional: keep header layout tight */
.guide-category-header,
.dropdown-header {
  gap: 12px;
  align-items: center;
}
