:root {
  --bg: #f7f5ef;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --ink: #141414;
  --muted: #656b70;
  --border: #dedbd3;
  --line: #ebe7dc;
  --steel: #2f6f9f;
  --lime: #a9d933;
  --coral: #ff5b52;
  --coral-dark: #df443c;
  --shadow: 0 18px 40px rgba(20, 20, 20, 0.12);
  --radius: 8px;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.drawer-open,
body.is-nav-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(320px, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  min-height: 72px;
  padding: 12px clamp(18px, 3vw, 44px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 30px;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--ink);
}

.brand-mark::before {
  width: 30px;
  height: 13px;
  left: 2px;
  top: 2px;
}

.brand-mark::after {
  width: 30px;
  height: 13px;
  right: 1px;
  bottom: 2px;
}

.brand-mark span:first-child {
  width: 13px;
  height: 13px;
  left: 4px;
  bottom: 2px;
  background: var(--surface);
}

.brand-mark span:last-child {
  width: 13px;
  height: 13px;
  right: 3px;
  top: 2px;
  background: var(--surface);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
  min-width: 0;
}

.main-nav a {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--steel);
  border-bottom-color: var(--lime);
  outline: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 8px;
  width: clamp(190px, 17vw, 260px);
  height: 44px;
  padding: 0 12px;
  color: var(--muted);
  background: #f0eee7;
  border: 1px solid transparent;
  border-radius: var(--radius);
}

.search-field:focus-within {
  color: var(--ink);
  border-color: var(--steel);
  background: var(--surface-strong);
}

.search-field input {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 14px;
}

.icon-button,
.cart-button,
.primary-link,
.secondary-link,
.checkout-button,
.footer-checkout,
.product-card button,
.filters-heading button,
.segmented button,
.qty-button {
  min-height: 42px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-strong);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.icon-button:hover,
.cart-button:hover,
.primary-link:hover,
.secondary-link:hover,
.checkout-button:hover,
.footer-checkout:hover,
.product-card button:hover,
.filters-heading button:hover,
.segmented button:hover,
.qty-button:hover {
  transform: translateY(-1px);
}

.icon-button:focus-visible,
.cart-button:focus-visible,
.primary-link:focus-visible,
.secondary-link:focus-visible,
.checkout-button:focus-visible,
.footer-checkout:focus-visible,
.product-card button:focus-visible,
.filters-heading button:focus-visible,
.segmented button:focus-visible,
.qty-button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(169, 217, 51, 0.55);
  outline-offset: 2px;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  padding: 0;
}

.nav-toggle {
  display: none;
}

.cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  white-space: nowrap;
}

.cart-button strong {
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 999px;
  background: var(--lime);
  color: #172003;
  font-size: 12px;
}

main {
  width: 100%;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 84px);
  min-height: calc(100svh - 72px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 92px) clamp(18px, 4vw, 64px) clamp(34px, 5vw, 64px);
}

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

.hero-copy h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(42px, 5.7vw, 86px);
  line-height: 0.98;
  font-weight: 900;
}

.hero-copy p {
  margin: 24px 0 0;
  max-width: 520px;
  color: #3f4549;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  padding: 0 20px;
}

.primary-link {
  border-color: var(--coral);
  background: var(--coral);
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 91, 82, 0.26);
}

.primary-link:hover {
  background: var(--coral-dark);
}

.secondary-link {
  border-color: #b8c7cf;
  color: var(--steel);
}

.hero-media {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: minmax(220px, 1fr) minmax(180px, 0.76fr);
  gap: 14px;
  min-height: 560px;
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 10% 8% 6% 6%;
  z-index: -1;
  background:
    linear-gradient(130deg, rgba(47, 111, 159, 0.24), transparent 56%),
    linear-gradient(30deg, rgba(169, 217, 51, 0.24), transparent 45%),
    #ece8df;
  border: 1px solid var(--line);
  border-radius: 8px;
  transform: rotate(-1deg);
}

.hero-product {
  overflow: hidden;
  background-color: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-product-large {
  grid-row: span 2;
}

.hero-product-wide {
  min-height: 210px;
}

.product-visual {
  background-repeat: no-repeat;
  background-size: 500% 200%;
  background-position: var(--pos-x, 0%) var(--pos-y, 0%);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--border);
}

.trust-strip div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  background: var(--surface-strong);
  color: #32383c;
  font-size: 14px;
  font-weight: 700;
}

.trust-strip svg {
  color: var(--ink);
}

.catalog-shell {
  display: grid;
  grid-template-columns: 284px minmax(0, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 64px) 58px;
}

.filters-panel {
  position: sticky;
  top: 72px;
  align-self: start;
  min-height: calc(100svh - 72px);
  padding: 28px 20px 28px 0;
  border-right: 1px solid var(--border);
}

.filters-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.filters-heading h2,
.filter-block h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
}

.filters-heading button {
  min-height: 34px;
  padding: 0 10px;
  color: var(--steel);
  background: transparent;
}

.filter-options {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.filter-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #3c4145;
  font-size: 14px;
  font-weight: 700;
}

.filter-option input {
  width: 16px;
  height: 16px;
  accent-color: var(--lime);
}

.filter-option span:first-of-type {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.filter-block {
  display: grid;
  gap: 12px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.filter-block p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.range-label {
  display: flex;
  justify-content: space-between;
  color: #4c5458;
  font-size: 13px;
  font-weight: 800;
}

.filter-block input[type="range"] {
  width: 100%;
  accent-color: var(--lime);
}

.catalog-content {
  min-width: 0;
  padding: 28px 0 0 32px;
}

.catalog-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.catalog-toolbar h2 {
  margin: 0 0 4px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
  font-weight: 900;
}

.catalog-toolbar p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.toolbar-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.segmented {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.segmented button {
  min-height: 40px;
  padding: 0 12px;
  border: 0;
  border-right: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  color: #4b5154;
  font-size: 13px;
}

.segmented button:last-child {
  border-right: 0;
}

.segmented button.is-active {
  background: #172a34;
  color: #fff;
}

.sort-field {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.sort-field select {
  border: 0;
  color: var(--ink);
  background: transparent;
  outline: 0;
  font-size: 13px;
  font-weight: 800;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  min-height: 360px;
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: #c8d4d7;
  box-shadow: 0 14px 26px rgba(20, 20, 20, 0.1);
}

.product-card .product-visual {
  aspect-ratio: 1.08 / 1;
  width: 100%;
  background-color: #f9f7f1;
  border-bottom: 1px solid var(--line);
}

.product-info {
  display: grid;
  gap: 7px;
  padding: 14px 14px 12px;
}

.product-info h3 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.28;
  font-weight: 850;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 26px;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #eef3f1;
  color: #4d5a5d;
  font-size: 12px;
  font-weight: 800;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 14px 14px;
}

.product-price {
  font-size: 19px;
  font-weight: 900;
}

.product-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  padding: 0 12px;
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.product-card button:hover {
  background: var(--steel);
  border-color: var(--steel);
}

.empty-state {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 32px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 64px);
  background: #101416;
  color: #fff;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  font-size: 17px;
}

.site-footer span {
  color: #b8c4c9;
  font-size: 14px;
}

.footer-checkout {
  padding: 0 16px;
  border-color: rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #fff;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(8, 10, 11, 0.45);
}

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-rows: auto minmax(110px, 1fr) auto auto;
  width: min(470px, 100vw);
  max-width: 100%;
  background: var(--surface-strong);
  box-shadow: -24px 0 48px rgba(20, 20, 20, 0.2);
  transform: translateX(104%);
  transition: transform 220ms ease;
}

body.drawer-open .cart-drawer {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.drawer-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
  padding: 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.cart-item .product-visual {
  width: 74px;
  height: 74px;
  background-color: #f8f6f0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cart-item h3 {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.25;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
}

.qty-button {
  display: inline-grid;
  place-items: center;
  width: 30px;
  min-height: 30px;
  padding: 0;
  font-size: 15px;
}

.cart-qty {
  min-width: 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.cart-line-total {
  min-width: 72px;
  font-size: 14px;
  font-weight: 900;
  text-align: right;
}

.cart-summary {
  display: grid;
  gap: 12px;
  padding: 16px 18px 18px;
  border-top: 1px solid var(--border);
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #464c50;
  font-size: 14px;
}

.summary-total {
  align-items: baseline;
  padding-top: 6px;
  color: var(--ink) !important;
  font-size: 17px !important;
}

.summary-total strong {
  font-size: 24px;
}

.checkout-button {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border-color: var(--coral);
  background: var(--coral);
  color: #fff;
  box-shadow: 0 12px 22px rgba(255, 91, 82, 0.22);
}

.checkout-button:hover {
  background: var(--coral-dark);
}

.checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.payment-panel {
  display: grid;
  gap: 12px;
  max-height: 52vh;
  overflow: auto;
  padding: 18px;
  border-top: 1px solid var(--border);
  background: #fbfaf5;
}

.payment-panel h3 {
  margin: 0 0 2px;
  font-size: 18px;
  font-weight: 900;
}

.payment-methods {
  display: grid;
  gap: 8px;
}

.payment-methods label,
.payment-panel > label,
.payment-row label {
  display: grid;
  gap: 7px;
  color: #343a3e;
  font-size: 13px;
  font-weight: 800;
}

.payment-methods label {
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.payment-methods input {
  width: 16px;
  height: 16px;
  accent-color: var(--steel);
}

.payment-panel input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: var(--ink);
  font-size: 14px;
}

.payment-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.payment-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 80;
  width: min(420px, calc(100vw - 32px));
  padding: 14px 16px;
  background: #121719;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: inline-grid;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    z-index: 26;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 18px 18px;
    background: var(--surface-strong);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 32px rgba(20, 20, 20, 0.14);
  }

  body.is-nav-open .main-nav {
    display: grid;
  }

  .main-nav a {
    padding: 16px 6px;
    border-bottom: 1px solid var(--line);
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .search-field {
    flex: 1 1 auto;
    width: auto;
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    min-height: 430px;
  }

  .catalog-shell {
    grid-template-columns: 1fr;
  }

  .filters-panel {
    position: static;
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .filter-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-content {
    padding-left: 0;
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .toolbar-controls {
    flex-wrap: wrap;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
    padding: 10px 14px;
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 38px;
    height: 26px;
  }

  .main-nav {
    inset: 66px 0 auto 0;
  }

  .header-actions {
    gap: 8px;
  }

  .cart-button span {
    display: none;
  }

  .hero-section {
    padding: 34px 14px 28px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .primary-link,
  .secondary-link {
    min-width: 0;
    width: 100%;
  }

  .hero-media {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 210px 170px;
    min-height: 394px;
    gap: 10px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: 58px;
    justify-content: flex-start;
    padding: 0 18px;
  }

  .catalog-shell {
    padding: 0 14px 44px;
  }

  .filter-options {
    grid-template-columns: 1fr;
  }

  .segmented {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .segmented button:nth-child(2) {
    border-right: 0;
  }

  .segmented button:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .sort-field {
    width: 100%;
    justify-content: space-between;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product-card {
    min-height: 312px;
  }

  .product-info {
    padding: 12px 10px 10px;
  }

  .product-info h3 {
    font-size: 13px;
  }

  .product-bottom {
    display: grid;
    gap: 8px;
    padding: 0 10px 10px;
  }

  .product-price {
    font-size: 17px;
  }

  .product-card button {
    width: 100%;
    min-width: 0;
  }

  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .cart-drawer {
    width: 100vw;
  }

  .payment-panel {
    max-height: 47vh;
  }
}

@media (max-width: 430px) {
  .search-field {
    min-width: 0;
  }

  .search-field input::placeholder {
    color: transparent;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-media {
    grid-template-rows: 190px 154px;
    min-height: 354px;
  }

  .product-card .product-visual {
    aspect-ratio: 1.08 / 1;
  }

  .cart-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .cart-line-total {
    grid-column: 2;
    text-align: left;
  }
}

@media (max-width: 360px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 0;
  }

  .product-card .product-visual {
    aspect-ratio: 1.42 / 1;
  }
}

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