/* ==========================================================================
   Hof Rhotert – Styles
   Farbpalette aus Logo & Flyer: Hof-Grün, Erdbeerrot, warmes Creme
   ========================================================================== */

:root {
  /* Hof Rhotert Farbpalette */
  --green-dark: #0E7A3F;       /* Logo-Grün dunkel */
  --green-mid: #1FA64E;         /* Logo-Grün mittel (Tannen) */
  --green-light: #E8F5EC;       /* sehr helles Grün, Hintergrund */
  --red: #E62828;               /* Erdbeerrot Flyer */
  --red-dark: #B81F1F;          /* Erdbeerrot dunkel */
  --yellow: #FFD93D;            /* Erdbeer-Punkte */
  --cream: #FBF8F3;             /* warmes Off-White */
  --ink: #1F2A22;               /* fast schwarz, mit Grünstich */
  --ink-soft: #4A5A4F;          /* gedämpfter Text */
  --line: #E2E8DE;              /* helle Linie */
  --white: #FFFFFF;

  /* Typografie */
  --font-sans: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Playfair Display", "Georgia", "Times New Roman", serif;

  /* Layout */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(31, 42, 34, 0.06);
  --shadow: 0 8px 30px rgba(31, 42, 34, 0.10);
  --shadow-lg: 0 18px 50px rgba(31, 42, 34, 0.16);
  --maxw: 1200px;
  --gap: clamp(1rem, 2vw, 1.5rem);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
p { margin: 0 0 1em; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-light);
  padding: .35rem .9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* ---------- Layout-Hilfen ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
section { padding-block: clamp(3rem, 7vw, 6rem); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(230,40,40,.28);
}
.btn-primary:hover { background: var(--red-dark); }
.btn-secondary {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-secondary:hover { background: var(--green-dark); color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { background: rgba(255,255,255,.15); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,248,243,.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .8rem;
}
.nav-logo { display: flex; align-items: center; gap: .75rem; }
.nav-logo img { width: 64px; height: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green-dark);
  line-height: 1.1;
}
.nav-logo-text small { display: block; font-size: .7rem; color: var(--ink-soft); font-family: var(--font-sans); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0; padding: 0;
}
.nav-links a {
  color: var(--ink);
  font-weight: 500;
  position: relative;
}
.nav-links a:hover { color: var(--green-dark); text-decoration: none; }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .2s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; gap: .6rem; align-items: center; }

/* Mobile-Menü */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: .4rem;
  color: var(--ink);
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.5rem 1.5rem;
    gap: 1rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-links.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-cta .btn { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 8vw, 6rem);
  background:
    radial-gradient(circle at 20% 20%, rgba(31,166,78,.08), transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(230,40,40,.08), transparent 50%),
    var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-content .eyebrow { background: rgba(255,255,255,.7); }
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
}
.hero h1 .accent { color: var(--red); }
.hero p.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-visual {
  position: relative;
  aspect-ratio: 5 / 6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14,122,63,.18));
}
.hero-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: .9rem 1.1rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: .8rem;
  z-index: 2;
}
.hero-badge-icon {
  width: 42px; height: 42px;
  background: var(--green-light);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--green-dark);
  font-size: 1.4rem;
}
.hero-badge-text { font-size: .92rem; line-height: 1.35; }
.hero-badge-text strong { display: block; color: var(--green-dark); }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 4 / 3; }
}

/* ---------- News-/Saison-Banner ---------- */
.news {
  padding-block: clamp(2rem, 4vw, 3rem);
  background: var(--cream);
}
.news[hidden] { display: none !important; }
.news-card {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--red) 0%, #B81F1F 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  box-shadow: 0 18px 50px rgba(230, 40, 40, 0.25);
  overflow: hidden;
  display: grid;
  gap: 1rem;
}
.news-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255, 217, 61, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.news-card::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.news-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  align-self: start;
  background: rgba(255, 255, 255, 0.18);
  padding: .35rem .85rem .35rem .65rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.news-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(255, 217, 61, 0.7);
  animation: news-pulse 2s ease-out infinite;
}
@keyframes news-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 217, 61, 0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(255, 217, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 217, 61, 0); }
}
.news-card h2 {
  position: relative;
  color: var(--white);
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  margin: 0;
}
.news-card p {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  margin: 0;
  max-width: 640px;
}
.news-meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: .6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.news-date { display: flex; flex-direction: column; }
.news-date-label {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
.news-date-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-top: .15rem;
}
.news-meta .btn-primary {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.news-meta .btn-primary:hover {
  background: var(--yellow);
  color: var(--ink);
}

@media (max-width: 560px) {
  .news-meta { flex-direction: column; align-items: flex-start; }
  .news-meta .btn { align-self: stretch; justify-content: center; }
}

/* ---------- Öffnungszeiten – zentrale, hervorgehobene Karte ---------- */
.hours {
  position: relative;
  background: var(--green-dark);
  color: var(--white);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.hours::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,217,61,.08), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(230,40,40,.10), transparent 45%);
  pointer-events: none;
}
.hours .container { position: relative; }
.hours-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.hours-card .eyebrow { background: var(--red); color: var(--white); }
.hours-card h2 { margin-bottom: .3em; }
.hours-card .sub { color: var(--ink-soft); margin-bottom: 2.2rem; }
.hours-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.hours-list li {
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 1.4rem 1.1rem;
  border: 2px solid transparent;
  transition: border-color .2s ease, transform .2s ease;
}
.hours-list li:hover { border-color: var(--green-mid); transform: translateY(-3px); }
.hours-day {
  font-weight: 600;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
  margin-bottom: .4rem;
}
.hours-time {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}
.hours-note {
  margin-top: 1.8rem;
  font-size: .92rem;
  color: var(--ink-soft);
}
.hours-note strong { color: var(--red); }

@media (max-width: 720px) {
  .hours-list { grid-template-columns: 1fr; }
}

/* ---------- Produkte ---------- */
.products { background: var(--cream); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-season {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--white);
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 600;
  padding: .3rem .8rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  letter-spacing: .04em;
}
.product-season.red { color: var(--red); }
.product-body { padding: 1.6rem 1.5rem 1.8rem; flex: 1; display: flex; flex-direction: column; }
.product-body h3 { margin-bottom: .5rem; }
.product-body p { color: var(--ink-soft); flex: 1; }
.product-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
  color: var(--green-dark);
  font-weight: 600;
  font-size: .95rem;
}
.product-tag::after { content: '→'; transition: transform .2s ease; }
.product-card:hover .product-tag::after { transform: translateX(4px); }

@media (max-width: 880px) { .product-grid { grid-template-columns: 1fr; } }
@media (min-width: 881px) and (max-width: 1100px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Hofschild / Produktübersicht ---------- */
.overview {
  background: var(--green-light);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.overview-board {
  display: block;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.overview-board:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}
.overview-board img {
  width: 100%;
  height: auto;
  display: block;
}
.overview-zoom {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-dark);
  padding: .65rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(6px);
}
.overview-zoom svg { width: 18px; height: 18px; }

/* ---------- Über uns ---------- */
.about {
  background:
    linear-gradient(180deg, var(--cream), var(--green-light));
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
  position: relative;
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { margin-bottom: 1rem; }
.about-content p { color: var(--ink-soft); font-size: 1.05rem; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.about-stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  display: block;
}
.about-stat-label {
  display: block;
  margin-top: .35rem;
  font-size: .85rem;
  color: var(--ink-soft);
  font-weight: 500;
}

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { aspect-ratio: 4 / 3; order: -1; }
}

/* ---------- Kontakt ---------- */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { margin-bottom: 1.2rem; color: var(--green-dark); }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.contact-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: start;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-light);
  display: grid; place-items: center;
  color: var(--green-dark);
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-label {
  font-size: .8rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}
.contact-value { font-weight: 600; color: var(--ink); }
.contact-value a { color: var(--ink); }
.contact-value a:hover { color: var(--green-dark); }

.contact-social {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.contact-social a {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1.1rem;
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
}
.contact-social a:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow); }
.contact-social svg { width: 20px; height: 20px; }

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

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  padding-block: 3rem 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-logo { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.footer-logo img { width: 72px; background: var(--white); border-radius: 8px; padding: 4px; }
.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
}
.footer p { color: rgba(255,255,255,.65); font-size: .95rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: .55rem; }
.footer ul a { color: rgba(255,255,255,.75); }
.footer ul a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ---------- Legal-Seiten (Impressum / Datenschutz) ---------- */
.legal {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background: var(--cream);
}
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-sm);
}
.legal-wrap h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
.legal-wrap h2 {
  font-size: 1.3rem;
  margin-top: 2.2rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid var(--green-light);
}
.legal-wrap h3 { font-size: 1.1rem; margin-top: 1.4rem; }
.legal-wrap p, .legal-wrap li { color: var(--ink-soft); font-size: 1rem; }
.legal-wrap strong { color: var(--ink); }
.legal-wrap .placeholder {
  background: #FFF7E0;
  border-left: 4px solid var(--yellow);
  padding: .8rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink-soft);
  margin: .8rem 0;
  font-size: .95rem;
}
.legal-wrap .placeholder::before {
  content: '⚠ Platzhalter — bitte ersetzen: ';
  color: var(--red-dark);
  font-weight: 600;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: 2rem;
  color: var(--green-dark);
  font-weight: 600;
}
.legal-back::before { content: '←'; }

/* ---------- Utilities & Animation ---------- */
.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;
}

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