/* =========================================================================
   GirlsConnect — Site vitrine (MAQUETTE STATIQUE, sans appel API)
   Palette dérivée de src/theme/variables.scss
   ========================================================================= */

:root {
  --brand:      #ab2270;
  --brand-2:    #d32675;
  --brand-3:    #d4145a;
  --purple:     #a1529c;
  --pink:       #f58dd4;
  --pink-soft:  #f5e8ef;
  --cream:      #faf7f5;
  --ink:        #2e2e47;
  --muted:      #6b6b7b;
  --line:       #ece6ea;
  --white:      #ffffff;

  --grad: linear-gradient(135deg, #d4145a 0%, #ab2270 48%, #a1529c 100%);
  --grad-soft: linear-gradient(135deg, #fff0f7 0%, #f7ecff 100%);

  --radius:     18px;
  --radius-lg:  28px;
  --shadow:     0 18px 50px -20px rgba(171, 34, 112, .35);
  --shadow-sm:  0 8px 24px -12px rgba(46, 46, 71, .25);

  --maxw: 1140px;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 { line-height: 1.15; margin: 0; font-weight: 700; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-2);
  background: var(--pink-soft);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section { padding: 92px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -.02em; }
.section-head p { color: var(--muted); font-size: 17px; margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: inherit; font-weight: 600; font-size: 15px;
  padding: 13px 24px; border-radius: 100px; cursor: pointer;
  border: 0; transition: transform .15s ease, box-shadow .2s ease, background .2s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { box-shadow: 0 22px 60px -18px rgba(171,34,112,.55); transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--brand); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--brand-2); color: var(--brand-2); }

/* ---------- Store badges (badges officiels Apple / Google) ---------- */
.stores { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.store { display: inline-flex; transition: transform .15s ease; }
.store img { height: 52px; width: auto; display: block; }
.store:hover { transform: translateY(-2px); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; letter-spacing: -.01em; }
.brand img { height: 34px; width: auto; }
.brand .gc { color: var(--ink); }
.brand .gc b { color: var(--brand-2); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 18px; flex-wrap: nowrap; white-space: nowrap; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--ink); opacity: .82; transition: opacity .2s, color .2s; }
.nav-links a:hover { opacity: 1; color: var(--brand-2); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 70px 0 90px; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 55% at 85% 8%, rgba(245,141,212,.30), transparent 60%),
    radial-gradient(50% 50% at 5% 90%, rgba(161,82,156,.18), transparent 60%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(34px, 5.2vw, 56px); letter-spacing: -.03em; }
.hero h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 19px; color: var(--muted); margin: 22px 0 30px; max-width: 520px; }
.hero-actions { display: flex; flex-direction: column; gap: 20px; }
.trust { display: flex; align-items: center; gap: 14px; margin-top: 6px; }
.faces { display: flex; flex-shrink: 0; }
.faces img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2.5px solid #fff; margin-left: -10px; box-shadow: 0 2px 8px rgba(0,0,0,.12); }
.faces img:first-child { margin-left: 0; }
.trust-txt { font-size: 14px; color: var(--muted); }
.trust-txt b { color: var(--ink); }
.stars { color: #ffb400; letter-spacing: 2px; }

/* Phone mockup */
.phone-wrap { display: flex; justify-content: center; position: relative; }
.blob { position: absolute; width: 360px; height: 360px; background: var(--grad); filter: blur(10px); opacity: .25; border-radius: 46% 54% 60% 40% / 50% 42% 58% 50%; z-index: 0; }
.phone {
  position: relative; z-index: 1;
  width: 314px; height: 590px; background: #14141f; border-radius: 32px;
  padding: 12px; box-shadow: 0 40px 80px -30px rgba(46,46,71,.6); flex: none;
}
.phone-screen { position: relative; width: 100%; height: 100%; background: var(--cream); border-radius: 24px; overflow: hidden; }
/* Carrousel des captures d'app (défilement auto, cf. script.js) */
.pslider { display: flex; width: 100%; height: 100%; transition: transform .6s cubic-bezier(.7,0,.2,1); }
.pslider.no-anim { transition: none; }
.pslide { flex: 0 0 100%; height: 100%; }
.pslide img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Stats ---------- */
.stats { background: var(--ink); color: #fff; }
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-top: 40px; padding-bottom: 40px; }
.stat { text-align: center; }
.stat .num { font-size: clamp(26px, 4vw, 38px); font-weight: 700; background: linear-gradient(135deg,#ff8fc7,#f5c0ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lab { font-size: 13px; opacity: .7; margin-top: 2px; }

/* ---------- Features ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: transform .2s ease, box-shadow .25s ease, border-color .2s;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.f-icon { width: 52px; height: 52px; border-radius: 15px; background: var(--grad-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.f-icon svg { width: 26px; height: 26px; stroke: var(--brand-2); fill: none; stroke-width: 1.8; }
.feature h3 { font-size: 18px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.step { text-align: center; position: relative; }
.step .n {
  width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700; box-shadow: var(--shadow);
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; margin: 0; }

/* ---------- Activités (mock) ---------- */
.act { background: var(--grad-soft); }
.act-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.act-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .25s ease; display: flex; flex-direction: column;
}
.act-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.act-card .top { padding: 16px 18px; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: space-between; }
.act-card .top.online { background: linear-gradient(135deg,#7a4bd0,#a1529c); }
.act-card .top .when { font-size: 13px; font-weight: 600; opacity: .95; }
.act-card .top .kind { font-size: 11px; font-weight: 700; background: rgba(255,255,255,.22); padding: 4px 10px; border-radius: 100px; }
.act-card .em { font-size: 30px; padding: 16px 18px 0; }
.act-card .cover { width: 100%; height: 150px; object-fit: cover; display: block; }
.act-card .body { padding: 6px 18px 18px; }
.act-card h3 { font-size: 17px; margin-bottom: 8px; }
.act-card .desc { font-size: 13.5px; color: var(--muted); line-height: 1.45; margin: 0 0 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.act-card .where { font-size: 13.5px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.act-card .where svg { width: 15px; height: 15px; stroke: var(--brand-2); fill: none; stroke-width: 1.8; }
.act-card .foot { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.act-card .cnt { font-size: 13px; color: var(--ink); font-weight: 600; }
.act-card .cnt span { color: var(--muted); font-weight: 500; }
.act-card .go { font-size: 13px; font-weight: 600; color: var(--brand-2); text-decoration: none; cursor: pointer; }
.act-card .go:hover { text-decoration: underline; }
/* ---------- Testimonials ---------- */
.tg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; }
.tcard .q { font-size: 15px; color: var(--ink); margin: 0 0 18px; }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.tcard .who .nm { font-weight: 600; font-size: 14px; }
.tcard .who .lo { font-size: 12px; color: var(--muted); }
.tcard .stars { font-size: 13px; margin-bottom: 12px; }

/* ---------- CTA band ---------- */
.cta { padding: 0 0 92px; }
.cta-box {
  background: var(--grad); color: #fff; border-radius: var(--radius-lg);
  padding: 56px 40px; text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.cta-box::after { content: ''; position: absolute; width: 300px; height: 300px; background: rgba(255,255,255,.12); border-radius: 50%; top: -120px; right: -80px; }
.cta-box h2 { font-size: clamp(26px, 4vw, 38px); letter-spacing: -.02em; position: relative; }
.cta-box p { font-size: 17px; opacity: .92; margin: 14px auto 28px; max-width: 480px; position: relative; }
.cta-box .stores { justify-content: center; position: relative; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #fff; padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer .brand-chip { display: inline-flex; align-items: center; gap: 8px; background: #fff; padding: 8px 12px; border-radius: 12px; margin-bottom: 16px; }
.footer .brand-chip img { height: 28px; }
.footer .brand-chip .gc { font-size: 16px; font-weight: 700; color: var(--ink); }
.footer .brand-chip .gc b { color: var(--brand-2); }
.footer .about { font-size: 14px; color: rgba(255,255,255,.6); max-width: 280px; }
.footer h4 { font-size: 14px; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { font-size: 14px; color: rgba(255,255,255,.78); transition: color .2s; }
.footer ul a:hover { color: var(--pink); }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.socials a:hover { background: var(--brand-2); }
.socials svg { width: 18px; height: 18px; fill: #fff; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: rgba(255,255,255,.55); }

/* ---------- Partenaires ---------- */
.partners { background: #fff; border-top: 1px solid var(--line); }
.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.partner {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 22px; text-align: center;
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s;
}
.partner:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; background: #fff; }
.partner .p-em { font-size: 36px; line-height: 1; margin-bottom: 14px; }
.partner h3 { font-size: 16.5px; margin-bottom: 8px; }
.partner p { color: var(--muted); font-size: 14px; margin: 0; }
.partners-cta { text-align: center; margin-top: 44px; }
.partners-cta p { color: var(--muted); font-size: 16px; margin: 0 0 18px; }

/* ---------- Sous-pages (FAQ, légal, partenaires) ---------- */
.page-hero { position: relative; overflow: hidden; padding: 70px 0 46px; text-align: center; }
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(55% 60% at 85% 0%, rgba(245,141,212,.28), transparent 60%),
    radial-gradient(45% 55% at 8% 100%, rgba(161,82,156,.14), transparent 60%);
}
.page-hero h1 { font-size: clamp(30px, 4.6vw, 46px); letter-spacing: -.025em; }
.page-hero p.lead { font-size: 17.5px; color: var(--muted); margin: 16px auto 0; max-width: 620px; }
.page-content { padding: 26px 0 92px; }

/* Documents (CGU, confidentialité, mineurs) */
.doc {
  max-width: 800px; margin: 0 auto; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 46px 48px;
}
.doc-updated { font-size: 13px; color: var(--muted); margin: 0 0 28px; }
.doc h2 { font-size: 20px; margin: 34px 0 12px; letter-spacing: -.01em; }
.doc h2:first-of-type { margin-top: 0; }
.doc h3 { font-size: 16px; margin: 22px 0 8px; }
.doc p, .doc li { font-size: 15px; color: #4a4a5e; }
.doc p { margin: 0 0 14px; }
.doc ul { margin: 0 0 14px; padding-left: 22px; }
.doc li { margin-bottom: 6px; }
.doc a { color: var(--brand-2); font-weight: 500; }
.doc a:hover { text-decoration: underline; }
.doc mark { background: #fff3c9; padding: 1px 6px; border-radius: 6px; font-weight: 600; }
.doc .doc-callout {
  background: var(--pink-soft); border-radius: 14px; padding: 16px 20px;
  font-size: 14.5px; margin: 0 0 22px;
}

/* FAQ (accordéon) */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-status { text-align: center; color: var(--muted); font-size: 15px; padding: 30px 0; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: box-shadow .2s ease; }
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer; user-select: none;
  padding: 19px 24px; font-weight: 600; font-size: 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--pink-soft); color: var(--brand-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 600; transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); background: var(--brand-2); color: #fff; }
.faq-a { padding: 0 24px 20px; color: var(--muted); font-size: 15px; }
.faq-a p { margin: 0 0 10px; }
.faq-a p:last-child, .faq-a ul:last-child { margin-bottom: 0; }
.faq-a ul { margin: 0 0 10px; padding-left: 20px; }
.faq-a a { color: var(--brand-2); font-weight: 500; }
.faq-a a:hover { text-decoration: underline; }

/* Formulaire (devenir partenaire) */
.form-card {
  max-width: 680px; margin: 0 auto; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 42px 40px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--cream); outline: none; transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand-2); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.form-actions { margin-top: 24px; text-align: center; }
.form-actions .btn[disabled] { opacity: .6; pointer-events: none; }
.form-note { font-size: 12.5px; color: var(--muted); text-align: center; margin: 14px 0 0; }
/* Honeypot anti-spam : hors écran, invisible et hors tabulation */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
/* Message de retour après envoi du formulaire */
.form-status { font-size: 14px; font-weight: 600; text-align: center; margin: 16px 0 0; display: none; }
.form-status.show { display: block; }
.form-status.ok { color: #1a7f52; }
.form-status.err { color: #c0392b; }

/* Footer compact des sous-pages */
.footer-mini { padding: 36px 0 26px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,.78); transition: color .2s; }
.footer-links a:hover { color: var(--pink); }
.footer-mini .foot-bottom { margin-top: 24px; justify-content: center; text-align: center; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { align-items: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .stores { justify-content: center; }
  .trust { justify-content: center; }
  .phone-wrap { margin-top: 20px; }
  .features-grid, .steps, .act-grid, .tg { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* Menu : bascule en burger dès que le menu horizontal manque de place
   (6 liens + logo + SÉLECTEUR DE LANGUE + bouton, en 7 langues de largeurs
   variables). Seuil relevé à la largeur max du conteneur (--maxw 1140) pour
   éviter la zone « entre les deux » où le nav se tasse / se chevauche. */
@media (max-width: 1140px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 18px 22px; gap: 16px; align-items: flex-start;
  }
  .burger { display: block; }
}
@media (max-width: 720px) {
  .stats .container { grid-template-columns: 1fr 1fr; gap: 28px; }
  .section { padding: 64px 0; }
}
@media (max-width: 720px) {
  .form-grid { grid-template-columns: 1fr; }
  .doc { padding: 32px 24px; }
  .form-card { padding: 32px 24px; }
}
@media (max-width: 540px) {
  .features-grid, .steps, .act-grid, .tg, .partners-grid, .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  /* Header compact : brand + sélecteur (globe) + bouton + burger sur une ligne, sans chevauchement */
  .brand { gap: 7px; font-size: 15px; }
  .brand img { height: 26px; }
  .nav-cta { gap: 6px; }
  .nav .btn { padding: 8px 12px; font-size: 13px; }
}
@media (max-width: 360px) {
  /* Très petits écrans : icône seule, le wordmark disparaît */
  .brand .gc { display: none; }
}

/* ── Sélecteur de langue (i18n, injecté dans .nav-cta par build-i18n.mjs) ── */
.nav-cta { display: flex; align-items: center; gap: 10px; }
.lang-switch {
  appearance: none;
  -webkit-appearance: none;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background-color: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 9px 30px 9px 13px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b6b7b' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 13px;
  transition: border-color .2s;
}
.lang-switch:hover { border-color: var(--brand); }
/* Liste déroulante native lisible même quand le libellé fermé est masqué (mobile). */
.lang-switch option { color: var(--ink); background: #fff; }

/* Petit écran : le sélecteur devient une icône 🌐 seule (nom de langue fermé masqué)
   pour que brand + sélecteur + bouton + burger tiennent sur une ligne. La liste
   native (au tap) affiche toujours les noms complets. */
@media (max-width: 560px) {
  .lang-switch {
    width: 38px;
    padding: 9px 0;
    color: transparent;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232e2e47' stroke-width='1.7'><circle cx='12' cy='12' r='9'/><line x1='3' y1='12' x2='21' y2='12'/><path d='M12 3c2.6 2.6 2.6 15.4 0 18M12 3c-2.6 2.6-2.6 15.4 0 18'/></svg>");
    background-position: center;
    background-size: 18px;
  }
}
