/*
 * AI Fashion — premium design system (Пакет 29.0 — "Quiet Luxury" editorial fashion).
 * Monochrome alabaster canvas, near-black ink (#1A1A1A), warm taupe/champagne accent used with
 * restraint, inverted-black CTAs, Playfair display serif for editorial headings + product names,
 * Inter grotesque for UI, generous whitespace, crisp 6–8px radii, soft high-blur shadows, and
 * quiet 160–260ms motion. Shared by storefront, mini app and cabinet.
 * Class names are STABLE (the JS builds against them) — only the visual layer is elevated.
 */
:root {
  --bg: #faf9f6;            /* alabaster */
  --bg-2: #f1efea;
  --surface: #ffffff;
  --surface-2: #f8f6f2;
  --ink: #1a1a1a;           /* high-contrast, not pure black */
  --ink-soft: #463f37;      /* darker secondary text for clear readability */
  --muted: #585247;         /* tertiary text — darker for clear readability */
  --line: #e2dbce;          /* hairline — a touch more defined for clearer structure */
  --line-strong: #d0c8b8;
  --accent: #8a7b67;        /* warm taupe — links + subtle highlights */
  --accent-2: #b9a78c;      /* champagne — hairline accents / soft gradients */
  --accent-ink: #ffffff;
  --accent-soft: #f1ece3;   /* taupe tint — soft fills + focus ring */
  --cta: #1a1a1a;           /* inverted-black primary CTA */
  --cta-hover: #38332c;     /* warm charcoal — visibly LIGHTER than --cta so the hover reads */
  --ok: #3f7d52; --ok-soft: #ecf2ed;
  --warn: #9c7321; --warn-soft: #f7f0e2;
  --err: #a8392c; --err-soft: #f6e9e7;
  /* soft, high-blur luxury shadows (near-monochrome, barely-there) */
  --shadow-sm: 0 1px 2px rgba(26,26,26,.03), 0 6px 22px rgba(26,26,26,.045);
  --shadow: 0 4px 14px rgba(26,26,26,.05), 0 24px 60px rgba(26,26,26,.07);
  --shadow-lg: 0 10px 30px rgba(26,26,26,.07), 0 48px 100px rgba(26,26,26,.10);
  --shadow-cta: 0 6px 20px rgba(26,26,26,.18);
  --radius: 10px; --radius-sm: 8px; --radius-lg: 14px;
  --maxw: 1180px;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(.21,.7,.25,1);
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: var(--sans);
  background:
    radial-gradient(1100px 560px at 82% -12%, rgba(185,167,140,.10), transparent 60%),
    var(--bg);
  background-attachment: fixed;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv01", "cv02";
}
a { color: var(--accent); text-decoration: none; transition: color .15s var(--ease); }
a:hover { color: var(--ink); }
img { max-width: 100%; display: block; }
::selection { background: rgba(138,123,103,.18); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---- top navigation ---- */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(250,249,246,.78);
  backdrop-filter: saturate(150%) blur(16px); -webkit-backdrop-filter: saturate(150%) blur(16px);
  border-bottom: 1px solid rgba(26,26,26,.06);
}
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-weight: 600; font-size: 21px; letter-spacing: .01em; color: var(--ink); }
.brand .mark { width: 26px; height: 26px; border-radius: 6px; background: var(--ink); box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); display: inline-block; position: relative; }
.brand .mark::after { content: ""; position: absolute; inset: 7px; border: 1px solid var(--accent-2); border-radius: 2px; }
.brand small { font-family: var(--sans); font-weight: 600; color: var(--muted); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; }
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* ---- buttons (crisp radii, inverted-black primary, no loud color) ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-size: 14px; font-weight: 600; line-height: 1; letter-spacing: .01em;
  padding: 14px 26px; border-radius: var(--radius-sm); border: 1px solid transparent; cursor: pointer;
  transition: transform .16s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
  white-space: nowrap; user-select: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--cta); color: var(--accent-ink); box-shadow: var(--shadow-cta); }
.btn-primary:hover { background: var(--cta-hover); color: var(--accent-ink); box-shadow: 0 10px 28px rgba(26,26,26,.24); transform: translateY(-1px); }
.btn-vk { background: var(--ink); color: #fff; box-shadow: var(--shadow-cta); }
.btn-vk:hover { background: var(--cta-hover); color: #fff; transform: translateY(-1px); box-shadow: 0 10px 28px rgba(26,26,26,.24); }
.btn-vk:hover svg { fill: #fff; }
.btn-vk svg { width: 19px; height: 19px; }
.btn-ghost { background: rgba(255,255,255,.6); color: var(--ink); border-color: var(--line-strong); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: var(--ink); background: #fff; color: var(--ink); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--cta-hover); color: #fff; transform: translateY(-1px); }
.btn-block { width: 100%; }
.btn:disabled { opacity: .45; cursor: not-allowed; box-shadow: none; transform: none; }
.btn-sm { font-size: 13px; padding: 11px 18px; }
.btn-text { background: none; border: 0; color: var(--accent); cursor: pointer; font: inherit; font-weight: 600; padding: 0; }
.btn-text:hover { color: var(--ink); }

/* ---- hero / landing ---- */
.hero { padding: 68px 0 40px; text-align: center; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 26px; padding: 8px 16px; border-radius: var(--radius-sm);
  color: var(--accent); background: transparent; border: 1px solid var(--line-strong);
}
.hero h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(42px, 6.8vw, 78px); line-height: 1.04; letter-spacing: -.015em; margin: 0 0 24px; }
.hero p.sub { font-size: clamp(16px, 2.1vw, 19px); color: var(--ink-soft); max-width: 560px; margin: 0 auto 36px; line-height: 1.6; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 44px 0; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); text-align: left; transition: transform .22s var(--ease), box-shadow .22s var(--ease); }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step .n { width: 40px; height: 40px; border-radius: 50%; background: var(--surface-2); color: var(--ink); font-family: var(--serif); font-weight: 600; font-size: 17px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; border: 1px solid var(--line-strong); }
.step h3 { margin: 0 0 8px; font-size: 17px; letter-spacing: -.01em; font-weight: 600; }
.step p { margin: 0; color: var(--ink-soft); font-size: 14px; }

/* ---- section heading ---- */
.section { padding: 10px 0 48px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin: 34px 0 24px; gap: 16px; }
.section-head h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 4vw, 38px); margin: 0; letter-spacing: -.015em; }
.section-head .muted { font-size: 14px; }

/* ---- category filters ---- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 28px; }
.chip { font: inherit; font-size: 13px; font-weight: 600; letter-spacing: .01em; padding: 10px 18px; border-radius: var(--radius-sm); border: 1px solid var(--line-strong); background: transparent; color: var(--ink-soft); cursor: pointer; transition: all .16s var(--ease); }
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---- product grid (storefront) ---- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px 24px; }
.product-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); cursor: pointer; position: relative;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .2s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.product-card.selected { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink), var(--shadow); }
.pc-media { aspect-ratio: 3/4; background: linear-gradient(155deg, #efece5, #f7f5f1 72%); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 13px; position: relative; overflow: hidden; }
.pc-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,26,.14), transparent 40%); opacity: 0; transition: opacity .26s var(--ease); pointer-events: none; }
.product-card:hover .pc-media::after { opacity: 1; }
.pc-media .ph { font-family: var(--serif); font-size: 54px; color: var(--line-strong); }
.pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product-card:hover .pc-media img { transform: scale(1.05); }
.pc-tag {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  background: rgba(255,255,255,.86); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.7); border-radius: var(--radius-sm); font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 11px; color: var(--ink); box-shadow: 0 2px 8px rgba(26,26,26,.07);
}
.pc-body { padding: 20px 18px 22px; }
.pc-title { font-family: var(--serif); font-weight: 500; font-size: 18px; letter-spacing: -.01em; margin: 0 0 6px; }
.pc-price { color: var(--ink-soft); font-size: 14px; font-weight: 500; letter-spacing: .02em; }
.pc-attempts { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.pc-cta { margin-top: 18px; }

/* ---- generic card / panels ---- */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.muted { color: var(--muted); }
.lead { color: var(--ink-soft); }

/* ---- try-on flow ---- */
.tryon { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; }
.tryon .panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.tryon h3 { font-family: var(--serif); font-weight: 600; margin: 0 0 18px; font-size: 21px; letter-spacing: -.01em; }
.field-label { font-size: 11.5px; color: var(--muted); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; }
/* Drag & drop uploader — intuitive, premium */
.uploader { border: 1.5px dashed var(--line-strong); border-radius: var(--radius); padding: 44px 28px; text-align: center; color: var(--muted); cursor: pointer; transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease); background: var(--surface-2); }
.uploader:hover, .uploader.dragover { border-color: var(--accent); background: var(--accent-soft); transform: translateY(-1px); }
.uploader.dragover { border-style: solid; }
.uploader .up-icon { color: var(--ink); margin-bottom: 14px; opacity: .85; }
.uploader .up-icon svg { display: block; margin: 0 auto; }
.uploader div:first-of-type { font-size: 15.5px; color: var(--ink); font-weight: 600; }
.uploader input { display: none; }
.preview { margin-top: 18px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #f2efea; box-shadow: var(--shadow-sm); }
.preview img { width: 100%; max-height: 400px; object-fit: contain; }
.disclaimer { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: var(--ink-soft); margin: 20px 0; }
.disclaimer input { margin-top: 3px; accent-color: var(--ink); }

select, input[type=text], input[type=email], input[type=password], input[type=number], textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--ink); background: var(--surface);
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm); padding: 13px 15px; outline: none;
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
select:focus, input:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }

/* ---- status timeline (monochrome, editorial) ---- */
.statusbar { display: flex; flex-direction: column; gap: 14px; margin-top: 12px; }
.sline { display: flex; align-items: center; gap: 13px; font-size: 14px; color: var(--muted); transition: color .2s var(--ease); }
.sline .dot { width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--line-strong); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; transition: all .25s var(--ease); }
.sline.done { color: var(--ink); }
.sline.done .dot { background: var(--ink); border-color: var(--ink); color: #fff; }
.sline.active { color: var(--ink); font-weight: 600; }
.sline.active .dot { border-color: var(--ink); color: var(--ink); animation: pulse-ring 1.8s var(--ease) infinite; }
.sline.failed { color: var(--err); }
.sline.failed .dot { background: var(--err); border-color: var(--err); color: #fff; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(26,26,26,.18); } 70% { box-shadow: 0 0 0 8px rgba(26,26,26,0); } 100% { box-shadow: 0 0 0 0 rgba(26,26,26,0); } }
.result img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 16px; }

/* ---- editorial try-on composition (Пакет 29.1) — magazine spread, not windows ---- */
.step-guide { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin: 2px 0 26px; }
.tryon-stage { animation: rise .42s var(--ease) both; }
.lookbook { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.lb-figure { position: sticky; top: 90px; }
.lb-media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: linear-gradient(155deg, #efece5, #f7f5f1 72%); aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; }
.lb-media img { width: 100%; height: 100%; object-fit: cover; }
.lb-media .ph { font-family: var(--serif); font-size: 66px; color: var(--line-strong); }
.lb-cap { margin-top: 18px; }
.lb-name { font-family: var(--serif); font-weight: 500; font-size: 25px; letter-spacing: -.01em; }
.lb-price { color: var(--ink-soft); font-size: 14px; letter-spacing: .02em; margin-top: 5px; }
.lb-actions { display: flex; flex-direction: column; }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: 13px; color: var(--ink-soft); margin: 20px 0 18px; line-height: 1.55; }
.consent input { margin-top: 2px; accent-color: var(--ink); width: 18px; height: 18px; flex-shrink: 0; }
.consent a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
/* result diptych — before / after as one composition */
.result-hero { text-align: center; margin-bottom: 28px; }
.result-hero h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 4.4vw, 40px); margin: 0 0 8px; letter-spacing: -.015em; }
.result-hero p { color: var(--ink-soft); margin: 0; font-size: 15px; }
.diptych { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
.dip-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: #f2efea; }
.dip-frame img { width: 100%; display: block; object-fit: cover; }
.dip-cap { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 13px; text-align: center; }
@media (max-width: 760px) {
  .lookbook { grid-template-columns: 1fr; gap: 26px; }
  .lb-figure { position: static; }
  .diptych { gap: 12px; }
}

/* ---- premium generation loader (pulsing glow + shimmer) ---- */
.lux-loader { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 36px 20px; text-align: center; }
.lux-orb { width: 76px; height: 76px; border-radius: 50%; background: radial-gradient(circle at 50% 40%, #fff, var(--accent-soft) 60%, var(--accent-2)); box-shadow: 0 0 0 0 rgba(185,167,140,.5); animation: orb-pulse 2s var(--ease) infinite; }
@keyframes orb-pulse { 0% { box-shadow: 0 0 0 0 rgba(185,167,140,.45); transform: scale(.96); } 70% { box-shadow: 0 0 0 26px rgba(185,167,140,0); transform: scale(1); } 100% { box-shadow: 0 0 0 0 rgba(185,167,140,0); transform: scale(.96); } }
.lux-loader .lux-status { margin-top: 20px; font-family: var(--serif); font-size: 19px; color: var(--ink); letter-spacing: -.01em; min-height: 26px; animation: fade-cycle .5s var(--ease); }
.lux-loader .lux-sub { margin-top: 6px; font-size: 13px; color: var(--muted); }
@keyframes fade-cycle { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* ---- avatar / profile ---- */
.avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 15px; overflow: hidden; box-shadow: 0 2px 8px rgba(26,26,26,.12); }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile { display: flex; align-items: center; gap: 11px; }
.profile .pn { font-size: 14px; font-weight: 600; line-height: 1.15; letter-spacing: -.01em; }
.profile .pe { font-size: 12px; color: var(--muted); }

/* ---- states ---- */
.spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid var(--line-strong); border-top-color: var(--ink); border-radius: 50%; animation: spin .8s linear infinite; vertical-align: -3px; }
@keyframes spin { to { transform: rotate(360deg); } }
.empty { text-align: center; color: var(--muted); padding: 72px 28px; border: 1px dashed var(--line-strong); border-radius: var(--radius); background: var(--surface); }
.empty .big { font-family: var(--serif); font-size: 26px; color: var(--ink); margin-bottom: 10px; letter-spacing: -.01em; }
/* Unified notice family (Пакет 29.3): white card + a 3px colour bar matching the toast palette,
   dark readable text. Inline alerts and toasts now read as one system. */
.alert { border-radius: var(--radius-sm); padding: 13px 16px; font-size: 14px; font-weight: 500; margin-bottom: 16px; background: var(--surface); color: var(--ink); border: 1px solid var(--line); border-left: 3px solid var(--muted); box-shadow: var(--shadow-sm); }
.alert.err { border-left-color: var(--err); }
.alert.ok { border-left-color: var(--ok); }
.alert.info { border-left-color: var(--accent); }
.badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; letter-spacing: .04em; padding: 5px 11px; border-radius: var(--radius-sm); background: var(--surface-2); color: var(--ink-soft); border: 1px solid var(--line); }
.badge.ok { background: var(--ok-soft); color: var(--ok); border-color: #c4ddc9; }
.badge.warn { background: var(--warn-soft); color: var(--warn); border-color: #e7d4ad; }
.badge.err { background: var(--err-soft); color: var(--err); border-color: #e4c4be; }

/* ---- skeleton (premium loading) ---- */
.skeleton { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.skeleton .sk-media { aspect-ratio: 3/4; }
.skeleton .sk-line { height: 13px; border-radius: 6px; margin: 16px 18px 0; }
.skeleton .sk-line.short { width: 52%; margin-bottom: 18px; }
.sk-media, .sk-line { background: linear-gradient(100deg, #efece6 30%, #f8f6f2 50%, #efece6 70%); background-size: 220% 100%; animation: shimmer 1.4s var(--ease) infinite; }
@keyframes shimmer { to { background-position: -120% 0; } }

/* ---- entrance motion ---- */
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.product-grid > .product-card { animation: rise .42s var(--ease) both; }
.hero > * { animation: rise .5s var(--ease) both; }

.footer { border-top: 1px solid var(--line); padding: 36px 0; color: var(--muted); font-size: 13px; text-align: center; }
.footer a { color: var(--ink-soft); }

/* ---- legal documents (privacy / offer) — editorial, readable (Пакет 29.4) ---- */
.legal { max-width: 820px; margin: 0 auto; padding: 44px 0 72px; }
.legal .legal-back { display: inline-block; margin-bottom: 22px; font-size: 13px; }
.legal h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 4.4vw, 40px); letter-spacing: -.02em; margin: 0 0 10px; }
.legal .legal-meta { color: var(--muted); font-size: 13px; margin: 0 0 28px; }
.legal .legal-intro p { color: var(--ink); }
.legal h2 { font-family: var(--serif); font-weight: 600; font-size: 20px; letter-spacing: -.01em; margin: 34px 0 12px; padding-top: 20px; border-top: 1px solid var(--line); }
.legal section:first-of-type h2 { border-top: 0; padding-top: 0; margin-top: 8px; }
.legal p { margin: 0 0 12px; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.legal ul { margin: 0 0 14px; padding-left: 22px; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.legal li { margin-bottom: 7px; }
.legal .legal-contacts { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.legal .legal-contacts p { color: var(--ink); margin: 0 0 6px; }

@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
  .tryon { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 32px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 18px 14px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
