/* ==============================================
   Pedicure by Gulnara – stylesheet v12
   ============================================== */

/* --- Tokens --- */
:root {
  --brand:    #0ea5a4;
  --brand2:   #16c3b0;
  --brand-dk: #0b8a89;
  --ink:      #111827;
  --ink-soft: #374151;
  --muted:    #6b7280;
  --line:     #e5e7eb;
  --bg:       #ffffff;
  --bg-soft:  #f9fafb;
  --accent:   #b8e0e8;
  --warm:     #7a5d49;
  --warm-lt:  #f5ede8;
  --maxw:     1100px;
  --pad:      clamp(16px, 4vw, 32px);
  --r:        14px;
  --gap:      clamp(20px, 3vw, 32px);
  /* vertical rhythm */
  --section:  clamp(56px, 8vw, 96px);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { font-size: 100%; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}
img, svg { display: block; max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 600; }

/* --- Utilities --- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.muted { color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* =====================
   Header & Nav
   ===================== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px var(--pad);
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo { flex-shrink: 0; display: flex; align-items: center; }
.logo img { height: 72px; width: auto; }

.menu { flex: 1; display: flex; justify-content: center; }
.menu ul { display: flex; gap: 2px; align-items: center; }
.menu a {
  display: inline-block;
  padding: 8px 13px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink-soft);
  transition: background .15s, color .15s;
}
.menu a:hover { color: var(--brand); background: #f0fafa; }
.menu a.active { color: var(--brand); font-weight: 600; background: #e8f8f8; }
.menu a.cta {
  margin-left: 10px;
  background: var(--brand);
  color: #fff;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: background .15s, transform .15s;
}
.menu a.cta:hover { background: var(--brand-dk); transform: translateY(-1px); }

.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }

.lang-switch { display: flex; gap: 2px; font-size: 0.82rem; }
.lang-switch .lang {
  border: none; background: transparent; padding: 4px 8px;
  cursor: pointer; opacity: 0.45; font: inherit; border-radius: 6px;
  transition: opacity .15s, background .15s;
}
.lang-switch .lang.active { font-weight: 700; opacity: 1; color: var(--brand); background: #e8f8f8; }
.lang-switch .lang:hover:not(.active) { opacity: 0.75; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  border: 1px solid var(--line); border-radius: 10px; background: #fff;
  cursor: pointer; -webkit-tap-highlight-color: transparent;
}
.nav-toggle .bar { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#navOverlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.3); z-index: 98; }
#navOverlay.show { display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .menu {
    position: fixed; left: 0; right: 0; top: 94px;
    background: #fff; border-bottom: 1px solid var(--line);
    display: none; z-index: 99; overflow-y: auto; max-height: 75vh;
  }
  .menu.open { display: block; }
  .menu ul { flex-direction: column; gap: 0; padding: 8px 0; }
  .menu a { display: block; padding: 14px 20px; border-radius: 0; border-bottom: 1px solid #f3f4f6; font-size: 1rem; }
  .menu li:last-child a { border-bottom: 0; }
  .menu a.cta { margin-left: 0; border-radius: 0; }
}

/* =====================
   HERO — left-aligned, teal wash
   ===================== */
.hero {
  position: relative;
  min-height: 480px;
  height: 52svh;
  overflow: hidden;
}
@supports not (height: 1svh) { .hero { height: 52vh; } }

.hero > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}

/* Signature: gradient from left-teal to right-dark, text left-aligned */
.hero .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,130,130,.72) 0%,
    rgba(10,130,130,.42) 35%,
    rgba(0,0,0,.45) 100%
  );
}

.hero .title {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  padding: 0 var(--pad);
}

.hero .title-inner {
  max-width: 600px;
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 14px;
}

.hero h1 {
  font-size: clamp(1.75rem, 3.5vw + .5rem, 3rem);
  font-weight: 700; color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.25);
  line-height: 1.15;
}

.hero .sub {
  font-size: clamp(.9rem, 1.2vw + .4rem, 1.1rem);
  color: rgba(255,255,255,.88);
  font-weight: 300;
}

.hero .btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--brand-dk);
  padding: 13px 24px; border-radius: 999px;
  font-weight: 700; font-size: .95rem;
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
  transition: transform .15s, box-shadow .15s;
}
.hero .btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.25); }

@media (max-width: 600px) {
  .hero { height: 56svh; min-height: 380px; }
  .hero .title-inner { max-width: 100%; }
}

/* =====================
   Section spacing system
   ===================== */
.section { padding: var(--section) 0; }
.section + .section { padding-top: 0; }

/* =====================
   Intro 2-col (homepage)
   ===================== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}

.intro-photo {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.intro-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.intro-text { display: flex; flex-direction: column; gap: 20px; }

.eyebrow {
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand);
}

.intro-text h2 {
  font-size: clamp(1.5rem, 2.2vw + .5rem, 2.2rem);
  color: var(--ink); font-weight: 700; line-height: 1.2;
}

.intro-text p { color: var(--ink-soft); font-size: .95rem; }

.trust-pills { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.trust-pill {
  display: flex; align-items: center; gap: 10px;
  font-size: .875rem; color: var(--ink-soft);
}
.trust-pill .icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--warm-lt); border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

@media (max-width: 700px) {
  .intro-grid { grid-template-columns: 1fr; }
  .intro-photo { aspect-ratio: 16/9; }
}

/* =====================
   Diensten kaarten (homepage)
   ===================== */
.section-header { text-align: center; margin-bottom: 36px; }
.section-header h2 { font-size: clamp(1.4rem, 2vw + .5rem, 2rem); margin-bottom: 8px; }
.section-header p { color: var(--muted); max-width: 520px; margin: 0 auto; font-size: .95rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow .18s, transform .18s, border-color .18s;
  cursor: default;
}
.service-card:hover {
  box-shadow: 0 8px 28px rgba(14,165,164,.12);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.service-card .sc-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #e8f8f8, #d0f0ee);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.service-card h3 { font-size: 1rem; font-weight: 600; color: var(--warm); }
.service-card p { font-size: .875rem; color: var(--muted); line-height: 1.6; flex: 1; }
.service-card .sc-price {
  font-size: 1.1rem; font-weight: 700; color: var(--ink);
  padding-top: 6px; border-top: 1px solid var(--line);
}

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .services-grid { grid-template-columns: 1fr; } }

/* =====================
   Gallery strip
   ===================== */
.gallery-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 10px;
  height: 340px;
}
.gallery-strip img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: var(--r);
  display: block;
}

@media (max-width: 700px) {
  .gallery-strip {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
  .gallery-strip img { height: 200px; }
  .gallery-strip img:last-child { display: none; }
}

/* =====================
   Reviews
   ===================== */
.reviews-bg { background: var(--bg-soft); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.review-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }
.review-text { font-size: .9rem; color: var(--ink-soft); line-height: 1.7; flex: 1; font-style: italic; }
.review-author { font-size: .82rem; font-weight: 600; color: var(--warm); }

@media (max-width: 768px) { .reviews-grid { grid-template-columns: 1fr; } }

/* =====================
   CTA blok (dark band)
   ===================== */
.cta-band {
  background: linear-gradient(135deg, #0b6f6e 0%, #0ea5a4 100%);
  text-align: center;
  padding: clamp(40px, 6vw, 72px) var(--pad);
}
.cta-band h2 {
  font-size: clamp(1.4rem, 2.5vw + .5rem, 2rem);
  color: #fff; margin-bottom: 10px;
}
.cta-band p { color: rgba(255,255,255,.82); margin-bottom: 28px; font-size: .95rem; }
.cta-band .btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--brand-dk);
  padding: 15px 32px; border-radius: 999px;
  font-weight: 700; font-size: 1rem;
  box-shadow: 0 6px 24px rgba(0,0,0,.15);
  transition: transform .15s, box-shadow .15s;
}
.cta-band .btn-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.2); }

/* =====================
   Behandelingen pagina
   ===================== */
.page-header {
  text-align: center;
  padding: clamp(32px,5vw,64px) var(--pad) clamp(20px,3vw,36px);
}
.page-header h1 {
  font-size: clamp(1.8rem, 3vw + .5rem, 2.6rem);
  margin-bottom: 10px;
}
.page-header p { color: var(--muted); max-width: 600px; margin: 0 auto; }

.seo-intro {
  background: linear-gradient(135deg, #f0fafa, #faf6f3);
  border: 1px solid var(--accent);
  border-radius: var(--r);
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: .9rem; color: var(--muted); line-height: 1.75;
}
.seo-intro strong { color: var(--warm); }

.location-bar {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--accent);
  border-radius: var(--r); padding: 13px 18px; margin-bottom: 28px;
  font-size: .875rem; color: var(--muted);
}
.location-bar strong { color: var(--ink); }
.location-bar a {
  margin-left: auto; background: var(--brand); color: #fff;
  padding: 7px 14px; border-radius: 999px; font-weight: 600;
  font-size: .82rem; white-space: nowrap; transition: opacity .15s;
}
.location-bar a:hover { opacity: .85; }
@media (max-width: 560px) {
  .location-bar a { margin-left: 0; width: 100%; text-align: center; display: block; }
}

/* Behandelingen list */
.treatments { display: grid; gap: 12px; }

.treat {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--gap); align-items: center;
  background: #fff; border: 1px solid #e8f0f0;
  border-radius: 18px; padding: 22px;
  box-shadow: 0 2px 12px rgba(14,165,164,.05);
  transition: box-shadow .18s;
}
.treat:hover { box-shadow: 0 6px 24px rgba(14,165,164,.10); }
.treat:nth-child(even) { grid-template-columns: 1.1fr 1fr; }
.treat:nth-child(even) .media { order: 2; }
.treat:nth-child(even) .copy  { order: 1; }

.treat .media {
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/3; background: #f8f8f8;
}
.treat .media img { width: 100%; height: 100%; object-fit: cover; }
.treat .copy h3 {
  font-size: clamp(1rem, 1.2vw + .5rem, 1.2rem);
  color: var(--warm); margin-bottom: 8px;
}
.treat .copy p { font-size: .9rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 6px; }
.treat .copy ul { padding-left: 1.2rem; list-style: disc; }
.treat .copy li { font-size: .9rem; color: var(--ink-soft); margin-bottom: 3px; }

@media (max-width: 820px) {
  .treat, .treat:nth-child(even) { grid-template-columns: 1fr; }
  .treat:nth-child(even) .media { order: 0; }
  .treat:nth-child(even) .copy  { order: 0; }
  .treat .media { aspect-ratio: 16/9; }
}

/* =====================
   Tarieven
   ===================== */
.price-category {
  display: flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand);
  margin: 36px 0 14px;
}
.price-category::after { content: ""; flex: 1; height: 1px; background: var(--accent); }

.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px; margin-bottom: 4px;
}
.price-card {
  background: #fff; border: 1px solid var(--accent);
  border-radius: var(--r); padding: 18px 20px;
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: 0 2px 10px rgba(14,165,164,.05);
  transition: box-shadow .18s, transform .18s;
}
.price-card:hover { box-shadow: 0 6px 20px rgba(14,165,164,.12); transform: translateY(-2px); }
.pc-name { font-weight: 600; color: var(--warm); font-size: .95rem; }
.pc-desc { font-size: .83rem; color: var(--muted); line-height: 1.55; flex: 1; }
.pc-price { font-size: 1.25rem; font-weight: 700; color: var(--ink); margin-top: 6px; }
.pc-note { font-size: .72rem; color: #9a8f86; font-style: italic; }

.policy-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 40px;
}
.policy-card {
  background: var(--bg-soft); border: 1px solid var(--accent);
  border-radius: var(--r); padding: 20px 22px;
}
.policy-card .pc-icon { font-size: 1.5rem; margin-bottom: 8px; }
.policy-card h3 { font-size: .95rem; font-weight: 600; color: var(--warm); margin-bottom: 6px; }
.policy-card p { font-size: .875rem; color: var(--muted); line-height: 1.7; }

@media (max-width: 560px) {
  .policy-grid { grid-template-columns: 1fr; }
  .price-cards  { grid-template-columns: 1fr; }
}

/* =====================
   Contact
   ===================== */
.contact-grid {
  display: grid; grid-template-columns: 1.2fr .8fr;
  gap: var(--gap); align-items: start;
}
.contact-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); padding: 28px;
}
.contact-card h2 { font-size: 1.15rem; margin-bottom: 18px; }
.contact-card ul { display: grid; gap: 10px; margin-bottom: 24px; }
.contact-card li { font-size: .9rem; color: var(--muted); }
.contact-card li a { color: var(--brand); font-weight: 500; }
.contact-card li a:hover { text-decoration: underline; }

.map-wrap {
  border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; min-height: 420px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap { min-height: 300px; }
  .map-wrap iframe { min-height: 300px; }
}

/* Contact form */
.contact-form { margin-top: 22px; }
.form-row { display: grid; gap: 5px; margin-bottom: 14px; }
.form-row label { font-size: .83rem; font-weight: 600; color: var(--ink); }
.form-row input, .form-row textarea {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--line); border-radius: 10px;
  font: inherit; font-size: .9rem; color: var(--ink);
  background: #fafafa; transition: border-color .15s;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none; border-color: var(--brand); background: #fff;
}
.form-row textarea { resize: vertical; }
.form-actions { margin-top: 4px; }
.btn-submit {
  display: inline-block; background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff; padding: 12px 28px; border: none; border-radius: 999px;
  font: inherit; font-weight: 700; font-size: .95rem; cursor: pointer;
  transition: opacity .15s, transform .15s;
}
.btn-submit:hover { opacity: .88; transform: translateY(-1px); }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 12px; }
.form-note a { color: var(--brand); }
#formStatus { margin-top: 8px; font-size: .875rem; }

/* map actions */
.map-actions { padding: 12px; background: #fff; border-top: 1px solid var(--line); }
.map-actions a {
  display: block; text-align: center;
  background: var(--brand); color: #fff;
  padding: 10px; border-radius: 10px;
  font-weight: 600; font-size: .875rem;
}

/* =====================
   Over pagina
   ===================== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: var(--gap); align-items: start;
}
.about-photo-wrap {
  border-radius: var(--r); overflow: hidden;
  aspect-ratio: 3/4; background: #f0f0f0;
}
.about-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-content { display: flex; flex-direction: column; gap: 20px; }
.about-content h1 { font-size: clamp(1.5rem, 2.5vw + .5rem, 2.2rem); }

@media (max-width: 700px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { aspect-ratio: 16/9; }
}

/* Info cards grid (tarieven/over) */
.info-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 28px;
}
.info-grid .card {
  background: #fff; border: 1px solid var(--accent);
  border-radius: var(--r); padding: 20px 22px;
  box-shadow: 0 2px 10px rgba(14,165,164,.05);
}
.info-grid .card h2 { font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.info-grid .card p { font-size: .875rem; color: var(--muted); line-height: 1.7; }
@media (max-width: 560px) { .info-grid { grid-template-columns: 1fr; } }

/* =====================
   Contact pills (homepage info-card)
   ===================== */
.contact-pills-block { display: grid; gap: 8px; }
.contact-pill-row { display: flex; align-items: center; gap: 10px; font-size: .875rem; }
.contact-pill-row .cp-label {
  font-size: .72rem; font-weight: 700; color: #9a8f86;
  text-transform: uppercase; letter-spacing: .05em; min-width: 65px;
}
.contact-pill-row a { color: var(--brand); font-weight: 600; }
.contact-pill-row a:hover { text-decoration: underline; }

/* =====================
   WhatsApp float
   ===================== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 52px; height: 52px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
  transition: transform .18s, box-shadow .18s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.wa-float svg { width: 26px; height: 26px; fill: #fff; }
@media (max-width: 480px) { .wa-float { bottom: 14px; right: 14px; } }

/* =====================
   Footer
   ===================== */
footer { background: #111827; color: #9ca3af; }

.foot-top {
  max-width: var(--maxw); margin: 0 auto;
  padding: 52px var(--pad) 36px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 28px;
}
.foot-col h4 {
  color: #fff; font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px;
}
.foot-col ul { display: grid; gap: 7px; }
.foot-col li, .foot-col p { font-size: .83rem; line-height: 1.7; }
.foot-col a { color: #9ca3af; transition: color .15s; }
.foot-col a:hover { color: #fff; }
.foot-logo img { height: 52px; filter: brightness(0) invert(1); opacity: .75; margin-bottom: 12px; }
.foot-logo p { font-size: .83rem; line-height: 1.6; }

.foot-bottom {
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px var(--pad);
  border-top: 1px solid #1f2937;
  display: flex; justify-content: space-between;
  font-size: .76rem; color: #4b5563; flex-wrap: wrap; gap: 8px;
}
.foot-bottom a { color: #4b5563; }
.foot-bottom a:hover { color: #9ca3af; }

@media (max-width: 768px) { .foot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) {
  .foot-top { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; text-align: center; }
}

/* =====================
   Reduced motion
   ===================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
