/* ============================================================
   Tiptop Klip — styles.css
   Moderne barber-stil: sort baggrund, rød + mørkerød accent
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --bg-2: #121212;
  --bg-3: #1a1a1a;
  --surface: #181818;
  --surface-2: #1f1f1f;
  --border: #262626;
  --border-light: #333;

  --red: #e11d2a;          /* lys rød (primary) */
  --red-hover: #f0313d;
  --red-dark: #8b0f1a;     /* mørkere rød (accent) */
  --red-deep: #5a0a11;

  --text: #f5f5f5;
  --text-muted: #a3a3a3;
  --text-dim: #707070;

  --gold: #d4af37;

  --font-display: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --radius: 8px;
  --radius-lg: 14px;
  --shadow-soft: 0 4px 20px rgba(0,0,0,.35);
  --shadow-red: 0 8px 30px rgba(225,29,42,.25);

  --container: 1200px;
  --transition: 200ms ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; -webkit-tap-highlight-color: transparent; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  padding-bottom: env(safe-area-inset-bottom);
}
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}
button, a { touch-action: manipulation; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-hover); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 900; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.25rem; font-weight: 700; }
p { color: var(--text-muted); }
button { font-family: inherit; cursor: pointer; }

/* Utilities */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.text-red { color: var(--red); }
.section { padding: 90px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 { margin-bottom: 14px; color: var(--text); }
.section-sub { font-size: 1.05rem; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 14px;
}
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--red); color: #fff; padding: 10px 16px; z-index: 1000;
}
.skip-link:focus { left: 10px; top: 10px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover { background: var(--red-hover); color: #fff; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,.25);
}
.btn-ghost:hover { border-color: var(--red); color: var(--red); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--red-dark);
}
.btn-outline:hover { background: var(--red-dark); color: #fff; border-color: var(--red-dark); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 24px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo-tip { color: var(--red); }
.logo-top { color: var(--text); }
.logo-klip { color: var(--text); font-style: italic; }
.logo:hover { color: var(--red); }

.main-menu {
  display: flex; align-items: center; gap: 32px;
  list-style: none; padding: 0;
}
.main-menu a {
  color: var(--text);
  font-weight: 500; font-size: 0.95rem;
}
.main-menu a:not(.btn):hover { color: var(--red); }

.menu-toggle {
  display: none;
  background: transparent; border: none; padding: 8px;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.menu-toggle span {
  width: 24px; height: 2px; background: var(--text);
  transition: all var(--transition);
}

/* Hero */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(30%) brightness(0.55);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(139,15,26,.35) 0%, transparent 60%),
    linear-gradient(90deg, rgba(10,10,10,.92) 0%, rgba(10,10,10,.55) 55%, rgba(10,10,10,.3) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 680px;
}
.hero-content h1 { margin: 14px 0 22px; color: #fff; }
.hero-content .lead {
  font-size: 1.15rem; color: #d4d4d4;
  max-width: 540px; margin-bottom: 36px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-badges {
  list-style: none; padding: 0;
  display: flex; flex-wrap: wrap; gap: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 24px;
}
.hero-badges li {
  color: var(--text-muted); font-size: 0.9rem;
}
.hero-badges strong {
  display: block; color: var(--red); font-size: 1.4rem;
  font-family: var(--font-display); font-weight: 900;
}

/* About */
.about { background: var(--bg-2); }
.about-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 64px; align-items: center;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; }
.feature-list {
  list-style: none; padding: 0;
  margin-top: 24px;
}
.feature-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--red-dark); color: #fff;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0;
}
.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
}

/* Prices */
.prices { background: var(--bg); }
.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 20px;
}
.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex; flex-direction: column;
  transition: transform var(--transition), border-color var(--transition);
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--red-dark);
}
.price-card h3 { color: var(--text); margin-bottom: 10px; font-size: 1.5rem; }
.price-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; min-height: 66px; }
.price-amount {
  font-family: var(--font-display);
  font-size: 1.4rem; color: var(--text-muted);
  margin-bottom: 24px;
}
.price-amount span {
  font-size: 3.2rem; font-weight: 900; color: var(--red);
  margin-right: 6px;
}
.price-card--featured {
  background: linear-gradient(180deg, var(--surface-2) 0%, #1c0e0f 100%);
  border-color: var(--red-dark);
  box-shadow: var(--shadow-red);
}
.price-card--featured h3 { color: #fff; }
.badge {
  position: absolute; top: -12px; right: 28px;
  background: var(--red); color: #fff;
  font-size: 0.72rem; font-weight: 700;
  padding: 5px 14px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.price-note {
  text-align: center; margin-top: 40px;
  color: var(--text-muted); font-size: 0.95rem;
}

/* Gallery */
.gallery { background: var(--bg-2); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 3/4;
  background: var(--surface);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 400ms ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* Reviews */
.reviews { background: var(--bg); }
.rating-summary {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 18px;
  padding: 10px 20px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
}
.rating-summary .stars { color: var(--gold); letter-spacing: 2px; }
.rating-summary strong { color: var(--text); }

.review-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.review::before {
  content: "\201C"; position: absolute; top: -10px; left: 20px;
  font-family: var(--font-display); font-size: 5rem; color: var(--red-dark);
  line-height: 1;
}
.review p { color: var(--text); font-size: 1.02rem; margin-bottom: 20px; }
.review footer { border-top: 1px solid var(--border); padding-top: 14px; }
.review cite {
  display: block; font-style: normal; font-weight: 600; color: var(--text);
}
.review footer span {
  display: block; font-size: 0.82rem; color: var(--text-dim);
  margin-top: 3px;
}

/* Booking */
.booking {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.booking-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 64px; align-items: start;
}
.booking-info h2 { margin-bottom: 20px; }
.booking-info > p { margin-bottom: 32px; font-size: 1.05rem; }
.hours-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.hours-card h3 { margin-bottom: 16px; color: var(--text); }
.hours-list {
  display: grid; grid-template-columns: 1fr; gap: 8px;
}
.hours-list > div {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
}
.hours-list > div:last-child { border-bottom: none; }
.hours-list dt { color: var(--text); font-weight: 500; }
.hours-list dd { color: var(--text-muted); font-weight: 600; margin: 0; }
.hours-list .closed dd { color: var(--red-dark); }

/* Form */
.booking-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block; font-weight: 600;
  font-size: 0.9rem; color: var(--text);
  margin-bottom: 8px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  padding: 13px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225,29,42,0.18);
}
.form-row input[disabled],
.form-row select[disabled] { opacity: 0.55; cursor: not-allowed; }
.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23e11d2a' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-row input[type="date"] { color-scheme: dark; }
.form-help {
  display: block; margin-top: 6px;
  font-size: 0.82rem; color: var(--text-dim);
}
.form-help.is-error { color: var(--red); }
.form-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-footnote {
  font-size: 0.82rem; color: var(--text-dim);
  text-align: center; margin-top: 14px;
}
.form-success {
  margin-top: 20px; padding: 24px;
  background: rgba(16, 126, 32, 0.1);
  border: 1px solid rgba(16, 126, 32, 0.4);
  border-radius: var(--radius);
  text-align: center;
}
.form-success h3 { color: #4ade80; margin-bottom: 8px; }
.form-success p { color: var(--text); }

/* Contact */
.contact { background: var(--bg); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 48px; align-items: start;
}
.contact-address {
  font-style: normal;
  margin: 16px 0 24px;
  color: var(--text);
  font-size: 1.05rem;
}
.contact-address p { color: var(--text); margin-bottom: 10px; }
.contact-storefront {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  margin-top: 8px;
}
.map-wrap {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.map-wrap iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: invert(92%) hue-rotate(180deg);
}

/* Footer */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-grid p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; }
.footer-logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; margin-bottom: 10px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--text-muted); font-size: 0.92rem; }
.footer-links a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
  color: var(--text-dim); font-size: 0.85rem;
}
.footer-bottom p { color: var(--text-dim); }

/* Sticky CTA on mobile */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  left: 12px; right: 12px;
  background: var(--red); color: #fff;
  padding: 16px 20px;
  border-radius: 999px;
  text-align: center;
  font-weight: 700; font-size: 1rem;
  letter-spacing: 0.01em;
  z-index: 90;
  box-shadow: 0 10px 40px rgba(225,29,42,.45), 0 2px 8px rgba(0,0,0,.4);
  min-height: 54px;
  align-items: center;
  justify-content: center;
}
.sticky-cta:hover, .sticky-cta:focus { color: #fff; background: var(--red-hover); }
.sticky-cta::after {
  content: "→";
  margin-left: 8px;
  font-weight: 400;
  transition: transform var(--transition);
}
.sticky-cta:hover::after { transform: translateX(4px); }

/* ============================================================
   RESPONSIVE — Tablet (≤ 960px)
   ============================================================ */
@media (max-width: 960px) {
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }

  /* Menu */
  .menu-toggle { display: flex; }
  .main-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px 16px;
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: all var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,.5);
  }
  .main-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-menu li { width: 100%; }
  .main-menu a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
    min-height: 48px;
  }
  .main-menu a.btn { margin-top: 8px; border: none; }
  .main-menu li:last-child a { border-bottom: none; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Hero */
  .hero { min-height: auto; padding: 60px 0 80px; }
  .hero-content h1 { margin: 10px 0 18px; }
  .hero-content .lead { font-size: 1.05rem; margin-bottom: 28px; }
  .hero-cta { gap: 10px; margin-bottom: 36px; }
  .hero-badges { gap: 20px; padding-top: 20px; }

  /* Stacks */
  .about-grid,
  .booking-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media { order: -1; max-width: 440px; margin: 0 auto; }

  .price-grid,
  .review-grid { grid-template-columns: 1fr; gap: 20px; }
  .price-desc { min-height: auto; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .map-wrap { aspect-ratio: 16/11; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Sticky CTA */
  .sticky-cta { display: flex; }
  body { padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px)); }
  .site-header .main-menu .btn-primary { display: none; }
}

/* ============================================================
   RESPONSIVE — Phone (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 32px; }

  h1 { font-size: 2.1rem; line-height: 1.1; }
  h2 { font-size: 1.65rem; }
  h3 { font-size: 1.15rem; }

  /* Header smaller */
  .nav-container { min-height: 64px; }
  .logo { font-size: 1.4rem; }

  /* Hero */
  .hero { padding: 40px 0 72px; }
  .hero-content h1 { margin: 8px 0 14px; }
  .hero-content .lead {
    font-size: 1rem;
    margin-bottom: 24px;
    max-width: 420px;
  }
  .hero-cta {
    gap: 8px;
    margin-bottom: 28px;
    width: 100%;
  }
  .hero-cta .btn {
    flex: 1;
    min-width: 0;
    padding: 13px 16px;
    font-size: 0.92rem;
  }
  .hero-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 18px;
  }
  .hero-badges li {
    font-size: 0.78rem;
    line-height: 1.3;
  }
  .hero-badges strong { font-size: 1.15rem; }

  /* Section head */
  .eyebrow { font-size: 0.72rem; }
  .section-sub { font-size: 0.98rem; }

  /* About */
  .feature-list li { padding: 9px 0; font-size: 0.95rem; }

  /* Prices */
  .price-card { padding: 28px 22px; }
  .price-amount span { font-size: 2.8rem; }
  .price-card h3 { font-size: 1.35rem; }
  .badge { right: 22px; font-size: 0.68rem; }
  .price-note { font-size: 0.9rem; margin-top: 28px; }

  /* Gallery — 1 column på meget små skærme */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* Reviews */
  .rating-summary {
    font-size: 0.92rem;
    padding: 8px 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .review { padding: 24px 22px 22px; }
  .review p { font-size: 0.98rem; }
  .review::before { font-size: 4rem; top: -6px; left: 16px; }

  /* Booking */
  .booking-info > p { font-size: 1rem; margin-bottom: 24px; }
  .hours-card { padding: 22px; }
  .hours-list > div { padding: 7px 0; }
  .hours-list dt, .hours-list dd { font-size: 0.95rem; }

  /* Form */
  .booking-form { padding: 22px 18px; border-radius: 12px; }
  .form-row { margin-bottom: 16px; }
  .form-row label { font-size: 0.88rem; margin-bottom: 6px; }
  .form-row input,
  .form-row select,
  .form-row textarea {
    font-size: 16px;  /* prevents iOS Safari zoom on focus */
    padding: 13px 14px;
  }
  .form-grid-2 { grid-template-columns: 1fr; gap: 0; }
  .form-grid-2 .form-row { margin-bottom: 16px; }
  .form-footnote { font-size: 0.8rem; }
  .btn-lg { padding: 15px 24px; font-size: 0.98rem; }

  /* Contact */
  .contact-address { font-size: 1rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer { padding: 48px 0 calc(96px + env(safe-area-inset-bottom, 0px)); }
  .footer-bottom { padding-top: 18px; font-size: 0.8rem; }

  /* Sticky CTA */
  .sticky-cta {
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    left: 10px; right: 10px;
    padding: 14px 18px;
    font-size: 0.98rem;
    min-height: 52px;
  }
}

/* ============================================================
   RESPONSIVE — Very small phones (≤ 380px)
   ============================================================ */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  .hero-badges { gap: 6px; }
  .hero-badges li { font-size: 0.72rem; }
  .hero-badges strong { font-size: 1.05rem; }
  .hero-cta .btn { font-size: 0.88rem; padding: 12px 14px; }
  .logo { font-size: 1.25rem; }
  .nav-container { gap: 10px; }
}

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