/* ============================================================
   CristalesGafas — Header global (topbar + nav + mega + móvil)
   Carga en TODAS las páginas excepto la home (que usa home.css)
   ============================================================ */

/* ── Topbar ──────────────────────────────────────────────────── */
.cg-topbar {
  background: var(--deep);
  color: #dbe8f2;
  font-size: 13.5px;
  line-height: 1.4;
}
.cg-topbar .cg-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-block: 9px;
  text-align: center;
  flex-wrap: wrap;
}
.tb-main {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 500;
  white-space: nowrap;
  color: #dbe8f2;
}
.tb-main svg,
.cg-topbar svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
  color: #5fd39e;
  display: inline-block;
}
.tb-main b { color: #fff; font-weight: 700; }
.tb-sep { width: 1px; height: 14px; background: rgba(255,255,255,.2); flex-shrink: 0; }
.tb-alt { color: #9fc0ff; font-size: 13px; }
@media (max-width: 680px) {
  .tb-sep, .tb-alt { display: none; }
  /* Los idiomas traducidos (FR/EN/IT/PT) suelen ser más largos que el ES original.
     Sin esto, el texto se salía de la pantalla en vez de ajustarse. */
  .cg-topbar { font-size: 12.5px; }
  .tb-main { white-space: normal; text-align: center; }
  /* balance evita que el ajuste de línea deje una palabra suelta o cortes feos
     (ej. español a 1 línea de sobra, idiomas largos en 2-3 líneas parejas). */
  .tb-text { display: inline-block; text-wrap: balance; }
}

/* ── Header ──────────────────────────────────────────────────── */
.cg-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.cg-site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 24px -22px rgba(13,34,51,.5);
}
.cg-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: var(--header-h);
}
.cg-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -.02em;
  color: var(--ink);
  text-decoration: none;
}
.cg-brand .mark { width: 34px; height: 34px; flex: none; }
.cg-brand b { font-weight: 700; }
.cg-brand .brand-blue { color: var(--blue); }
.cg-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}
.cg-nav-links > a {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  padding: 9px 14px;
  border-radius: 10px;
  transition: color .18s, background .18s;
}
.cg-nav-links > a:hover { color: var(--ink); background: var(--bg); }
.cg-nav-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cg-nav-cta .login {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding: 9px 12px;
}
.cg-nav-cta .login:hover { color: var(--blue); }
.cg-burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--paper);
  align-items: center;
  justify-content: center;
}
.cg-burger svg { width: 22px; height: 22px; }

/* ── Nav item con mega menú ──────────────────────────────────── */
.cg-nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.cg-nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  padding: 9px 14px;
  border-radius: 10px;
  transition: color .18s, background .18s;
  cursor: pointer;
}
.cg-nav-trigger .chev {
  width: 15px;
  height: 15px;
  transition: transform .2s;
}
.cg-nav-trigger:hover,
.cg-nav-item:hover .cg-nav-trigger,
.cg-nav-item:focus-within .cg-nav-trigger {
  color: var(--ink);
  background: var(--bg);
}
.cg-nav-item:hover .chev,
.cg-nav-item:focus-within .chev { transform: rotate(180deg); }

.mega {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 14px;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transform: translateY(7px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.cg-nav-item:hover .mega,
.cg-nav-item:focus-within .mega {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.mega-inner {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  padding: 22px;
  position: relative;
}
.mega-inner::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 32px;
  width: 16px;
  height: 16px;
  background: var(--paper);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: rotate(45deg);
  border-radius: 3px 0 0 0;
}
/* categorías */
.mega-cats .mega-inner { width: min(740px, 88vw); }
.mega-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px 22px; }
.mega-group { display: flex; flex-direction: column; gap: 1px; }
.mega-group + .mega-group { margin-top: 14px; }
.mega-parent {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -.01em;
  padding: 7px 10px;
  border-radius: 9px;
  transition: .16s;
}
.mega-parent::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--blue);
  flex: none;
}
.mega-parent:hover { background: var(--bg); }
.mega-link {
  display: block;
  padding: 7px 10px 7px 25px;
  border-radius: 9px;
  font-size: 14px;
  color: var(--muted);
  transition: .16s;
}
.mega-link:hover { background: var(--bg); color: var(--ink); }
.mega-promo {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.mega-promo .mp-txt {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
}
.mega-promo .mp-txt svg { width: 18px; height: 18px; color: var(--green); flex: none; }
.mega-promo .mp-txt b { color: var(--ink); }
/* marcas */
.mega-brands .mega-inner { width: min(560px, 88vw); }
.brand-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px 14px; }
.brand-cols a {
  display: block;
  padding: 8px 11px;
  border-radius: 9px;
  font-size: 14px;
  color: var(--muted);
  transition: .16s;
}
.brand-cols a:hover { background: var(--bg); color: var(--ink); }
.brand-cols a.is-own { color: var(--blue); font-weight: 600; }
.mega-allbrands {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mega-allbrands a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 14px;
  color: var(--blue);
}
.mega-allbrands a svg { width: 16px; height: 16px; }
.mega-allbrands span { font-size: 13px; color: var(--faint); }
@media (max-width: 980px) {
  .cg-nav-item { display: none; }
  .cg-nav-links { display: none; }
  .cg-nav-cta .login, .cg-nav-cta .btn { display: none; }
  .cg-burger { display: flex; }
}

/* Móvil estrecho: el header lleva logo + iconos + burger. Para que el burger NO
   se salga de la pantalla, ocultamos el icono de "Mi cuenta" (redundante: ya está
   dentro del menú móvil como "Acceder a mi cuenta") y apretamos las separaciones. */
@media (max-width: 600px) {
  .cg-acct-icon { display: none !important; }
  .cg-nav { gap: 12px; }
  .cg-nav-cta { gap: 6px; }
  .cg-brand { gap: 8px; }
}
@media (max-width: 360px) {
  .cg-brand { font-size: 18px; }
  .cg-brand .mark { width: 30px; height: 30px; }
  .cg-nav-cta { gap: 4px; }
}

/* ── Menú móvil ──────────────────────────────────────────────── */
.cg-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  padding: 18px var(--gutter) 32px;
  overflow-y: auto;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}
.cg-mobile-menu.open {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}
.cg-mm-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.cg-mm-close {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cg-mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 18px;
}
.mm-group { border-bottom: 1px solid var(--line); }
.mm-group > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  padding: 15px 4px;
  letter-spacing: -.02em;
  color: var(--ink);
}
.mm-group > summary::-webkit-details-marker { display: none; }
.mm-chev { width: 22px; height: 22px; color: var(--faint); transition: transform .2s; flex: none; }
.mm-group[open] > summary .mm-chev { transform: rotate(180deg); }
.mm-sub { padding: 0 4px 14px; display: flex; flex-direction: column; gap: 2px; }
.mm-sub a {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  padding: 9px 0 9px 14px;
}
.mm-sub a.mm-head { font-weight: 700; color: var(--ink); padding-left: 0; }
.mm-sub a.is-own { color: var(--blue); }
.mm-flat {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
  letter-spacing: -.02em;
  color: var(--ink);
}
.cg-mm-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
}

/* ── Botones home ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; transition: transform .25s ease; }
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(31,95,224,.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -10px rgba(31,95,224,.5);
  color: #fff;
}
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); color: var(--ink); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: #0a1c2b; color: #fff; }
.btn-lg { padding: 18px 32px; font-size: 17px; }
.btn-block { width: 100%; justify-content: center; }

/* ── Footer (compartido con home) ────────────────────────────── */
.cg-footer { background: var(--deep); border-top: none; color: #c4d4e0; padding-block: clamp(48px,6vw,72px) 32px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1.1fr 1.1fr 1.2fr; gap: 32px; align-items: start; }
.foot-brand .cg-brand { color: #fff; margin-bottom: 16px; }
.foot-brand p { color: #9fb3c4; font-size: 14.5px; max-width: 30ch; margin-top: 0; }
.foot-col h4 { font-family: var(--font-body); font-weight: 700; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: #fff; margin: 0 0 14px; }
.foot-col a { display: block; color: #a9bccb; font-size: 15px; padding: 6px 0; transition: color .18s; }
.foot-col a:hover { color: #fff; }
.foot-cats a.parent { color: #fff; font-weight: 600; }
.foot-cats a.child { padding-left: 16px; font-size: 14px; }
.foot-contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.foot-contact li { display: flex; gap: 12px; align-items: flex-start; }
.foot-contact .ci { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; flex: none; }
.foot-contact .ci svg { width: 19px !important; height: 19px !important; color: #5fd39e; }
.foot-contact .ct-label { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: #80a0b6; font-weight: 600; display: block; }
.foot-contact a, .foot-contact span { color: #fff; font-size: 15px; font-weight: 500; }
.foot-contact small { color: #9fb3c4; display: block; font-size: 13.5px; }
.tp-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 11px 15px; margin-top: 20px; }
.tp-badge .tp-star { color: #00b67a; font-size: 18px; letter-spacing: 1px; line-height: 1; }
.tp-badge b { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 17px; line-height: 1; display: block; }
.tp-badge small { color: #9fb3c4; font-size: 12px; }
.foot-social { display: flex; gap: 10px; margin-top: 18px; }
.foot-social a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid rgba(255,255,255,.14); display: flex; align-items: center; justify-content: center; color: #c4d4e0; transition: .18s; }
.foot-social a:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.28); }
.foot-social svg { width: 19px !important; height: 19px !important; }
.foot-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: clamp(40px,5vw,56px); padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: #80a0b6; font-size: 13.5px; }
.foot-pay { display: flex; gap: 8px; align-items: center; }
.foot-pay span { padding: 5px 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; font-weight: 600; font-size: 12px; color: #c4d4e0; background: rgba(255,255,255,.06); }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }

/* ── WhatsApp flotante ───────────────────────────────────────── */
.wa-float { position:fixed; right:20px; bottom:20px; z-index:70; width:60px; height:60px; border-radius:50%; background:#25d366; display:flex; align-items:center; justify-content:center; box-shadow:0 12px 30px -8px rgba(37,211,102,.6); transition:transform .2s; }
.wa-float:hover { transform:scale(1.07); }
.wa-float svg { width:33px !important; height:33px !important; color:#fff; }
.wa-float::after { content:""; position:absolute; inset:0; border-radius:50%; border:2px solid #25d366; animation:waPulse 2.4s ease-out infinite; }
@keyframes waPulse { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(1.5);opacity:0} }
@media (prefers-reduced-motion:reduce) { .wa-float::after { animation:none; display:none; } }

/* ── Icono carrito header ────────────────────────────────────── */
.header-icon-btn { display:flex; align-items:center; justify-content:center; width:42px; height:42px; border-radius:var(--r-xs); color:var(--ink); position:relative; transition:background var(--dur-fast),color var(--dur-fast); text-decoration:none; background:transparent !important; border:0; padding:0; cursor:pointer; -webkit-appearance:none; appearance:none; box-shadow:none !important; }
.header-icon-btn:hover { background:var(--bg) !important; color:var(--blue); }
.header-icon-btn:focus, .header-icon-btn:focus-visible { outline:none; box-shadow:none !important; }
.header-icon-btn svg { width:22px !important; height:22px !important; }
.cart-count { position:absolute; top:4px; right:4px; width:18px; height:18px; background:var(--blue); color:var(--paper); font-size:10px; font-weight:700; border-radius:50%; display:flex; align-items:center; justify-content:center; line-height:1; }

/* ── Buscador AJAX ───────────────────────────────────────────── */
.cg-search-bar {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 12px 0;
}
.cg-search-bar form { display: flex; gap: 8px; }
.cg-search-bar input[type="search"] {
  flex: 1;
  padding: 10px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  outline: none;
}
.cg-search-bar input[type="search"]:focus { border-color: var(--blue); }
.cg-search-bar button[type="submit"] {
  padding: 10px 20px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
}

/* ── Buscador del header ──────────────────────────────────────── */
.cg-search-panel {
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 14px 0;
  box-shadow: var(--shadow-soft);
}
.cg-search-panel[hidden] { display: none; }
.cg-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.cg-search-ic { color: var(--muted); flex: none; }
.cg-search-form input[type="search"] {
  flex: 1;
  height: 48px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-full);
  padding: 0 18px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--bg);
}
.cg-search-form input[type="search"]:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--paper);
}
.cg-search-form .btn { height: 48px; }
.cg-search-close {
  background: none; border: 0; font-size: 28px; line-height: 1;
  color: var(--muted); cursor: pointer; padding: 0 6px;
}
.cg-search-close:hover { color: var(--ink); }
@media (max-width: 600px) {
  .cg-search-form .btn { display: none; }
}

/* ── Resultados en vivo del buscador ──────────────────────────── */
.cg-search-results {
  margin-top: 12px;
  max-height: 60vh;
  overflow-y: auto;
  border-top: 1px solid var(--line);
}
.cg-search-results[hidden] { display: none; }
.cg-sr-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 6px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: background .12s;
}
.cg-sr-item:hover { background: var(--bg); }
.cg-sr-img {
  width: 56px; height: 56px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  flex: none;
}
.cg-sr-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cg-sr-title { font-weight: 600; font-size: 15px; color: var(--ink); }
.cg-sr-price { font-size: 14px; color: var(--blue-ink); font-weight: 600; }
.cg-sr-price del { color: var(--faint); font-weight: 400; font-size: .9em; margin-right: 6px; }
.cg-sr-empty { padding: 18px 6px; color: var(--muted); font-size: 14px; }

/* ── Grupos por tipo ────────────────────────────────────────── */
.cg-sr-group-head {
  padding: 8px 8px 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.cg-sr-group-head + .cg-sr-group-head,
.cg-sr-item + .cg-sr-group-head { margin-top: 4px; border-top: 1px solid var(--line); }

/* ── Categoría de marca bajo el título ──────────────────────── */
.cg-sr-cat {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Foco por teclado ───────────────────────────────────────── */
.cg-sr-item.cg-sr-focused { background: var(--bg); outline: 2px solid var(--blue); outline-offset: -2px; }

/* ── Resaltado de término buscado ──────────────────────────── */
.cg-sr-title mark { background: transparent; color: var(--blue); font-weight: 700; }

/* ── "Ver todos los resultados" ─────────────────────────────── */
.cg-sr-footer {
  display: block;
  padding: 12px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-ink);
  text-decoration: none;
  text-align: center;
  border-top: 1px solid var(--line);
  background: var(--bg);
  transition: background .12s;
}
.cg-sr-footer:hover { background: var(--line); }
.cg-sr-footer strong { color: var(--blue); }

/* ── Skeleton mientras carga ────────────────────────────────── */
.cg-sr-skeleton {
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cg-sr-skeleton span {
  display: block;
  height: 56px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--bg) 25%, var(--line) 50%, var(--bg) 75%);
  background-size: 200% 100%;
  animation: cg-shimmer .9s linear infinite;
}
@keyframes cg-shimmer {
  from { background-position: 200% center; }
  to   { background-position: -200% center; }
}

/* CG-002: el botón de búsqueda es un <button> y heredaba el fondo gris del estilo
   genérico de botones (WooCommerce/GeneratePress). Lo igualamos al resto de iconos. */
.cg-site-header button.header-icon-btn,
.cg-site-header button#cg-search-toggle {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  -webkit-appearance: none;
  appearance: none;
}
.cg-site-header button.header-icon-btn:hover { background: var(--bg) !important; }

/* CG-002 refuerzo (caja gris de la lupa NO desaparecía): un estilo de botón con !important
   ganaba a .cg-site-header button.header-icon-btn. Se out-specifica por ID (#cg-search-toggle). */
.cg-site-header #cg-search-toggle,
#cg-search-toggle.header-icon-btn {
  background: transparent !important; box-shadow: none !important; border: 0 !important;
  width: 42px !important; height: 42px !important; min-width: 0 !important; padding: 0 !important;
  -webkit-appearance: none !important; appearance: none !important;
}
.cg-site-header #cg-search-toggle:hover { background: var(--bg) !important; }
/* Iconos del header: cuenta y carrito en NAVY; lupa en teal (como el diseño correcto). */
.cg-site-header .header-icon-btn svg,
.cg-site-header a.header-icon-btn svg { color: #0d2233 !important; }
.cg-site-header #cg-search-toggle svg { color: var(--blue, #00c4cc) !important; }
