:root {
  --black: #111;
  --white: #faf8f5;
  --paper: #fffdf9;
  --gold: #c9a86a;
  --beige: #e9ded0;
  --taupe: #a29484;
  --gray: #6f6b66;
  --line: rgba(17, 17, 17, 0.12);
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
body.panel-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--black);
  color: white;
  padding: 10px 14px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 248, 245, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.topbar {
  text-align: center;
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: white;
  background: var(--black);
}
.nav-shell {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(250px, 360px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 1.5vw, 22px);
  padding: 0 clamp(18px, 4vw, 56px);
}
.brand {
  min-width: 0;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.45vw, 22px);
  white-space: nowrap;
}
.brand span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-logo {
  flex: 0 0 auto;
  width: clamp(68px, 6.5vw, 104px);
  height: 48px;
  object-fit: contain;
  object-position: center;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 14px;
  letter-spacing: 0.08em;
}
.nav-links {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1vw, 18px);
  font-size: 12px;
}
.nav-links a { position: relative; padding: 28px 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); }
.mega {
  position: absolute;
  left: 50%;
  top: 100%;
  width: min(720px, calc(100vw - 32px));
  padding: 24px;
  display: grid;
  gap: 8px;
  transform: translate(-50%, 8px);
  opacity: 0;
  pointer-events: none;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}
.nav-links:hover .mega { transform: translate(-50%, 0); opacity: 1; }
.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.icon-btn {
  min-width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--black);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.icon-btn:hover, .icon-btn:focus-visible { transform: translateY(-2px); border-color: var(--gold); background: white; }
.hamburger {
  display: none;
  place-items: center;
  gap: 4px;
  padding: 10px;
}
.hamburger span { display: block; width: 18px; height: 1px; background: var(--black); }
.cart-button { padding: 0 14px; width: auto; }
.cart-button span {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  margin-left: 5px;
  border-radius: 50%;
  color: white;
  background: var(--black);
  font-size: 11px;
}
.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--black);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}
.button.primary, .nav-cta {
  color: white;
  background: var(--black);
}
.button.ghost { background: rgba(255,255,255,0.55); }
.button:hover, .nav-cta:hover { transform: translateY(-2px); border-color: var(--gold); background: var(--gold); color: var(--black); }
.wide { width: 100%; }

.hero {
  min-height: calc(100vh - 110px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250,248,245,0.96) 0%, rgba(250,248,245,0.82) 34%, rgba(250,248,245,0.08) 72%);
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(650px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: 9vh 0 14vh;
  animation: fadeUp 0.9s ease both;
}
.eyebrow, .section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: 0;
}
h1 { font-size: clamp(44px, 7vw, 92px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); }
.hero-copy p:not(.eyebrow) { max-width: 560px; margin: 22px 0; color: #393532; font-size: clamp(16px, 1.5vw, 19px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.section, .shop-band, .newsletter, .footer {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}
.section-head, .shop-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.section-head a { color: var(--gray); border-bottom: 1px solid var(--gold); }
.category-grid, .product-grid, .trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.category-card {
  min-height: 290px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(17,17,17,0.06);
}
.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.9), transparent 25%),
    linear-gradient(135deg, rgba(17,17,17,0.08), rgba(201,168,106,0.28));
  transform: scale(1);
  transition: transform 0.45s ease;
}
.category-card:hover::before { transform: scale(1.08); }
.category-card > * { position: relative; }
.category-card span { color: var(--gold); }
.category-card a { width: max-content; border-bottom: 1px solid currentColor; }
.tone-b { background: #efe5d7; }
.tone-c { background: #f6eee7; }
.tone-d { background: #ece9e2; }
.tone-e { background: #f9f2e8; }
.tone-f { background: #e7dacd; }

.shop-band { background: var(--paper); border-block: 1px solid var(--line); }
.search-box {
  min-width: min(410px, 100%);
  display: grid;
  gap: 7px;
  color: var(--gray);
  font-size: 12px;
}
input, select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: white;
  color: var(--black);
}
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 24px; }
.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  padding: 10px 16px;
  cursor: pointer;
}
.chip.active { color: white; background: var(--black); border-color: var(--black); }
.product-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 14px 34px rgba(17,17,17,0.07);
  animation: fadeUp 0.45s ease both;
}
.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--beige);
}
.product-media::before, .product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/lumiere-hero.png");
  background-size: cover;
  background-position: var(--pos, 68% 55%);
  transition: opacity 0.3s ease, transform 0.5s ease;
}
.product-media::after {
  background-position: var(--hover-pos, 80% 70%);
  opacity: 0;
}
.product-card:hover .product-media::before { transform: scale(1.06); }
.product-card:hover .product-media::after { opacity: 1; transform: scale(1.05); }
.badge, .wishlist {
  position: absolute;
  top: 14px;
  z-index: 1;
}
.badge {
  left: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: white;
  background: var(--black);
  font-size: 12px;
}
.wishlist { right: 14px; }
.quick {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  opacity: 0;
  transform: translateY(10px);
}
.product-card:hover .quick { opacity: 1; transform: translateY(0); }
.product-meta { display: grid; gap: 8px; padding: 0 4px 6px; }
.product-top { display: flex; justify-content: space-between; gap: 12px; }
.rating { color: var(--gold); font-size: 13px; }
.rating span { color: var(--gray); }
.price { font-size: 20px; font-weight: 700; }
s { color: var(--gray); font-weight: 400; margin-left: 8px; }
.swatches, .lengths { display: flex; gap: 8px; flex-wrap: wrap; }
.swatch, .length {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.length {
  width: auto;
  min-width: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 12px;
}

.promo {
  margin: clamp(40px, 7vw, 80px) clamp(18px, 5vw, 72px);
  min-height: 440px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 64px);
  color: white;
  background:
    linear-gradient(90deg, rgba(17,17,17,0.78), rgba(17,17,17,0.18)),
    url("assets/lumiere-hero.png") center / cover;
}
.promo p:not(.eyebrow) { max-width: 560px; }
.promo .button { border-color: white; background: white; color: var(--black); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}
.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery-main {
  grid-column: 1 / -1;
  max-height: 680px;
  overflow: hidden;
  background: var(--beige);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-main:hover img { transform: scale(1.08); }
.thumb {
  min-height: 52px;
  border: 1px solid var(--line);
  background: white;
  cursor: pointer;
}
.thumb.active { border-color: var(--gold); background: #fbf3e8; }
.product-detail {
  position: sticky;
  top: 128px;
  display: grid;
  gap: 18px;
}
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.option-grid label { display: grid; gap: 6px; font-size: 13px; color: var(--gray); }
details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
summary { cursor: pointer; font-weight: 700; }

.trust-grid article, .summary, .checkout-form, .review-card, .admin-content {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.trust-grid article {
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.trust-grid article:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(17,17,17,0.08); }
.trust-grid span { color: var(--gold); font-size: 28px; }
.trust-grid p { color: var(--gray); }

.reviews { background: #f0e6d9; }
.review-card {
  max-width: 880px;
  min-height: 260px;
  display: grid;
  align-content: center;
  gap: 16px;
}
.review-person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: var(--black);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.insta-grid span {
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(17,17,17,0.08), rgba(201,168,106,0.3)),
    url("assets/lumiere-hero.png") center / cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.insta-grid span:nth-child(2n) { background-position: 75% 65%; }
.insta-grid span:nth-child(3n) { background-position: 45% 80%; }
.insta-grid span:hover { transform: scale(0.98); filter: saturate(1.1) contrast(1.04); }

.checkout-section { background: var(--paper); }
.cart-layout, .checkout-grid, .admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 18px;
}
.cart-line {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  background: white;
}
.cart-line + .cart-line { margin-top: 10px; }
.cart-thumb {
  aspect-ratio: 1;
  background: url("assets/lumiere-hero.png") 72% 65% / cover;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.qty button {
  width: 34px;
  height: 34px;
  border: 0;
  background: white;
  cursor: pointer;
}
.qty span { min-width: 28px; text-align: center; }
.summary { display: grid; gap: 12px; align-content: start; }
.summary p { display: flex; justify-content: space-between; margin: 0; }
.total { padding-top: 12px; border-top: 1px solid var(--line); font-size: 20px; }
.checkout-form { display: grid; gap: 12px; }
.checkout-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.checkout-progress span {
  display: grid;
  place-items: center;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-weight: 800;
}
.checkout-progress span.active {
  color: white;
  background: var(--black);
  border-color: var(--black);
}
.checkout-step { display: none; gap: 12px; }
.checkout-step.active { display: grid; }
.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pay-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.pay-row button, .option-grid button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  cursor: pointer;
}
.pay-row button.selected, .option-grid button.selected {
  color: white;
  background: var(--black);
  border-color: var(--black);
}
.shipping-options { display: grid; gap: 8px; }
.shipping-note {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(201, 168, 106, 0.14);
}
.shipping-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  background: white;
  cursor: pointer;
}
.shipping-option.selected {
  border-color: var(--black);
  box-shadow: inset 0 0 0 1px var(--black);
}
.shipping-option small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}
.review-box {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  background: white;
}
.review-box p { display: flex; justify-content: space-between; margin: 0; gap: 12px; }
button:disabled { opacity: 0.58; cursor: wait; }
.admin-grid { grid-template-columns: 260px 1fr; }
.admin-menu {
  display: grid;
  gap: 6px;
  align-content: start;
}
.admin-menu button {
  text-align: left;
  border: 1px solid var(--line);
  background: white;
  padding: 10px 12px;
  cursor: pointer;
}
.admin-menu button.active { color: white; background: var(--black); }
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}
.metric-row span {
  padding: 18px;
  border: 1px solid var(--line);
  background: white;
}
table { width: 100%; border-collapse: collapse; background: white; }
th, td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; }
.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: 28px;
  align-items: end;
  color: white;
  background: var(--black);
}
.newsletter form { display: flex; gap: 10px; }
.newsletter input { background: rgba(255,255,255,0.1); color: white; border-color: rgba(255,255,255,0.25); }
.newsletter .button { background: var(--gold); color: var(--black); border-color: var(--gold); }
.footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 24px;
  background: #0f0e0d;
  color: white;
}
.footer a { display: block; color: rgba(255,255,255,0.72); margin: 8px 0; }
.footer-logo {
  width: 150px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}
.payments, .copyright { color: rgba(255,255,255,0.62); }
.copyright { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,0.14); padding-top: 22px; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 30;
  width: min(440px, 100vw);
  height: 100vh;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform 0.3s ease;
  display: grid;
  grid-template-rows: auto 1fr;
}
.drawer:has(.product-configurator) { width: min(760px, 100vw); }
body.panel-open .drawer { transform: translateX(0); }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}
.drawer-body { padding: 18px; overflow: auto; }
.product-configurator {
  display: grid;
  grid-template-columns: minmax(210px, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  align-items: start;
}
.product-configurator.embedded { grid-template-columns: 1fr; }
.config-media {
  min-height: 360px;
  border: 1px solid var(--line);
  background: url("assets/lumiere-hero.png") var(--pos, 70% 60%) / cover;
}
.config-details {
  display: grid;
  gap: 12px;
}
.config-details h3 { margin: 0; font-size: clamp(24px, 3vw, 36px); line-height: 1; }
.attribute-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.attribute-grid .wide { grid-column: 1 / -1; }
.attribute-grid label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}
.attribute-grid select, .attribute-grid textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  background: white;
  padding: 10px 12px;
  font: inherit;
}
.attribute-grid textarea { resize: vertical; }
.config-actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}
.config-qty { height: 46px; }
.config-error {
  min-height: 20px;
  margin: 0;
  color: #9b241e;
  font-weight: 700;
}
.line-options {
  grid-column: 2 / -1;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
}
.line-options li { margin-top: 3px; }
.scrim {
  position: fixed;
  inset: 0;
  z-index: 25;
  opacity: 0;
  pointer-events: none;
  background: rgba(17,17,17,0.34);
  transition: opacity 0.3s ease;
}
body.panel-open .scrim { opacity: 1; pointer-events: auto; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 60;
  width: min(560px, calc(100vw - 28px));
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--black);
  color: white;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 14px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1420px) {
  .hamburger { display: grid; }
  .nav-shell { grid-template-columns: auto 1fr auto; }
  .brand { justify-self: start; }
  .nav-links {
    position: fixed;
    top: 111px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: grid; grid-template-columns: repeat(2, 1fr); }
  .nav-links a { padding: 10px 0; }
  .mega { display: none; }
  .nav-cta { display: none; }
}
@media (max-width: 900px) {
  .nav-actions .icon-btn:not(.cart-button) { display: none; }
  .hero { min-height: 720px; align-items: end; }
  .hero::after { background: linear-gradient(180deg, rgba(250,248,245,0.12), rgba(250,248,245,0.98) 58%); }
  .hero-copy { margin: 0 auto; padding-bottom: 48px; }
  .section-head, .shop-toolbar, .promo, .newsletter { align-items: start; flex-direction: column; display: flex; }
  .category-grid, .product-grid, .trust-grid, .insta-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .cart-layout, .checkout-grid, .admin-grid, .newsletter, .footer { grid-template-columns: 1fr; }
  .product-configurator { grid-template-columns: 1fr; }
  .config-media { min-height: 260px; }
  .product-detail { position: static; }
}
@media (max-width: 620px) {
  .topbar { font-size: 11px; }
  .brand span:last-child { display: none; }
  .brand-logo { width: 86px; height: 42px; }
  .nav-shell { min-height: 66px; gap: 10px; padding-inline: 14px; }
  .nav-links { top: 101px; grid-template-columns: 1fr !important; }
  .hero-actions, .newsletter form { flex-direction: column; }
  .category-grid, .product-grid, .trust-grid, .insta-grid, .option-grid, .three, .pay-row, .metric-row {
    grid-template-columns: 1fr;
  }
  .cart-line { grid-template-columns: 64px 1fr; }
  .cart-line > .qty { grid-column: 2; width: max-content; }
  .attribute-grid, .config-actions { grid-template-columns: 1fr; }
  .line-options { grid-column: 1 / -1; }
}

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