/* ============================================
   Kafe bar — demo
   styles.css
   :root  = brend tokeni (menjaju se po klijentu)
   ostalo = layout / komponente

   Stil se namerno razlikuje od 01-restoran i 02-frizerski-salon:
   - topla "espresso" tamna tema, amber akcent
   - Fraunces (karakterni serif sa WONK osom) umesto Cormoranta / groteska
   - hero: full-bleed slika + info-bar na dnu (ne fullscreen centriran, ne split)
   - pokretna traka (marquee) ispod hero-a
   - ponuda: segmentni prekidač (pill) + liste sa tačkastim vođicama cena
   - galerija: horizontalna traka sa scroll-snap (ne grid)
   - "otvoreno sada" indikator računat iz radnog vremena
   ============================================ */

/* Dvomodna tema — "Veče" (podrazumevano, tamna) i "Dan" (svetla).
   Prekidač u headeru menja data-mode na <html>; izbor se pamti u localStorage,
   a bez izbora se bira prema dobu dana. Ovo je glavni potpis ovog šablona. */
:root {
  color-scheme: dark;
  --bg: #211a15;
  --bg-alt: #2a211a;
  --surface: #322619;
  --line: rgba(240, 224, 198, 0.14);
  --line-strong: rgba(240, 224, 198, 0.28);
  --text: #f3e9da;
  --text-dim: #b6a389;
  --accent: #e0913f;
  --accent-2: #efab5e;
  --on-accent: #241a10;
  --ok: #7ec98a;

  --header-bg: rgba(33, 26, 21, 0.9);
  --hero-scrim: linear-gradient(180deg, rgba(20, 15, 12, .5) 0%, rgba(20, 15, 12, .18) 34%, rgba(20, 15, 12, .93) 100%);
  --grain-opacity: .05;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1180px;
  --radius: 8px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

:root[data-mode="day"] {
  color-scheme: light;
  --bg: #f5ede0;
  --bg-alt: #ebdfcc;
  --surface: #ffffff;
  --line: rgba(58, 40, 24, 0.14);
  --line-strong: rgba(58, 40, 24, 0.26);
  --text: #2b2016;
  --text-dim: #7c6552;
  --accent: #b25c22;
  --accent-2: #c9702f;
  --on-accent: #fff6ec;
  --ok: #3f8f4f;

  --header-bg: rgba(245, 237, 224, 0.9);
  --hero-scrim: linear-gradient(180deg, rgba(30, 20, 14, .34) 0%, rgba(30, 20, 14, .1) 28%, rgba(18, 13, 10, .82) 100%);
  --grain-opacity: .035;
}

:root,
body {
  transition: background-color .5s var(--ease), color .5s var(--ease);
}

/* ---------- reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- tipografija ---------- */
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  font-optical-sizing: auto;
}

h1,
h2 {
  font-variation-settings: "SOFT" 0, "WONK" 1;
  letter-spacing: -.015em;
}

h1 {
  font-size: clamp(2.6rem, 6.4vw, 4.5rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}

h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 46ch;
}

/* ---------- layout ---------- */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(4.5rem, 11vw, 8rem) 0;
}

.section-head {
  max-width: 36ch;
  margin-bottom: 3rem;
}

/* redni broj sekcije (editorial detalj) */
.sec-num {
  display: block;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .1em;
  margin-bottom: .5rem;
}

.sec-num::after {
  content: " ——";
  color: var(--text-dim);
}

/* zrnasta tekstura preko cele strane */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.9rem;
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  border-radius: 999px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}

.btn:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .05);
  border-color: var(--accent);
}

.btn-sm {
  padding: .6rem 1.3rem;
  font-size: .8rem;
}

.btn-block {
  width: 100%;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: var(--header-bg);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  height: 70px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  font-variation-settings: "SOFT" 0, "WONK" 1;
  letter-spacing: -.01em;
  margin-right: auto;
}

.logo-lg {
  font-size: 2rem;
}

.nav {
  display: flex;
  gap: 1.7rem;
}

.nav a {
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  padding: .3rem 0;
  transition: color .2s var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .3s var(--ease);
}

.nav a:hover {
  color: var(--text);
}

.nav a:hover::after {
  width: 100%;
}

/* dan / veče prekidač */
.mode-toggle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .9rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}

.mode-toggle:hover {
  border-color: var(--accent);
}

.mode-toggle .mt-icon {
  width: 15px;
  height: 15px;
  display: inline-flex;
  color: var(--accent);
}

.mode-toggle .mt-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* otvoreno sada */
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}

.open-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
}

.open-badge.is-open {
  color: var(--text);
}

.open-badge.is-open::before {
  background: var(--ok);
  box-shadow: 0 0 0 0 rgba(126, 201, 138, .6);
  animation: pulse 2.4s var(--ease) infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(126, 201, 138, .55); }
  70% { box-shadow: 0 0 0 9px rgba(126, 201, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(126, 201, 138, 0); }
}

.burger {
  display: none;
  width: 28px;
  height: 20px;
  position: relative;
  flex: none;
}

.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: .3s var(--ease);
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 9px; }
.burger span:nth-child(3) { top: 18px; }

.burger.open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem 0 0;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-scrim);
}

/* hero sadržaj je uvek nad slikom -> boje su fiksno svetle, nezavisno od moda */
.hero-content {
  padding-bottom: 2.5rem;
  max-width: 40rem;
  color: #f7efe2;
}

.hero .eyebrow {
  color: #f0b877;
}

.hero-content h1 {
  margin: .4rem 0 1.3rem;
}

.hero-content .lead {
  color: #ecdfce;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.1rem;
  flex-wrap: wrap;
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  padding: 1.4rem 0 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.hero-info div {
  display: flex;
  flex-direction: column;
}

.hero-info .k {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(247, 239, 226, .68);
}

.hero-info .v {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: .15rem;
  color: #f7efe2;
}

/* ---------- pokretna traka ---------- */
.ticker {
  background: var(--accent);
  color: var(--on-accent);
  overflow: hidden;
  padding: .75rem 0;
  border-block: 1px solid rgba(0, 0, 0, .12);
}

.ticker-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: ticker 32s linear infinite;
}

.ticker span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: .01em;
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
}

.ticker span::after {
  content: "✳";
  font-size: .8em;
  opacity: .6;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

/* ---------- story ---------- */
.story {
  background: var(--bg-alt);
}

.story-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.story-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}

.story-text h2 {
  margin-bottom: 1.3rem;
}

.story-text p {
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 1.4rem 2.4rem;
  margin-top: 2.4rem;
  justify-content: start;
}

.stats li {
  display: flex;
  flex-direction: column;
  padding-left: 1.1rem;
  border-left: 2px solid var(--accent);
}

.stats .num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1;
}

.stats .lbl {
  font-size: .76rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: .45rem;
}

/* ---------- ponuda (segmentni prekidač) ---------- */
.menu-switch {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  padding: .4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: max-content;
  max-width: 100%;
  margin-bottom: 2.6rem;
}

.menu-switch button {
  padding: .6rem 1.25rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--text-dim);
  white-space: nowrap;
  transition: background .25s var(--ease), color .25s var(--ease);
}

.menu-switch button:hover {
  color: var(--text);
}

.menu-switch button[aria-selected="true"] {
  background: var(--accent);
  color: var(--on-accent);
}

.menu-lists {
  max-width: 960px;
}

.menu-panel {
  display: none;
}

.menu-panel.is-active {
  display: block;
  animation: fade .35s var(--ease);
}

@keyframes fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.menu-panel-tag {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: .4rem;
}

.menu-panel-tag::before {
  content: "• ";
  color: var(--accent);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3rem;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: .2rem .4rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}

.menu-item.is-pick {
  padding-inline: .9rem;
  margin-inline: -.9rem;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border-bottom-color: transparent;
}

.menu-item .mi-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
}

.menu-item .mi-badge {
  display: inline-block;
  margin-left: .55rem;
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: .1rem .5rem;
  vertical-align: middle;
}

/* tačkasta vođica između naziva i cene */
.menu-item .mi-lead {
  border-bottom: 1px dotted var(--line-strong);
  align-self: flex-end;
  margin: 0 .5rem .28rem;
  min-width: 1.5rem;
}

.menu-item .mi-price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent-2);
  white-space: nowrap;
}

.menu-item .mi-desc {
  grid-column: 1 / -1;
  color: var(--text-dim);
  font-size: .92rem;
}

.menu-note {
  color: var(--text-dim);
  font-size: .85rem;
  margin-top: 2.4rem;
  font-style: italic;
}

/* ---------- galerija (horizontalna) ---------- */
.gallery-rail {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: .5rem clamp(1.25rem, calc((100vw - var(--container)) / 2 + 1.25rem), 50vw) 1.5rem;
  scrollbar-width: none;
}

.gallery-rail::-webkit-scrollbar {
  display: none;
}

.gallery-rail figure {
  flex: 0 0 clamp(240px, 62vw, 340px);
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-rail figure:nth-child(even) {
  margin-top: 2rem;
}

.gallery-rail img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.gallery-rail figure:hover img {
  transform: scale(1.05);
}

/* ---------- program nedelje ---------- */
.program-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.program-text h2 {
  margin-bottom: 1.2rem;
}

.hours {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}

.hours .dan {
  color: var(--text-dim);
}

.events {
  list-style: none;
  border-top: 1px solid var(--line);
}

.event {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: baseline;
  gap: .3rem 1.1rem;
  padding: 1.3rem .2rem;
  border-bottom: 1px solid var(--line);
  transition: background .25s var(--ease);
}

.event:hover {
  background: color-mix(in srgb, var(--accent) 7%, transparent);
}

.event.is-today {
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border-radius: var(--radius);
  border-bottom-color: transparent;
  padding-inline: .9rem;
  margin-inline: -.9rem;
}

.event .ev-day {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  min-width: 5.5rem;
}

.event .ev-time {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--accent-2);
}

.event.is-today .ev-day::after {
  content: "danas";
  display: inline-block;
  margin-left: .5rem;
  font-family: var(--font-body);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: .08rem .45rem;
  vertical-align: middle;
}

.event .ev-name {
  grid-column: 3;
  grid-row: 1;
  font-weight: 600;
}

.event .ev-desc {
  grid-column: 3;
  grid-row: 2;
  color: var(--text-dim);
  font-size: .9rem;
}

/* ---------- footer ---------- */
.site-footer {
  background: #191310;
  color: #cdbfae;
  padding-top: 4rem;
  border-top: 1px solid var(--line);
}

.site-footer .logo,
.site-footer h3 {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-slogan {
  color: #9d8d7b;
  margin: .8rem 0 1.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.footer-col h3 {
  margin-bottom: 1.2rem;
}

.footer-col p {
  color: #9d8d7b;
  margin-bottom: .5rem;
}

.footer-col a:hover {
  color: var(--accent-2);
}

.socials {
  display: flex;
  gap: 1rem;
}

.socials a {
  font-size: .76rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #d9cfc3;
  border: 1px solid rgba(255, 255, 255, .16);
  padding: .5rem .9rem;
  border-radius: 999px;
  transition: .25s var(--ease);
}

.socials a:hover {
  color: #fff;
  border-color: var(--accent);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  min-height: 200px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .8rem;
  color: #7f7264;
}

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(16, 12, 10, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.8rem;
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
}

/* ---------- reveal anim ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- responsive ---------- */
@media (max-width: 760px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .story-grid,
  .program-grid {
    grid-template-columns: 1fr;
  }

  .story-media {
    order: -1;
    max-width: 460px;
  }

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

  .footer-map {
    grid-column: 1 / -1;
    min-height: 240px;
  }
}

@media (max-width: 680px) {
  .nav-cta {
    display: none;
  }

  .open-badge {
    margin-left: auto;
  }

  .burger {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 320px);
    background: var(--bg-alt);
    border-left: 1px solid var(--line);
    flex-direction: column;
    justify-content: center;
    gap: 1.8rem;
    padding: 3rem;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    z-index: 60;
  }

  .nav.open {
    transform: none;
  }

  .nav a {
    font-size: 1rem;
  }

  .hero {
    min-height: 0;
    padding-top: 6.5rem;
  }

  .hero-content {
    padding-bottom: 2rem;
  }

  .stats {
    grid-template-columns: repeat(2, auto);
  }

  .event {
    grid-template-columns: auto 1fr;
  }

  .event .ev-time {
    grid-column: 2;
    grid-row: 2;
  }

  .event .ev-name {
    grid-column: 2;
    grid-row: 1;
  }

  .event .ev-desc {
    grid-column: 1 / -1;
    grid-row: 3;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: .4rem;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .ticker-track {
    animation: none;
  }
}
