:root {
  --espresso: #21150f;
  --espresso-deep: #130d09;
  --cocoa: #5a3321;
  --pretzel: #b56f2d;
  --honey: #e9b95f;
  --flour: #fff4df;
  --cream: #f7e6c8;
  --sage: #667c58;
  --sage-dark: #303d2b;
  --berry: #8f4042;
  --text: #fff8ed;
  --muted: rgba(255, 248, 237, 0.74);
  --ink: #23140d;
  --line: rgba(255, 244, 223, 0.22);
  --dark-line: rgba(35, 20, 13, 0.18);
  --shadow: 0 32px 80px rgba(25, 12, 6, 0.42);
  --max: 1180px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--espresso-deep);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.is-spinning-pretzel {
  cursor: grabbing;
  user-select: none;
}

body.is-spinning-pretzel * {
  cursor: grabbing !important;
}

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: var(--honey);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.webgl-stage,
.stage-veil {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.webgl-stage {
  z-index: 0;
}

#bakery-stage {
  display: block;
  width: 100%;
  height: 100%;
}

.stage-veil {
  z-index: 1;
  background:
    radial-gradient(38% 48% at 73% 45%, rgba(255, 214, 134, 0.3), transparent 70%),
    radial-gradient(26% 34% at 75% 44%, rgba(255, 129, 48, 0.22), transparent 74%),
    radial-gradient(46% 58% at 70% 43%, rgba(255, 185, 86, 0.2), transparent 68%),
    radial-gradient(85% 24% at 50% 99%, rgba(40, 18, 10, 0.95), transparent 72%),
    linear-gradient(90deg, rgba(19, 13, 9, 0.14), rgba(19, 13, 9, 0.34) 45%, rgba(19, 13, 9, 0.16)),
    linear-gradient(180deg, rgba(19, 13, 9, 0.06), rgba(19, 13, 9, 0.58) 78%, rgba(19, 13, 9, 0.96));
}

.webgl-failed .stage-veil {
  background:
    radial-gradient(80% 70% at 68% 24%, rgba(181, 111, 45, 0.35), transparent 65%),
    linear-gradient(135deg, #21150f, #303d2b 58%, #130d09);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 84px;
  padding: 0 max(1.1rem, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255, 244, 223, 0.08);
  background: linear-gradient(180deg, rgba(19, 13, 9, 0.72), rgba(19, 13, 9, 0.2));
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(2.7rem, 4.4vw, 3.55rem);
  filter:
    drop-shadow(0 1px 0 rgba(255, 244, 223, 0.36))
    drop-shadow(0 10px 24px rgba(0, 0, 0, 0.36));
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: clamp(1.2rem, 2.2vw, 2.2rem);
  color: rgba(255, 248, 237, 0.84);
  font-size: 0.88rem;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--flour);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(233, 185, 95, 0.38);
  border-radius: 999px;
  padding: 0.72rem 1.12rem;
  color: var(--ink);
  background: linear-gradient(135deg, var(--honey), #d28a38);
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(211, 133, 48, 0.23);
}

.short-label {
  display: none;
}

.content {
  position: relative;
  z-index: 2;
}

.hero,
.section {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(380px, 1fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
  padding: 8.8rem 0 6.2rem;
}

.hero,
.visit {
  cursor: grab;
}

.hero a,
.visit a,
.hero button,
.visit button {
  cursor: pointer;
}

.hero-copy {
  max-width: 640px;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 760;
  letter-spacing: 0;
  text-wrap: balance;
}

figure {
  margin: 0;
}

h1 {
  max-width: 8.4ch;
  margin-bottom: 1rem;
  color: var(--flour);
  font-size: clamp(4.6rem, 8.9vw, 8.7rem);
  line-height: 0.82;
  text-shadow: 0 20px 58px rgba(0, 0, 0, 0.46);
}

.hero-subtitle {
  margin-bottom: 1.1rem;
  color: rgba(255, 248, 237, 0.92);
  font-family: var(--serif);
  font-size: clamp(1.16rem, 1.9vw, 1.48rem);
  font-weight: 540;
  line-height: 1.25;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: min(14rem, 72vw);
  margin-bottom: 1.05rem;
  color: rgba(233, 185, 95, 0.8);
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-divider span {
  width: 4.4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--flour), rgba(255, 244, 223, 0.08));
}

.hero-divider b {
  font-weight: 700;
}

.hero-lead {
  max-width: 520px;
  margin-bottom: 2.1rem;
  color: rgba(255, 248, 237, 0.86);
  font-family: Georgia, var(--serif);
  font-size: clamp(1.14rem, 1.7vw, 1.34rem);
  font-style: italic;
  line-height: 1.44;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.88rem 1.25rem;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button.primary {
  background: linear-gradient(135deg, #f0c778, #d79238 60%, #b86828);
  color: var(--ink);
  box-shadow: 0 20px 48px rgba(211, 133, 48, 0.28);
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 0 28px 60px rgba(233, 185, 95, 0.33);
}

.button.secondary {
  border-color: rgba(255, 244, 223, 0.5);
  background: rgba(19, 13, 9, 0.2);
  color: var(--flour);
  backdrop-filter: blur(12px);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(255, 244, 223, 0.42);
}

.hero-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.42rem;
  margin: 1.35rem 0 0;
  color: rgba(255, 248, 237, 0.88);
  font-weight: 700;
}

.hero-rating span {
  color: #f2c15f;
  letter-spacing: 0.06em;
  text-shadow: 0 5px 18px rgba(242, 193, 95, 0.26);
}

.hero-rating strong {
  color: var(--flour);
}

.hero-visual-space {
  min-height: 34rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 5.15rem;
  display: grid;
  justify-items: center;
  gap: 0.42rem;
  color: rgba(255, 248, 237, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
  transform: translateX(-50%);
}

.scroll-cue::after {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.section {
  padding: clamp(4.7rem, 10vh, 8.2rem) 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 2.2rem;
}

.section-heading.compact {
  max-width: 620px;
}

.section-kicker {
  margin-bottom: 0.7rem;
  color: var(--berry);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.45rem, 5.4vw, 5rem);
  line-height: 0.92;
}

h3 {
  margin-bottom: 0.55rem;
  color: inherit;
  font-size: 1.05rem;
  line-height: 1.18;
}

.section-heading p,
.ingredient-copy p,
.visit-details p {
  color: rgba(35, 20, 13, 0.72);
  font-size: 1.02rem;
}

.favorites {
  position: relative;
  width: 100%;
  max-width: none;
  margin-top: -1px;
  padding-top: clamp(5.5rem, 12vh, 9rem);
  padding-left: max(1rem, calc((100vw - var(--max)) / 2));
  padding-right: max(1rem, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(180deg, rgba(255, 244, 223, 0.96), rgba(247, 230, 200, 0.98)),
    radial-gradient(80% 60% at 85% 10%, rgba(102, 124, 88, 0.18), transparent 62%);
  color: var(--ink);
}

.favorites::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -5.2rem;
  height: 5.4rem;
  background:
    linear-gradient(180deg, rgba(255, 244, 223, 0.86), rgba(247, 230, 200, 0.98));
  clip-path: ellipse(76% 100% at 50% 100%);
  pointer-events: none;
}

.favorites-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 0.85rem;
}

.favorite-item {
  min-width: 0;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  padding: 1.05rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.16)),
    var(--cream);
  box-shadow: 0 18px 40px rgba(35, 20, 13, 0.08);
}

.favorite-item::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.66;
  margin-bottom: 1rem;
  border-radius: 7px;
  background:
    radial-gradient(circle at 52% 48%, rgba(255, 255, 255, 0.62) 0 5%, transparent 6%),
    radial-gradient(circle at 30% 52%, rgba(255, 255, 255, 0.46) 0 3%, transparent 4%),
    radial-gradient(circle at 68% 38%, rgba(255, 255, 255, 0.42) 0 3%, transparent 4%),
    linear-gradient(135deg, rgba(233, 185, 95, 0.42), rgba(181, 111, 45, 0.44));
  box-shadow: inset 0 -28px 46px rgba(35, 20, 13, 0.16);
}

.favorite-item.empanada::before {
  background:
    radial-gradient(100% 80% at 50% 100%, rgba(181, 111, 45, 0.75), transparent 50%),
    linear-gradient(135deg, rgba(102, 124, 88, 0.25), rgba(233, 185, 95, 0.5));
}

.favorite-item.pizzetta::before {
  background:
    radial-gradient(circle at 44% 46%, rgba(143, 64, 66, 0.8) 0 9%, transparent 10%),
    radial-gradient(circle at 68% 60%, rgba(102, 124, 88, 0.8) 0 7%, transparent 8%),
    linear-gradient(135deg, #e9b95f, #b56f2d);
}

.favorite-item.sweets::before {
  background:
    radial-gradient(circle at 54% 42%, rgba(143, 64, 66, 0.55) 0 12%, transparent 13%),
    linear-gradient(135deg, #fff4df, #c78655 62%, #5a3321);
}

.favorite-item.coffee::before {
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 244, 223, 0.72) 0 18%, transparent 19%),
    radial-gradient(circle at 50% 50%, #5a3321 0 32%, transparent 33%),
    linear-gradient(135deg, #303d2b, #21150f);
}

.item-number {
  color: var(--pretzel);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.favorite-item p {
  margin-bottom: 0;
  color: rgba(35, 20, 13, 0.68);
  font-size: 0.92rem;
}

.ingredients {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.ingredients .section-kicker {
  color: var(--honey);
}

.ingredient-copy p {
  color: var(--muted);
}

.ingredient-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.ingredient-list div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 244, 223, 0.16);
  border-radius: 8px;
  padding: 1.1rem;
  background: linear-gradient(145deg, rgba(102, 124, 88, 0.2), rgba(255, 244, 223, 0.08));
}

.ingredient-list span {
  color: var(--honey);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3.3vw, 2.6rem);
  font-weight: 760;
  line-height: 0.95;
}

.ingredient-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.reviews {
  width: 100%;
  max-width: none;
  padding-left: max(1rem, calc((100vw - var(--max)) / 2));
  padding-right: max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--sage-dark);
  color: var(--flour);
}

.reviews .section-kicker {
  color: var(--honey);
}

.review-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 1rem;
}

.review-strip figure {
  min-height: 174px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 244, 223, 0.16);
  border-radius: 8px;
  padding: 1.15rem;
  background: rgba(19, 13, 9, 0.24);
}

blockquote {
  margin: 0 0 1.2rem;
  color: var(--flour);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.55vw, 1.62rem);
  font-weight: 650;
  line-height: 1.18;
  text-wrap: balance;
}

figcaption {
  color: rgba(255, 248, 237, 0.68);
  font-size: 0.84rem;
  font-weight: 800;
}

.links {
  width: 100%;
  max-width: none;
  padding-left: max(1rem, calc((100vw - var(--max)) / 2));
  padding-right: max(1rem, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(70% 50% at 88% 0%, rgba(233, 185, 95, 0.18), transparent 62%),
    linear-gradient(180deg, rgba(255, 244, 223, 0.98), rgba(247, 230, 200, 0.98));
  color: var(--ink);
}

.links .section-kicker {
  color: var(--pretzel);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.link-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  padding: 1.05rem;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 38px rgba(35, 20, 13, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.link-card:hover,
.link-card:focus-visible {
  border-color: rgba(181, 111, 45, 0.42);
  box-shadow: 0 24px 48px rgba(35, 20, 13, 0.12);
  transform: translateY(-2px);
}

.link-card span {
  color: var(--pretzel);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.link-card strong {
  margin-top: auto;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.8vw, 1.55rem);
  font-weight: 760;
  line-height: 0.98;
}

.link-card small {
  color: rgba(35, 20, 13, 0.6);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.28;
  word-break: break-word;
}

.link-card.primary-link {
  background: linear-gradient(145deg, #2b1a11, #70411f);
  color: var(--flour);
}

.link-card.primary-link span,
.link-card.primary-link strong {
  color: var(--flour);
}

.link-card.primary-link small {
  color: rgba(255, 248, 237, 0.68);
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.8fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.visit-details {
  position: relative;
  z-index: 3;
  border-left: 1px solid var(--line);
  padding-left: 1.4rem;
}

.visit .section-kicker {
  color: var(--honey);
}

.visit-details p {
  color: var(--muted);
}

.visit-details .address {
  display: block;
  margin-bottom: 1rem;
  color: var(--flour);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.25;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.42);
}

.visit-details .address:hover,
.visit-details .address:focus-visible {
  color: var(--honey);
}

.business-info {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 1.15rem;
}

.contact-row,
.hours-panel {
  border: 1px solid rgba(255, 244, 223, 0.16);
  border-radius: 8px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(19, 13, 9, 0.62), rgba(19, 13, 9, 0.44));
  box-shadow: inset 0 1px 0 rgba(255, 244, 223, 0.08);
  backdrop-filter: blur(10px);
}

.contact-row {
  display: grid;
  gap: 0.25rem;
}

.contact-row:hover,
.contact-row:focus-visible {
  border-color: rgba(233, 185, 95, 0.42);
}

.contact-row span,
.hours-panel > span {
  color: rgba(255, 248, 237, 0.54);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-row strong {
  color: var(--flour);
  font-size: 1.12rem;
}

.hours-list {
  display: grid;
  gap: 0.45rem;
  margin: 0.75rem 0 0;
}

.hours-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  color: rgba(255, 248, 237, 0.86);
  font-size: 0.94rem;
}

.hours-list dt,
.hours-list dd {
  margin: 0;
}

.hours-list dt {
  font-weight: 800;
}

.hours-list dd {
  color: var(--flour);
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.visit-actions span,
.social-link {
  color: var(--honey);
  font-weight: 900;
}

.social-link {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
}

.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem max(1rem, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(19, 13, 9, 0.72);
  font-size: 0.88rem;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  color: var(--honey);
  font-weight: 900;
}

@media (max-width: 1040px) {
  .favorites-rail,
  .review-strip,
  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 72px;
  }

  .brand-logo {
    height: 2.78rem;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .ingredients,
  .visit {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    min-height: 84svh;
    align-items: start;
    gap: 1.5rem;
    padding-top: 6.5rem;
  }

  h1 {
    max-width: 7.8ch;
    font-size: clamp(3.45rem, 16vw, 5.4rem);
  }

  .hero-visual-space {
    display: none;
  }

  .visit-details {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 1.25rem;
    padding-left: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 0.65rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .brand-logo {
    height: 2.42rem;
  }

  .hero,
  .section {
    width: auto;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .hero {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .favorites,
  .reviews {
    margin-left: 0;
    margin-right: 0;
  }

  .header-action {
    display: none;
  }

  .header-action .full-label {
    display: none;
  }

  .header-action .short-label {
    display: inline;
  }

  .hero {
    min-height: 82svh;
    padding-bottom: 4.8rem;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.85rem, 11.7vw, 3.55rem);
    line-height: 0.88;
  }

  .hero-subtitle {
    font-size: 1.08rem;
  }

  .hero-divider {
    width: min(12.5rem, 76vw);
  }

  .hero-lead {
    max-width: 22rem;
  }

  .hero-actions,
  .visit-actions {
    width: 100%;
    max-width: 100%;
  }

  .hero-actions .button {
    flex: 0 0 min(320px, calc(100% - 2rem));
    width: min(320px, calc(100% - 2rem));
    max-width: 320px;
    margin-right: 0;
  }

  .button {
    min-height: 56px;
  }

  .hero-rating {
    font-size: 0.92rem;
  }

  .scroll-cue {
    bottom: 2.15rem;
  }

  .scroll-cue span {
    display: none;
  }

  .favorites-rail,
  .ingredient-list,
  .review-strip,
  .link-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .favorites {
    padding-top: 3.2rem;
  }

  .favorite-item {
    min-height: 232px;
  }

  .review-strip figure {
    min-height: 170px;
  }

  .hours-list div {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.05rem;
  }

  .hours-list dd {
    text-align: left;
  }
}

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