/* ---------- base ---------- */
:root {
  --bg: #fff8ea;
  --cream: #fbf1df;
  --ink: #1b2d56;
  --ink-soft: #3a4a73;
  --blue: #6fa8d6;
  --blue-deep: #1e3a8a;
  --orange: #f4a574;
  --peach: #f8c4b4;
  --teal: #7dc4b5;
  --mustard: #e8b64a;
  --rose: #d97878;

  --serif: "Fraunces", "Playfair Display", Georgia, serif;
  --hand: "Kalam", "Caveat", "Comic Sans MS", cursive;
  --script: "Caveat", cursive;

  --shadow-card: 0 18px 35px -20px rgba(27, 45, 86, 0.35), 0 4px 10px -4px rgba(27, 45, 86, 0.1);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  background-image:
    radial-gradient(ellipse at 15% 8%, rgba(111, 168, 214, 0.22), transparent 45%),
    radial-gradient(ellipse at 90% 35%, rgba(244, 165, 116, 0.18), transparent 50%),
    radial-gradient(ellipse at 50% 95%, rgba(125, 196, 181, 0.18), transparent 55%);
}

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.05;
}

h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); margin: 0 0 1rem; }

.ink { font-style: italic; font-weight: 600; color: var(--blue-deep); }

.lead { font-size: 1.2rem; color: var(--ink-soft); }

em { font-style: italic; color: var(--blue-deep); }

.section-kicker {
  display: inline-block;
  font-family: var(--hand);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--rose);
  background: #fff;
  padding: 4px 14px;
  border-radius: 999px;
  transform: rotate(-2deg);
  box-shadow: var(--shadow-card);
  margin-bottom: 1rem;
}

/* ---------- floating blobs ---------- */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
  animation: float 18s ease-in-out infinite;
}
.blob-1 { width: 420px; height: 420px; background: var(--blue); top: -100px; left: -120px; }
.blob-2 { width: 380px; height: 380px; background: var(--peach); top: 40%; right: -140px; animation-delay: -6s; }
.blob-3 { width: 340px; height: 340px; background: var(--teal); bottom: -120px; left: 30%; animation-delay: -12s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -20px) scale(1.08); }
  66%      { transform: translate(-20px, 25px) scale(0.95); }
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(27, 45, 86, 0.06);
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 248, 234, 0.7);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  z-index: -1;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: clamp(80px, 8vw, 110px);
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}
.nav-logo:hover img { transform: rotate(-6deg); }

.nav ul {
  list-style: none;
  display: flex;
  gap: clamp(14px, 2.5vw, 34px);
  margin: 0;
  padding: 0;
  font-family: var(--hand);
  font-weight: 700;
  font-size: 1.05rem;
}
.nav ul a {
  position: relative;
  padding: 4px 2px;
  transition: color 0.2s;
}
.nav ul a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.nav ul a:hover { color: var(--blue-deep); }
.nav ul a:hover::after { transform: scaleX(1); }

/* hamburger toggle */
.nav-toggle {
  display: none;
  appearance: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 60;
}
.nav-toggle-bar {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(40px, 6vh, 80px) clamp(20px, 6vw, 80px);
  overflow: hidden;
  min-height: calc(100vh - 110px);
  min-height: calc(100svh - 110px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/achtergrond.png");
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  z-index: -1;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
}

.hero-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.kicker {
  display: inline-block;
  font-family: var(--hand);
  font-weight: 700;
  color: var(--rose);
  background: #fff;
  padding: 6px 18px;
  border-radius: 999px;
  transform: rotate(-1.5deg);
  box-shadow: var(--shadow-card);
  margin-bottom: 28px;
  font-size: 1rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  margin: 0 0 28px;
  font-weight: 900;
  letter-spacing: -0.035em;
}
.hero h1 .word {
  display: inline-block;
  animation: dropIn 0.8s cubic-bezier(0.2, 0.9, 0.3, 1.2) both;
  margin: 0 0.18em;
}
.word-1 { animation-delay: 0.05s; color: var(--blue-deep); }
.word-2 { animation-delay: 0.18s; font-style: italic; color: var(--rose); font-family: var(--serif); }
.word-3 { animation-delay: 0.32s; }
.word-4 { animation-delay: 0.46s; color: var(--mustard); }
.hero h1 em { font-style: normal; color: var(--orange); }

@keyframes dropIn {
  0%   { opacity: 0; transform: translateY(-40px) rotate(-3deg); }
  100% { opacity: 1; transform: translateY(0) rotate(0); }
}

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto 40px;
}
.hero-sub strong {
  color: var(--blue-deep);
  font-family: var(--hand);
  font-weight: 700;
  font-size: 1.1em;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--hand);
  font-weight: 700;
  font-size: 1.05rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
  border: 2px solid var(--ink);
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 4px 4px 0 var(--orange);
}
.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--orange);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--teal);
}
.btn-ghost:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--teal);
  background: #fff;
}

.hero-scroll {
  font-family: var(--script);
  font-size: 1.3rem;
  color: var(--ink-soft);
  opacity: 0.7;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(10px); }
}

/* ---------- over ons ---------- */
.over {
  padding: clamp(60px, 10vh, 120px) clamp(20px, 6vw, 80px);
  max-width: 1200px;
  margin: 0 auto;
}
.over-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.over-text h2 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-family: var(--script);
  font-weight: 700;
  letter-spacing: 0;
}
.over-text h2 .ink { font-family: var(--script); font-style: normal; font-weight: 700; }
.over-text p { margin: 0 0 1rem; font-size: 1.08rem; color: var(--ink-soft); }

.features {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.features li {
  font-family: var(--hand);
  font-weight: 700;
  background: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.features li span { color: var(--rose); font-size: 1.15rem; }
.features li:nth-child(1) { transform: rotate(-2deg); }
.features li:nth-child(2) { transform: rotate(1.5deg); }

.polaroid {
  background: #fff;
  padding: 16px 16px 56px;
  box-shadow: 0 24px 50px -20px rgba(27, 45, 86, 0.4), 0 10px 20px -10px rgba(27, 45, 86, 0.2);
  transform: rotate(-3deg);
  transition: transform 0.4s ease;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}
.polaroid::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  width: 90px;
  height: 26px;
  background: rgba(244, 165, 116, 0.7);
  transform: translateX(-50%) rotate(-2deg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.polaroid img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.polaroid-caption {
  position: absolute;
  bottom: 12px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--script);
  font-size: 1.4rem;
  color: var(--ink);
}
.polaroid:hover { transform: rotate(-1deg) scale(1.02); }

/* ---------- wenskaarten ---------- */
.product {
  padding: clamp(60px, 10vh, 120px) clamp(20px, 6vw, 80px);
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.product-cards h2 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 20px; }
.product-intro {
  max-width: 720px;
  margin: 0 auto 60px;
  font-size: 1.15rem;
  color: var(--ink-soft);
}

.wiggle {
  display: inline-block;
  animation: wiggle 2.2s ease-in-out infinite;
  transform-origin: bottom center;
}
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}

.cards-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin: 40px 0;
  perspective: 1200px;
}
.card {
  margin: 0;
  background: #fff;
  padding: 14px 14px 44px;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1.2);
  position: relative;
}
.card img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: #eee;
}
.card figcaption {
  position: absolute;
  bottom: 10px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--script);
  font-size: 1.25rem;
  color: var(--ink-soft);
}
.card-cover  { transform: rotate(-4deg); }
.card-front  { transform: rotate(2deg) translateY(-16px); z-index: 2; }
.card-back   { transform: rotate(5deg); }
.card:hover  { transform: rotate(0deg) translateY(-10px) scale(1.04); z-index: 5; }

.product-footer {
  display: flex;
  justify-content: center;
  gap: clamp(30px, 6vw, 80px);
  margin-top: 60px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-number {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--blue-deep);
  font-style: italic;
}
.stat:nth-child(2) .stat-number { color: var(--rose); }
.stat:nth-child(3) .stat-number { color: var(--mustard); }
.stat-label {
  font-family: var(--hand);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ---------- tarot ---------- */
.product-tarot {
  position: relative;
  max-width: 1280px;
}
.product-tarot::before {
  content: "";
  position: absolute;
  inset: clamp(20px, 4vw, 60px);
  background: linear-gradient(135deg, rgba(217, 120, 120, 0.12), rgba(30, 58, 138, 0.08));
  border-radius: 40px;
  z-index: -1;
}

.tarot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  text-align: left;
}

.tarot-card-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}
.tarot-card {
  position: relative;
  width: 260px;
  aspect-ratio: 1082 / 1751;
  background: #fff;
  box-shadow: 0 30px 60px -20px rgba(27, 45, 86, 0.5), 0 10px 25px -10px rgba(27, 45, 86, 0.2);
  border-radius: 6px;
  overflow: hidden;
  z-index: 3;
  transform: rotate(-4deg);
  transition: transform 0.5s ease;
}
.tarot-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.tarot-card-ghost {
  position: absolute;
  width: 260px;
  aspect-ratio: 1082 / 1751;
  background:
    linear-gradient(135deg, #fdf6ea, #fbe7c8);
  border-radius: 6px;
  box-shadow: 0 20px 40px -20px rgba(27, 45, 86, 0.4);
}
.tarot-card-ghost::after {
  content: "★";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 3rem;
  color: rgba(30, 58, 138, 0.25);
}
.tarot-card-ghost-1 {
  transform: rotate(6deg) translate(35px, 20px);
  z-index: 2;
}
.tarot-card-ghost-2 {
  transform: rotate(-14deg) translate(-50px, 10px);
  z-index: 1;
}
.tarot-card-wrap:hover .tarot-card { transform: rotate(0deg) translateY(-10px); }
.tarot-card-wrap:hover .tarot-card-ghost-1 { transform: rotate(10deg) translate(60px, 30px); }
.tarot-card-wrap:hover .tarot-card-ghost-2 { transform: rotate(-20deg) translate(-80px, 20px); }
.tarot-card-ghost-1, .tarot-card-ghost-2, .tarot-card {
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.3, 1.2);
}

.tarot-text h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }

.quote {
  margin-top: 36px;
  padding: 24px 28px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  position: relative;
  transform: rotate(-1deg);
  max-width: 460px;
}
.quote-mark {
  position: absolute;
  top: -22px;
  left: 16px;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 5rem;
  color: var(--orange);
  line-height: 1;
}
.quote p {
  margin: 0;
  font-family: var(--script);
  font-size: 1.4rem;
  color: var(--ink);
  line-height: 1.3;
}
.quote-author {
  display: block;
  margin-top: 10px;
  font-family: var(--hand);
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* ---------- contact ---------- */
.contact {
  padding: clamp(60px, 10vh, 120px) clamp(20px, 6vw, 80px);
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.contact h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.contact .lead { max-width: 560px; margin: 0 auto 50px; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-card {
  background: #fff;
  padding: 36px 20px;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}
.contact-card:nth-child(1) { transform: rotate(-2deg); }
.contact-card:nth-child(2) { transform: rotate(1deg); }
.contact-card:nth-child(3) { transform: rotate(-1deg); }
.contact-card:hover {
  transform: rotate(0) translateY(-6px);
  border-color: var(--orange);
}
.contact-icon {
  font-size: 2.2rem;
  color: var(--blue-deep);
}
.contact-card:nth-child(2) .contact-icon { color: var(--rose); }
.contact-card:nth-child(3) .contact-icon { color: var(--teal); }
.contact-label {
  font-family: var(--hand);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}
.contact-value {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}
.contact-card--placeholder {
  cursor: default;
  opacity: 0.7;
}
.contact-card--placeholder:hover {
  transform: rotate(0) translateY(0);
  border-color: transparent;
}
.contact-cards--placeholder .contact-card:nth-child(1) { transform: rotate(-2deg); }
.contact-cards--placeholder .contact-card:nth-child(2) { transform: rotate(1deg); }
.contact-cards--placeholder .contact-card:nth-child(3) { transform: rotate(-1deg); }
.contact-card--placeholder .contact-value {
  font-family: var(--script);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--rose);
  text-align: center;
}

/* ---------- footer ---------- */
.footer {
  padding: 40px 20px 60px;
  text-align: center;
  border-top: 1px dashed rgba(27, 45, 86, 0.2);
  margin-top: 40px;
}
.footer p {
  font-family: var(--hand);
  font-weight: 700;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(27, 45, 86, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: clamp(20px, 5vw, 60px);
  cursor: zoom-out;
}
.lightbox.is-open {
  display: flex;
  animation: fadeIn 0.25s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lightbox-figure {
  margin: 0;
  background: #fff;
  padding: 18px 18px 56px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
  max-width: min(90vw, 720px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: default;
  animation: popIn 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.92) rotate(-2deg); }
  to   { opacity: 1; transform: scale(1) rotate(0); }
}
.lightbox-figure img {
  max-width: 100%;
  max-height: calc(90vh - 100px);
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}
.lightbox-figure figcaption {
  font-family: var(--script);
  font-size: 1.35rem;
  color: var(--ink);
  margin-top: 12px;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}
.lightbox-close:hover { transform: scale(1.1) rotate(90deg); }

.card { cursor: zoom-in; }
.card:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav ul {
    position: fixed;
    inset: 0;
    background: var(--bg);
    background-image:
      radial-gradient(ellipse at 20% 15%, rgba(111, 168, 214, 0.35), transparent 55%),
      radial-gradient(ellipse at 85% 80%, rgba(244, 165, 116, 0.3), transparent 55%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 2rem;
    padding: 80px 24px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: 55;
    overflow-y: auto;
  }
  .nav.is-open ul { transform: translateX(0); }
  .nav ul a { padding: 8px 16px; }
  .nav ul li:nth-child(1) a { color: var(--blue-deep); }
  .nav ul li:nth-child(2) a { color: var(--rose); }
  .nav ul li:nth-child(3) a { color: var(--mustard); font-style: italic; }
  .nav ul li:nth-child(4) a { color: var(--teal); }
  .nav.is-open ul li {
    animation: navItemIn 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.2) both;
  }
  .nav.is-open ul li:nth-child(1) { animation-delay: 0.1s; }
  .nav.is-open ul li:nth-child(2) { animation-delay: 0.18s; }
  .nav.is-open ul li:nth-child(3) { animation-delay: 0.26s; }
  .nav.is-open ul li:nth-child(4) { animation-delay: 0.34s; }

  .over-grid,
  .tarot-grid { grid-template-columns: 1fr; }
  .over-photo { order: -1; }
  .cards-showcase { grid-template-columns: 1fr; max-width: 380px; margin: 40px auto; }
  .card-cover, .card-front, .card-back { transform: rotate(-2deg) !important; }
  .card-front { transform: rotate(2deg) !important; }
  .contact-cards { grid-template-columns: 1fr; }
  .tarot-card-wrap { min-height: 440px; }
  .tarot-card, .tarot-card-ghost { width: 220px; }
}

@keyframes navItemIn {
  from { opacity: 0; transform: translateY(20px) rotate(-2deg); }
  to   { opacity: 1; transform: translateY(0) rotate(0); }
}

@media (max-width: 520px) {
  .hero h1 .word { display: inline; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn { text-align: center; }
}

/* respect motion pref */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}
