:root {
  --gold: #af9844;
  --gold-deep: #8f7a32;
  --navy: #1a2a4a;
  --cream: #fff8ec;
  --butter: #ffe566;
  --vanilla: #fff3c4;
  --choc: #3d2314;
  --berry: #c45c7a;
  --ink: #1e1a14;
  --muted: #5c5348;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(30, 26, 20, 0.12);
  --font-display: "ZCOOL XiaoWei", "Noto Serif SC", serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* NAV — match official Much Moore */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 111px;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid #ab9751;
  transition: background 0.4s ease, border-color 0.4s ease, height 0.4s ease;
}

.navbar.no-bg {
  background: none;
  border-bottom-color: transparent;
}

.nav-brand {
  display: none;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ab9751;
  line-height: 1.2;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease-in, color 0.3s ease;
  position: absolute;
  left: 35px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.navbar.navy .nav-brand {
  color: var(--navy);
}

.navbar:not(.no-bg) .nav-brand,
.navbar.open .nav-brand {
  opacity: 1;
}

.nav-brand.hide {
  opacity: 0 !important;
  pointer-events: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: absolute;
  right: 22px;
  top: 25px;
  z-index: 3;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 6px auto;
  background: #ab9751;
  border-radius: 4px;
  transition: transform 0.35s ease-in-out, opacity 0.25s ease;
  position: relative;
}

.navbar.navy .nav-toggle span {
  background: #141a51;
}

.nav-toggle.open span:nth-child(1) {
  position: absolute;
  left: 8px;
  top: 19px;
  margin: 0;
  background: #141a51;
  transform: rotate(135deg);
}

.nav-toggle.open span:nth-child(2) {
  visibility: hidden;
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  position: absolute;
  left: 8px;
  top: 19px;
  margin: 0;
  background: #141a51;
  transform: rotate(-135deg);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.nav-links a {
  display: block;
  font-size: 0;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  background-image: url("../img/much-moore-sprite.png");
  background-repeat: no-repeat;
  background-size: 900px 541px;
  transition: none;
}

.nav-links a::after {
  display: none;
}

.nav-links a .icon {
  display: none;
}

.nav-links .nav-about {
  margin: 0 31px;
  height: 62px;
  width: 67px;
  background-position: 0 -268px;
}

.nav-links .nav-products {
  margin: 0 28.5px;
  height: 63px;
  width: 72px;
  background-position: -137px -268px;
}

.nav-links .nav-news {
  margin: 0 28.5px;
  height: 48px;
  width: 72px;
  background-position: -283px -268px;
}

.nav-links .nav-awards {
  margin: 0 36px;
  height: 63px;
  width: 57px;
  background-position: -428px -268px;
}

.nav-links .nav-contact {
  margin: 0 33px;
  height: 58px;
  width: 63px;
  background-position: -545px -268px;
}

.navbar.navy .nav-about {
  background-position: -68px -268px;
}

.navbar.navy .nav-products {
  background-position: -209px -268px;
}

.navbar.navy .nav-news {
  background-position: -355px -268px;
}

.navbar.navy .nav-awards {
  background-position: -487px -268px;
}

.navbar.navy .nav-contact {
  background-position: -609px -268px;
}

.nav-links a.active {
  margin: 0 10px;
  height: 70px;
  width: 129px;
  background-position: -524px -1px !important;
}

/* HERO */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: var(--navy);
  background-color: #124aa9;
}

.hero.is-gold {
  color: #ab9751;
}

.hero-bgs {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2s ease;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}

.hero-bg.active {
  opacity: 1;
}

.hero-bg-vanilla {
  background-color: #124aa9;
  background-image: url("../img/MM_Backdrop_Home_VA_3.jpg");
}

.hero-bg-chocolate {
  background-color: #30221f;
  background-image: url("../img/MM_Backdrop_Home_CF_3.jpg");
}

.hero-bg-gumdrops {
  background-color: #36c1e2;
  background-image: url("../img/MM_Backdrop_Home_GG_3.jpg");
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 11rem 1.25rem 4rem;
  animation: rise 1s ease both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

.hero-brand {
  margin: 3.5rem auto 0;
  display: block;
  width: min(28rem, 90vw);
  height: auto;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.25;
  color: #fff;
  text-shadow: 0 6px 24px rgba(30, 26, 20, 0.35);
}

.hero-award-link {
  display: block;
  width: min(560px, 94vw);
  margin: -1.25rem auto 1.5rem;
  position: relative;
}

.hero-award {
  width: 100%;
  filter: drop-shadow(0 10px 18px rgba(30, 26, 20, 0.15));
  animation: bob 3.5s ease-in-out infinite;
}

.hero-award-gold {
  display: none;
}

.hero-award-navy {
  display: block;
}

.hero.is-gold .hero-award-gold {
  display: block;
}

.hero.is-gold .hero-award-navy {
  display: none;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-meta {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  animation: rise 1.2s 0.2s ease both;
}

.signature {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0;
  color: inherit;
}

.signature span {
  color: inherit;
  font-weight: 700;
}

.hero.is-gold .signature span {
  color: #ab9751;
}

.socials {
  display: flex;
  gap: 0.85rem;
}

.socials a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s ease;
  color: inherit;
}

.socials a:hover {
  opacity: 1;
}

/* SECTIONS */
.section {
  position: relative;
  padding: clamp(4.5rem, 10vw, 7rem) 0;
}

.page-header {
  padding: 0 30px 15px;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 10;
  text-align: center;
}

.page-header h2 {
  position: relative;
  display: grid;
  place-items: center;
  margin: 0;
  font-size: 0;
  line-height: 0;
  background-image: url("../img/much-moore-sprite.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 770px 462px;
}

.page-title-zh {
  position: relative;
  z-index: 1;
  display: inline-block;
  max-width: 100%;
  padding: 0.12em 0.28em;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.6vw, 1.85rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-indent: 0;
  background: none;
}

.section-head {
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.section-head p {
  margin: 0.85rem auto 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1rem;
  text-indent: 0;
  overflow: visible;
  white-space: normal;
}

/* ABOUT — match official backdrop + scoop + text display */
.about {
  position: relative;
  overflow: hidden;
  color: #141a51;
  padding: 210px 0 clamp(4.5rem, 8vw, 7rem);
  background-color: #1a2a4a;
  background-image: url("../img/bg-about.jpg");
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.about-scoop {
  margin: 75px auto 0;
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 336px;
  width: 100%;
  pointer-events: none;
  background: url("../img/About_Us_background_scoop.png") 50% 0 / 1729px 336px no-repeat;
}

.about-inner {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 2.5rem));
}

.about-header {
  padding-bottom: 100px;
  position: relative;
  z-index: 2;
}

.about-header h2 {
  height: 136px;
  width: 168px;
  background-position: 10px -282px;
}

.about-header .page-title-zh {
  color: #141a51;
}

.products .page-header h2 {
  height: 137px;
  width: 168px;
  background-position: -143px -282px;
}

.products .page-title-zh {
  color: #1e1a14;
}

.news .page-header h2 {
  height: 105px;
  width: 168px;
  background-position: -301px -283px;
}

.news .page-title-zh {
  color: #fff;
}

.awards .page-header h2 {
  height: 138px;
  width: 148px;
  background-position: -455px -282px;
}

.awards .page-title-zh {
  color: #1e1a14;
}

.contact .page-header h2 {
  height: 128px;
  width: 158px;
  background-position: -584px -282px;
}

.contact .page-title-zh {
  color: #141a51;
}

.about-description .signature {
  margin: 30px 0 0;
  text-align: center;
}

.about-description .signature span {
  display: inline-block;
  height: 35px;
  width: 150px;
  font-size: 0;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: middle;
  background-image: url("../img/much-moore-sprite.png");
  background-position: -525px -73px;
  background-repeat: no-repeat;
  background-size: 900px 541px;
}

.about-overflow {
  margin: 0 auto;
  padding: 1px 0 0;
  display: flex;
  overflow: hidden;
  height: 350px;
  position: relative;
  width: 100%;
  background-image:
    url("../img/content-overflow-navy-bg.gif"),
    url("../img/content-overflow-navy-bg.gif");
  background-position: top left, top right;
  background-repeat: no-repeat, no-repeat;
}

.about-overflow .content-overflow {
  margin: -1px 0 0;
  padding: 0 40px 0 20px;
  flex: 1;
  height: auto;
  overflow: auto;
  background: url("../img/scrollbar-navy-bg.gif") 100% 0 repeat-y;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #141a51 transparent;
}

.about-overflow .content-overflow::-webkit-scrollbar {
  width: 7px;
}

.about-overflow .content-overflow::-webkit-scrollbar-thumb {
  background: #141a51;
  border-radius: 4px;
}

.about-description {
  padding-bottom: 30px;
  color: #141a51;
}

.about-description p {
  margin: 20px 0 0;
  font-size: 15px;
  line-height: 1.7;
}

.about-description p:first-child {
  margin-top: 0;
}

.news .section-head p {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 991px) {
  .about {
    background-attachment: scroll;
    padding-top: 155px;
  }

  .about-scoop {
    margin-top: 22px;
    background-size: min(1200px, 200vw) auto;
  }

  .about-header {
    padding-bottom: 30px;
  }

  .about-header h2 {
    height: 115px;
    width: 145px;
    background-position: 10px -238px;
    background-size: 650px 390px;
  }

  .products .page-header h2 {
    height: 116px;
    width: 150px;
    background-position: -117px -238px;
    background-size: 650px 390px;
  }

  .news .page-header h2 {
    height: 88px;
    width: 150px;
    background-position: -250px -238px;
    background-size: 650px 390px;
  }

  .awards .page-header h2 {
    height: 117px;
    width: 130px;
    background-position: -381px -238px;
    background-size: 650px 390px;
  }

  .contact .page-header h2 {
    height: 108px;
    width: 140px;
    background-position: -490px -238px;
    background-size: 650px 390px;
  }

  .page-title-zh {
    font-size: clamp(1.15rem, 4.5vw, 1.45rem);
  }

  .about-overflow {
    display: block;
    height: auto;
    overflow: visible;
    background: none;
  }

  .about-overflow .content-overflow {
    padding: 0;
    overflow: visible;
    background: none;
  }
}

/* PRODUCTS */
.products {
  background:
    linear-gradient(180deg, #fffdf7 0%, #fff4d6 100%);
}

.products-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.category-btn {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  border-bottom: 1px solid rgba(175, 152, 68, 0.28);
  padding: 1rem 0.25rem;
  font: inherit;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.category-btn:hover,
.category-btn.active {
  color: var(--gold-deep);
  padding-left: 0.4rem;
}

.category-btn .icon {
  width: 1rem;
  height: 1rem;
  position: relative;
}

.category-btn .icon::before,
.category-btn .icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.25s ease;
}

.category-btn .icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.category-btn .icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.category-btn.active .icon::after {
  transform: translateX(-50%) scaleY(0);
}

.product-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(175, 152, 68, 0.22);
  min-height: 420px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.product-panel::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -60px;
  top: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 229, 102, 0.55), transparent 70%);
  pointer-events: none;
}

.product-visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 200px;
  margin-bottom: 1rem;
}

.product-visual img {
  max-height: 240px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(30, 26, 20, 0.18));
  transition: transform 0.45s ease;
}

.product-panel:hover .product-visual img {
  transform: translateY(-6px) scale(1.02);
}

.product-panel h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 0 0 0.65rem;
  position: relative;
  z-index: 1;
}

.product-panel .desc {
  color: var(--muted);
  margin: 0 0 1.25rem;
  position: relative;
  z-index: 1;
}

.flavour-list {
  display: grid;
  gap: 0.45rem;
  position: relative;
  z-index: 1;
  max-height: 280px;
  overflow: auto;
  padding-right: 0.35rem;
}

.flavour-list button {
  width: 100%;
  text-align: left;
  border: 0;
  background: rgba(255, 248, 236, 0.9);
  border-left: 3px solid transparent;
  padding: 0.7rem 0.85rem;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.flavour-list button:hover,
.flavour-list button.active {
  border-left-color: var(--gold);
  background: var(--white);
}

.flavour-detail {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(175, 152, 68, 0.35);
  position: relative;
  z-index: 1;
  display: none;
}

.flavour-detail.open {
  display: block;
  animation: fadein 0.35s ease;
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.flavour-detail h4 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.meta-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin: 0.85rem 0 0.25rem;
}

.awards-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.awards-tags span {
  font-size: 0.8rem;
  padding: 0.2rem 0.55rem;
  background: rgba(175, 152, 68, 0.15);
  color: var(--gold-deep);
}

/* NEWS */
.news {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(26, 42, 74, 0.75), rgba(26, 42, 74, 0.88)),
    url("../img/bg-news.jpg") center / cover fixed;
}

.news-card {
  max-width: 42rem;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1.75rem;
  backdrop-filter: blur(6px);
}

.news-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 0 0 0.85rem;
}

.news-card a {
  color: var(--butter);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-card img {
  margin-top: 1.25rem;
  width: 100%;
  max-height: 280px;
  object-fit: cover;
}

/* AWARDS */
.awards {
  background: linear-gradient(180deg, #f7f0e0, #efe4c8);
}

.awards-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.5rem;
}

.year-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.year-btn {
  border: 1px solid rgba(175, 152, 68, 0.35);
  background: rgba(255, 255, 255, 0.55);
  padding: 0.75rem 0.5rem;
  font: inherit;
  font-family: var(--font-display);
  font-size: 1.15rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.year-btn:hover,
.year-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.award-body {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(175, 152, 68, 0.25);
  padding: 1.5rem;
  min-height: 360px;
  max-height: 520px;
  overflow: auto;
  box-shadow: var(--shadow);
}

.award-body h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 1rem;
}

.award-body h4 {
  margin: 1.25rem 0 0.5rem;
  color: var(--gold-deep);
  font-size: 1.05rem;
}

.award-body h5 {
  margin: 0.85rem 0 0.35rem;
  font-size: 0.95rem;
}

.award-body ul {
  padding-left: 1.1rem;
  list-style: disc;
}

.award-body li {
  margin: 0.2rem 0;
  color: var(--muted);
}

/* CONTACT */
.contact {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 229, 102, 0.45), transparent 50%),
    linear-gradient(180deg, #fff8ec, #ffe9a8);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-copy {
  padding: 0.5rem 0;
}

.contact-copy .lead {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0 0 1.25rem;
  line-height: 1.35;
}

.contact-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.contact-copy a {
  color: var(--gold-deep);
  font-weight: 600;
}

.map-wrap {
  min-height: 350px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(175, 152, 68, 0.25);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
  display: block;
}

.footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--cream);
  border-top: 1px solid rgba(175, 152, 68, 0.2);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .navbar {
    height: auto;
    min-height: 86px;
    padding: 0;
    justify-content: flex-start;
  }

  .nav-brand {
    display: block;
    margin: 0 0 0 1.25rem;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    opacity: 1;
    font-size: 1.15rem;
    letter-spacing: 0.06em;
  }

  .nav-brand.hide {
    opacity: 0 !important;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 95px 35px 35px;
    background: rgba(255, 255, 255, 0.85);
    display: none;
    z-index: 1;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .navbar.navy .nav-links a,
  .nav-links a.active {
    margin: -1px 0 0 !important;
    padding: 10px 0;
    display: block;
    height: auto !important;
    width: 100% !important;
    overflow: visible;
    white-space: normal;
    font-size: 18px;
    font-family: var(--font-body);
    font-weight: 300;
    text-transform: uppercase;
    text-indent: 0;
    background-image: none !important;
    border-top: 1px solid #141a51;
    border-bottom: 1px solid #141a51;
    color: #141a51;
  }

  .nav-links a .icon {
    margin: 2px 0 0 20px;
    display: block;
    float: right;
    width: 20px;
    height: 20px;
    background-image: url("../img/much-moore-sprite.png");
    background-position: -623px -143px;
    background-repeat: no-repeat;
    background-size: 900px 541px;
  }
}

@media (max-width: 900px) {
  .products-layout,
  .awards-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    align-items: center;
    bottom: 1rem;
  }

  .year-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 560px) {
  .year-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg {
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
