/* ═══════════════════════════════════════════════════════
   GSMC Header & Footer — Scoped CSS
   ALL classes prefixed .gsmc-hf- — zero conflict with pages
════════════════════════════════════════════════════════ */

/* ── TOPBAR ──────────────────────────────────────────── */
.gsmc-hf-topbar {
  background: #3a0d1b;
  padding: 7px 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .02em;
  color: rgba(255,255,255,.65);
}
.gsmc-hf-tb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.gsmc-hf-tb-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.gsmc-hf-tb-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.gsmc-hf-tb-icon {
  font-size: 11px;
  color: #A5244A;
}
.gsmc-hf-topbar a { color: rgba(255,255,255,.65); text-decoration: none; transition: color .15s; }
.gsmc-hf-topbar a:hover { color: #fff; }
.gsmc-hf-tb-badge {
  background: #A5244A;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

/* ── HEADER BAR ─────────────────────────────────────── */
.gsmc-hf-bar {
  position: sticky;
  top: 0;
  z-index: 9900;
  background: rgba(253,248,250,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid #e8d0db;
  min-height: 72px;
  display: flex;
  align-items: center;
  transition: box-shadow .25s;
  width: 100%;
}
.gsmc-hf-bar.gsmc-hf-scrolled {
  box-shadow: 0 4px 24px rgba(58,13,27,.1);
}
.gsmc-hf-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── LOGO ───────────────────────────────────────────── */
.gsmc-hf-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.gsmc-hf-logo img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
.gsmc-hf-logo-text {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #1a0910;
}

/* ── NAV LINKS ──────────────────────────────────────── */
.gsmc-hf-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: auto;
}
.gsmc-hf-nav-links > li {
  position: relative;
  margin: 0;
  padding: 0;
}
.gsmc-hf-nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Instrument Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1a0910;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.gsmc-hf-nav-links > li > a:hover,
.gsmc-hf-has-drop:hover > a {
  color: #A5244A;
  background: #faedf2;
}
.gsmc-hf-nav-links > li > a svg,
.gsmc-hf-nav-links > li > a i {
  font-size: 13px;
}
.gsmc-hf-chev {
  font-size: 11px !important;
  transition: transform .2s;
}
.gsmc-hf-has-drop:hover .gsmc-hf-chev {
  transform: rotate(180deg);
}

/* ── DROPDOWN ───────────────────────────────────────── */
.gsmc-hf-drop {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff;
  border: 1px solid #e8d0db;
  border-radius: 14px;
  padding: 8px;
  padding-top: 16px;
  min-width: 240px;
  box-shadow: 0 16px 48px rgba(58,13,27,.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s, transform .18s, visibility .18s;
  list-style: none;
  margin: 0;
  pointer-events: none;
  z-index: 9999;
}
.gsmc-hf-drop-wide {
  min-width: 500px;
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.gsmc-hf-has-drop:hover .gsmc-hf-drop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.gsmc-hf-drop li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.gsmc-hf-drop li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-family: "Instrument Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #1a0910;
  text-decoration: none;
  transition: background .12s, color .12s;
}
.gsmc-hf-drop li a:hover {
  background: #faedf2;
  color: #A5244A;
}
.gsmc-hf-drop-ico {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: #faedf2;
  border: 1px solid #f0d0db;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gsmc-hf-drop-ico i {
  font-size: 11px;
  color: #A5244A;
}
.gsmc-hf-drop-label {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.gsmc-hf-drop-div {
  height: 1px;
  background: #e8d0db;
  margin: 6px 8px;
}
.gsmc-hf-drop-footer {
  grid-column: 1 / -1;
}
.gsmc-hf-drop-cta-link {
  justify-content: center !important;
  font-weight: 700 !important;
  color: #A5244A !important;
}
.gsmc-hf-drop-cta-link:hover {
  background: #faedf2 !important;
}

/* ── PHONE CHIP ─────────────────────────────────────── */
.gsmc-hf-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Instrument Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #1a0910;
  padding: 9px 16px;
  border-radius: 100px;
  border: 1.5px solid #e8d0db;
  text-decoration: none;
  transition: border-color .15s, color .15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.gsmc-hf-phone i { font-size: 12px; color: #A5244A; }
.gsmc-hf-phone:hover { border-color: #A5244A; color: #A5244A; }

/* ── CTA BUTTON ─────────────────────────────────────── */
.gsmc-hf-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #A5244A;
  color: #fff;
  font-family: "Instrument Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  transition: background .18s, transform .15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.gsmc-hf-cta i { font-size: 12px; }
.gsmc-hf-cta:hover { background: #3a0d1b; transform: translateY(-1px); }

/* ── HAMBURGER ──────────────────────────────────────── */
.gsmc-hf-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #A5244A;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  transition: background .15s;
  flex-shrink: 0;
}
.gsmc-hf-hamburger:hover { background: #3a0d1b; }
.gsmc-hf-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all .22s;
  transform-origin: center;
  pointer-events: none;
}
.gsmc-hf-hamburger.gsmc-hf-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gsmc-hf-hamburger.gsmc-hf-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.gsmc-hf-hamburger.gsmc-hf-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ──────────────────────────────────── */
.gsmc-hf-mob-nav {
  display: block !important;   /* always in DOM, visibility via transform */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 90vw;
  background: #fff;
  overflow-y: auto;
  z-index: 99999;              /* above Elementor sticky headers */
  padding: 80px 24px 40px;
  transform: translateX(110%); /* fully off-screen until opened */
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(58,13,27,.12);
  visibility: visible;
}
.gsmc-hf-mob-nav.gsmc-hf-mob-open {
  transform: translateX(0) !important;
}
.gsmc-hf-mob-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-radius: 10px;
  font-family: "Instrument Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1a0910;
  text-decoration: none;
  transition: background .12s, color .12s;
}
.gsmc-hf-mob-link:hover,
.gsmc-hf-mob-link.gsmc-hf-active {
  background: #faedf2;
  color: #A5244A;
}
.gsmc-hf-mob-section-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6b3f50;
  padding: 18px 16px 6px;
}
.gsmc-hf-mob-sub a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 24px;
  font-family: "Instrument Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #6b3f50;
  border-radius: 8px;
  text-decoration: none;
  transition: background .12s, color .12s;
}
.gsmc-hf-mob-sub a:hover { background: #faedf2; color: #A5244A; }
.gsmc-hf-mob-sub a i { font-size: 11px; color: #A5244A; }
.gsmc-hf-mob-div {
  height: 1px;
  background: #e8d0db;
  margin: 12px 0;
}
.gsmc-hf-mob-cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.gsmc-hf-mob-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 100px;
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s;
}
.gsmc-hf-mob-cta i { font-size: 13px; }
.gsmc-hf-mob-cta-red { background: #A5244A; color: #fff; }
.gsmc-hf-mob-cta-red:hover { background: #3a0d1b; }
.gsmc-hf-mob-cta-out { border: 1.5px solid #e8d0db; color: #1a0910; background: transparent; }
.gsmc-hf-mob-cta-out:hover { border-color: #A5244A; color: #A5244A; }

/* Mobile overlay */
.gsmc-hf-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,9,16,.4);
  z-index: 99990;
  opacity: 0;
  transition: opacity .25s;
}
.gsmc-hf-overlay.gsmc-hf-overlay-show {
  display: block;
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
.gsmc-hf-footer {
  background: #3a0d1b;
  font-family: "Instrument Sans", sans-serif;
  color: rgba(255,255,255,.7);
}
.gsmc-hf-ft-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.gsmc-hf-ft-top {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.gsmc-hf-ft-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 40px;
}
/* Brand */
.gsmc-hf-ft-brand {}
.gsmc-hf-footer-logo { display: inline-block; text-decoration: none; }
.gsmc-hf-footer-logo img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  /* NO filter here — controlled only by inline style from PHP */
}
.gsmc-hf-ft-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 220px;
}
.gsmc-hf-ft-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}
.gsmc-hf-ft-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  padding: 4px 9px;
}
.gsmc-hf-ft-badge i { font-size: 9px; color: #A5244A; }
/* Column */
.gsmc-hf-ft-col {}
.gsmc-hf-ft-col-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 16px;
  margin-top: 0;
  padding: 0;
}
.gsmc-hf-ft-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.gsmc-hf-ft-links li { margin: 0; padding: 0; }
.gsmc-hf-ft-links li a {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  transition: color .15s;
}
.gsmc-hf-ft-links li a:hover { color: #fff; }
.gsmc-hf-ft-links li a::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #A5244A;
  flex-shrink: 0;
  opacity: .7;
}
/* Contact */
.gsmc-hf-ft-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.gsmc-hf-ft-contact-item i {
  font-size: 13px;
  color: #A5244A;
  flex-shrink: 0;
  margin-top: 2px;
}
.gsmc-hf-ft-contact-item a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .15s;
}
.gsmc-hf-ft-contact-item a:hover { color: #fff; }
/* CTA button in footer */
.gsmc-hf-ft-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #A5244A;
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  transition: background .18s;
}
.gsmc-hf-ft-cta i { font-size: 12px; }
.gsmc-hf-ft-cta:hover { background: #6e1630; }
/* Compliance bar */
.gsmc-hf-compliance-bar {
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 12px 28px;
  font-size: 11px;
  color: rgba(255,255,255,.25);
  text-align: center;
  letter-spacing: .02em;
  line-height: 1.6;
}
/* Bottom bar */
.gsmc-hf-ft-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
}
.gsmc-hf-ft-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.gsmc-hf-ft-copy {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  margin: 0;
}
.gsmc-hf-ft-copy a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .15s; }
.gsmc-hf-ft-copy a:hover { color: #fff; }
.gsmc-hf-ft-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.gsmc-hf-ft-legal a {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color .15s;
}
.gsmc-hf-ft-legal a:hover { color: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .gsmc-hf-phone { display: none; }
  .gsmc-hf-ft-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gsmc-hf-ft-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .gsmc-hf-nav-links,
  .gsmc-hf-cta,
  .gsmc-hf-phone { display: none; }
  .gsmc-hf-hamburger { display: flex; }
  .gsmc-hf-mob-nav { display: block; }
}
@media (max-width: 640px) {
  .gsmc-hf-topbar { display: none; }
  .gsmc-hf-ft-grid { grid-template-columns: 1fr; }
  .gsmc-hf-ft-brand { grid-column: auto; }
  .gsmc-hf-ft-bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (max-width: 480px) {
  .gsmc-hf-nav-inner { padding: 0 16px; }
  .gsmc-hf-ft-inner  { padding: 0 16px; }
  .gsmc-hf-compliance-bar { padding: 12px 16px; }
}

/* ═══════════════════════════════════════════════════════
   ADDITIONS — v1.1
════════════════════════════════════════════════════════ */

/* ── Hamburger — ensure it always shows on mobile ──── */
@media (max-width: 860px) {
  .gsmc-hf-hamburger {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column;
    flex-shrink: 0;
    z-index: 9901;
  }
}

/* ── Hamburger left position ──────────────────────── */
.gsmc-hf-hamburger-left {
  order: -1;
  margin-right: auto;
  margin-left: 0 !important;
}
.gsmc-hf-hamburger-right {
  margin-left: auto;
}

/* ── Footer brand card ────────────────────────────── */
.gsmc-hf-ft-brand {
  background-color: #FBEBF0;
  border-radius: 16px;
  padding: 28px 24px;
}
.gsmc-hf-ft-tagline {
  font-size: 13px;
  color: #6b3f50;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 240px;
}
.gsmc-hf-ft-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}
.gsmc-hf-ft-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #A5244A;
  background-color: rgba(165,36,74,0.08);
  border: 1px solid rgba(165,36,74,0.2);
  border-radius: 6px;
  padding: 4px 9px;
}
.gsmc-hf-ft-badge i { font-size: 9px; color: #A5244A; }

/* ── Social icons row ─────────────────────────────── */
.gsmc-hf-soc-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.gsmc-hf-soc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #A5244A;
  color: #fff;
  text-decoration: none;
  transition: background .18s, transform .15s;
  flex-shrink: 0;
}
.gsmc-hf-soc-btn i { font-size: 13px; color: #fff; }
.gsmc-hf-soc-btn:hover { background-color: #3a0d1b; transform: translateY(-2px); }

/* ── Footer logo — original (no filter by default) ── */
.gsmc-hf-footer-logo img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  /* No invert by default — controlled by inline style from PHP */
}

/* ── ZippyExperts credit ──────────────────────────── */
.gsmc-hf-zippy-credit {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}
.gsmc-hf-zippy-credit a {
  color: #f0d0db;
  text-decoration: none;
  font-weight: 700;
  transition: color .15s;
}
.gsmc-hf-zippy-credit a:hover { color: #fff; }

/* ── Bottom bar left block ────────────────────────── */
.gsmc-hf-ft-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.gsmc-hf-ft-copy { margin: 0; }

/* ── Footer grid responsive fix for card ─────────── */
@media (max-width: 1100px) {
  .gsmc-hf-ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .gsmc-hf-ft-brand {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
  }
  .gsmc-hf-ft-brand .gsmc-hf-footer-logo { grid-row: 1 / 3; }
}
@media (max-width: 640px) {
  .gsmc-hf-ft-brand {
    grid-column: auto;
    display: block;
  }
  .gsmc-hf-ft-grid { grid-template-columns: 1fr; }
  .gsmc-hf-ft-bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ═══════════════════════════════════════════════════════
   v1.3 FIXES — Icon size constraints
   Elementor Icons_Manager renders <svg> tags that inherit
   full element size unless explicitly capped here.
════════════════════════════════════════════════════════ */

/* ── Social icon buttons — constrain SVG/i inside ── */
.gsmc-hf-soc-btn {
  overflow: hidden;
}
.gsmc-hf-soc-btn i,
.gsmc-hf-soc-btn svg {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  font-size: 14px !important;
  flex-shrink: 0;
  display: block;
  fill: currentColor;
  color: inherit;
}

/* ── Badge icons — constrain SVG/i inside ─────────── */
.gsmc-hf-ft-badge i,
.gsmc-hf-ft-badge svg {
  width: 10px !important;
  height: 10px !important;
  max-width: 10px !important;
  max-height: 10px !important;
  font-size: 10px !important;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
  color: #A5244A;
}

/* ── Drop icon SVGs ───────────────────────────────── */
.gsmc-hf-drop-ico i,
.gsmc-hf-drop-ico svg {
  width: 12px !important;
  height: 12px !important;
  max-width: 12px !important;
  max-height: 12px !important;
  font-size: 12px !important;
  fill: currentColor;
}

/* ── Nav link icons ───────────────────────────────── */
.gsmc-hf-nav-links > li > a > svg,
.gsmc-hf-nav-links > li > a > i:not(.gsmc-hf-chev) {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  font-size: 14px !important;
}

/* ── Mobile sub-link icons ────────────────────────── */
.gsmc-hf-mob-sub a i,
.gsmc-hf-mob-sub a svg {
  width: 12px !important;
  height: 12px !important;
  max-width: 12px !important;
  font-size: 12px !important;
}

/* ── Contact column icons ─────────────────────────── */
.gsmc-hf-ft-contact-item i,
.gsmc-hf-ft-contact-item svg {
  width: 13px !important;
  height: 13px !important;
  max-width: 13px !important;
  font-size: 13px !important;
  flex-shrink: 0;
}

/* ── Footer logo — FORCE no filter (original colours) */
.gsmc-hf-footer-logo img {
  filter: none !important;
  -webkit-filter: none !important;
}
/* Only apply when PHP explicitly sets white/dark via inline style */
.gsmc-hf-footer-logo img[style*="brightness(0) invert"] {
  filter: brightness(0) invert(1) !important;
  -webkit-filter: brightness(0) invert(1) !important;
}
.gsmc-hf-footer-logo img[style*="brightness(0);"]:not([style*="invert"]) {
  filter: brightness(0) !important;
  -webkit-filter: brightness(0) !important;
}

/* ── Bridge gap so mouse can reach dropdown without hover breaking ─── */
.gsmc-hf-has-drop {
  padding-bottom: 0;
  position: relative;
}
.gsmc-hf-has-drop > a {
  padding-bottom: 8px;
}

/* ── Mobile drawer header (logo + close) ─────────────── */
.gsmc-hf-mob-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 16px 20px;
  border-bottom: 1px solid #e8d0db;
  margin-bottom: 8px;
  flex-shrink: 0;
}
.gsmc-hf-mob-logo img {
  height: 40px;
  width: auto;
  display: block;
}
.gsmc-hf-mob-logo span {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #3a0d1b;
}
.gsmc-hf-mob-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #3a0d1b;
  font-size: 18px;
  transition: background .15s;
}
.gsmc-hf-mob-close:hover {
  background: #faedf2;
}

/* ── Ensure Font Awesome icons render in dropdown boxes ─ */
.gsmc-hf-drop-ico i,
.gsmc-hf-drop-ico .fa,
.gsmc-hf-drop-ico [class*="fa-"] {
  font-size: 11px !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #A5244A !important;
  width: auto !important;
  height: auto !important;
}
/* Mobile nav icons */
.gsmc-hf-mob-sub a i,
.gsmc-hf-mob-sub a [class*="fa-"] {
  font-size: 11px;
  color: #A5244A;
  margin-right: 6px;
  flex-shrink: 0;
}
/* Chevron and topbar icons */
.gsmc-hf-chev,
.gsmc-hf-tb-icon {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}
