/* ============================================================
   payup.fun — a project board for builders.
   Editorial light look (kept). Board inspired by Product Hunt +
   Outbid: image-forward, minimal words, ranked by spend.
   ============================================================ */

:root {
  --bg: #FBF8EF;          /* warm paper */
  --panel: #F3EEDD;       /* ivory inset */
  --card: #FFFDF7;        /* card face, a touch lighter than paper */
  --ink: #1A160F;         /* warm near-black */
  --ink-soft: #4A4438;
  --muted: #8C8676;
  --gold: #B7852A;
  --rule: #DED8C3;        /* hairline */
  --serif-d: "Fraunces", Georgia, "Times New Roman", serif;
  --serif-b: "Spectral", Georgia, serif;
  --sans: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wrap: 1080px;
  --cat: var(--gold);     /* per-card category accent, set inline */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--serif-b); font-size: 18px; line-height: 1.7; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; }
::selection { background: var(--ink); color: var(--bg); }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-inline: 24px; }
h1, h2, h3 { font-family: var(--serif-d); font-weight: 600; margin: 0; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.opt { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; }

.eyebrow { font-family: var(--sans); text-transform: uppercase; font-size: 0.66rem; letter-spacing: 0.18em; font-weight: 500; color: var(--muted); margin: 0; }

/* ---------- buttons ---------- */
.btn { font-family: var(--sans); text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.14em; font-weight: 500; border-radius: 0; border: 1px solid var(--ink); padding: 13px 20px; cursor: pointer; background: var(--bg); color: var(--ink); transition: background .15s, color .15s, border-color .15s; }
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { display: block; width: 100%; }
.btn-social { background: transparent; text-transform: none; font-size: 0.88rem; letter-spacing: 0; font-weight: 500; width: 100%; margin-top: 10px; }
.btn-social:hover { border-color: var(--gold); }
.linkbtn { font-family: var(--sans); text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.14em; font-weight: 500; background: none; border: none; color: var(--ink); cursor: pointer; padding: 6px 2px; }
.linkbtn:hover { color: var(--gold); }
.linkbtn.center { display: block; margin: 14px auto 0; }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 40; background: rgba(251,248,239,0.9); backdrop-filter: blur(8px); border-bottom: 1px solid var(--rule); }
.nav-inner { display: flex; align-items: center; height: 66px; }
.brand { font-family: var(--serif-d); font-weight: 600; font-size: 1.55rem; letter-spacing: -0.02em; display: inline-flex; align-items: center; gap: 8px; }
.brand.small { font-size: 1.2rem; }
.brand-logo { height: 38px; width: auto; display: block; }
.brand.small .brand-logo { height: 26px; }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 18px; }

/* ---------- board header (minimal) ---------- */
.board { padding: 34px 0 70px; }
.board-top { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 22px; }
.claim { font-family: var(--serif-d); font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 600; letter-spacing: -0.02em; }
.claim b { color: var(--gold); }
.claim a { border-bottom: 2px solid var(--gold); }
.board-sub { font-family: var(--sans); text-transform: uppercase; font-size: 0.66rem; letter-spacing: 0.14em; color: var(--muted); }

/* controls row */
.controls { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.search { flex: 1 1 220px; min-width: 180px; }
.search input { width: 100%; font-family: var(--serif-b); font-size: 0.95rem; padding: 10px 14px; background: var(--card); border: 1px solid var(--rule); border-radius: 0; color: var(--ink); }
.search input:focus { outline: none; border-color: var(--gold); }
.seg { display: inline-flex; border: 1px solid var(--ink); }
.seg button { font-family: var(--sans); text-transform: uppercase; font-size: 0.62rem; letter-spacing: 0.12em; font-weight: 500; background: var(--bg); color: var(--ink); border: none; padding: 10px 13px; cursor: pointer; }
.seg button + button { border-left: 1px solid var(--ink); }
.seg button.on { background: var(--ink); color: var(--bg); }
.view-toggle button { padding: 10px 11px; font-size: 0.8rem; }

/* category chips */
.cat-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; }
.chip-btn { font-family: var(--sans); text-transform: uppercase; font-size: 0.62rem; letter-spacing: 0.1em; font-weight: 500; background: transparent; border: 1px solid var(--rule); color: var(--muted); padding: 7px 11px; cursor: pointer; transition: all .15s; }
.chip-btn:hover { border-color: var(--ink); color: var(--ink); }
.chip-btn.on { border-color: var(--ink); color: var(--ink); background: var(--panel); }
.chip-btn .ct { opacity: .6; margin-left: 5px; }

/* ---------- hero (editorial, restored) ---------- */
.hero { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; padding: 46px 0 38px; }
.hero-title { font-family: var(--serif-d); font-weight: 600; font-size: clamp(2.2rem, 5vw, 3.7rem); line-height: 1.0; letter-spacing: -0.025em; margin: 16px 0 18px; text-wrap: balance; }
.dek { font-size: 1.08rem; line-height: 1.55; color: var(--ink-soft); max-width: 42ch; margin: 0 0 22px; }
.hero-cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.textlink { font-family: var(--serif-b); font-size: 0.98rem; color: var(--ink); border-bottom: 1px solid var(--rule); padding-bottom: 2px; transition: color .15s, border-color .15s; }
.textlink:hover { color: var(--gold); border-color: var(--gold); }
.hero-featured { padding-top: 6px; }
.hero-top { margin-top: 16px; border-top: 1px solid var(--ink); }
.hero-top-row { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--rule); cursor: pointer; }
.hero-top-row:hover .hero-top-name { color: var(--gold); }
.hero-top-rank { font-family: var(--serif-d); font-size: 1.35rem; font-weight: 600; color: var(--cat); line-height: 1; }
.hero-top-name { font-family: var(--serif-d); font-size: 1.1rem; font-weight: 600; line-height: 1.1; transition: color .15s; }
.hero-top-cat { font-family: var(--sans); text-transform: uppercase; font-size: 0.58rem; letter-spacing: 0.14em; color: var(--muted); margin-top: 4px; }

/* ---------- board: All-time (main) + Today (side), both visible ---------- */
.col-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; padding-bottom: 11px; margin-bottom: 6px; border-bottom: 1px solid var(--ink); }
.col-count { font-family: var(--sans); text-transform: uppercase; font-size: 0.6rem; letter-spacing: 0.12em; color: var(--muted); }
.board-cols { display: grid; grid-template-columns: 1fr 288px; gap: 30px; align-items: start; }
.side-col { position: sticky; top: 82px; }
.trow { display: grid; grid-template-columns: 20px 40px 1fr; gap: 11px; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--rule); cursor: pointer; }
.trow:hover .tname { color: var(--gold); }
.trank { font-family: var(--serif-d); font-weight: 600; font-size: 0.95rem; color: var(--muted); text-align: center; }
.trow.top .trank { color: var(--gold); }
.tthumb { width: 40px; height: 40px; object-fit: cover; border: 1px solid var(--rule); }
.tbody { min-width: 0; }
.tname { font-family: var(--serif-d); font-size: 0.98rem; font-weight: 600; line-height: 1.1; transition: color .15s; }
.tspend { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cat); font-weight: 600; margin-top: 2px; }
.tspend span { color: var(--muted); }
.side-empty { color: var(--muted); font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.04em; padding: 16px 0; }

/* ---------- GRID cards (image-forward) ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(214px, 1fr)); gap: 16px; }
.card { position: relative; background: var(--card); border: 1px solid var(--rule); display: flex; flex-direction: column; transition: border-color .15s, transform .15s; overflow: hidden; }
.card:hover { border-color: var(--ink); transform: translateY(-2px); }
.card-cover { aspect-ratio: 16/9; width: 100%; object-fit: cover; display: block; background: var(--panel); border-bottom: 1px solid var(--rule); }
.card-rank { position: absolute; top: 10px; left: 10px; font-family: var(--serif-d); font-weight: 600; font-size: 0.95rem; background: var(--bg); border: 1px solid var(--ink); padding: 2px 9px; }
.card.top .card-rank { background: var(--gold); border-color: var(--gold); }
.card-body { padding: 14px 15px 15px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.card-cat { font-family: var(--sans); text-transform: uppercase; font-size: 0.58rem; letter-spacing: 0.14em; color: var(--cat); font-weight: 600; }
.card-name { font-family: var(--serif-d); font-size: 1.22rem; font-weight: 600; line-height: 1.1; }
.card-tag { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.4; flex: 1; }
.card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; padding-top: 10px; border-top: 1px solid var(--rule); }
.card-spend { font-family: var(--serif-d); font-weight: 600; font-size: 1.05rem; }
.card-spend small { font-family: var(--sans); text-transform: uppercase; font-size: 0.54rem; letter-spacing: 0.12em; color: var(--muted); display: block; }
.boost { font-family: var(--sans); text-transform: uppercase; font-size: 0.62rem; letter-spacing: 0.12em; font-weight: 600; border: 1px solid var(--ink); background: var(--bg); color: var(--ink); padding: 8px 12px; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; transition: all .15s; }
.boost:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.boost .up { font-size: 0.7rem; }

/* ---------- LIST rows (Product Hunt style) ---------- */
.list { border-top: 1px solid var(--rule); }
.row { display: grid; grid-template-columns: 40px 60px 1fr auto; gap: 16px; align-items: center; padding: 16px 6px; border-bottom: 1px solid var(--rule); transition: background .15s; }
.row:hover { background: var(--card); }
.row-rank { font-family: var(--serif-d); font-weight: 600; font-size: 1.3rem; color: var(--muted); text-align: center; }
.row.top .row-rank { color: var(--gold); }
.row-thumb { width: 60px; height: 60px; object-fit: cover; border: 1px solid var(--rule); background: var(--panel); }
.row-body { min-width: 0; }
.row-name { font-family: var(--serif-d); font-size: 1.2rem; font-weight: 600; line-height: 1.1; }
.row-name .row-cat { font-family: var(--sans); text-transform: uppercase; font-size: 0.56rem; letter-spacing: 0.12em; color: var(--cat); font-weight: 600; margin-left: 9px; vertical-align: middle; }
.row-tag { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.35; margin-top: 2px; }
.row-meta { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-top: 5px; display: flex; gap: 10px; }
.row-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.row-spend { font-family: var(--serif-d); font-weight: 600; font-size: 1.15rem; }

.empty { text-align: center; color: var(--muted); padding: 60px 20px; border: 1px dashed var(--rule); font-family: var(--sans); font-size: 0.85rem; letter-spacing: 0.04em; }

/* ---------- PROJECT PAGE ---------- */
.project { max-width: 720px; margin: 0 auto; padding: 30px 24px 80px; }
.back { font-family: var(--sans); text-transform: uppercase; font-size: 0.66rem; letter-spacing: 0.14em; color: var(--muted); display: inline-block; margin-bottom: 24px; }
.back:hover { color: var(--gold); }
.p-banner { width: 100%; aspect-ratio: 3/1; object-fit: cover; border: 1px solid var(--rule); margin-bottom: 24px; background: var(--panel); }
.p-hero { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 26px; }
.p-logo { width: 76px; height: 76px; object-fit: cover; border: 1px solid var(--rule); flex-shrink: 0; background: var(--panel); }
.p-hero-main { flex: 1; min-width: 0; }
.p-eyebrow { font-family: var(--sans); text-transform: uppercase; font-size: 0.62rem; letter-spacing: 0.16em; color: var(--cat); font-weight: 600; }
.p-title { font-family: var(--serif-d); font-size: clamp(1.9rem, 5vw, 2.7rem); font-weight: 600; line-height: 1.03; margin: 8px 0 8px; }
.badges { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 12px; }
.badge { font-family: var(--sans); text-transform: uppercase; font-size: 0.58rem; letter-spacing: 0.1em; font-weight: 600; border: 1px solid var(--rule); padding: 4px 8px; color: var(--ink-soft); }
.badge.rank { border-color: var(--ink); color: var(--ink); }
.badge.top { border-color: var(--gold); color: var(--gold); }
.badge.paid { color: var(--muted); }
.p-tag { font-size: 1.12rem; color: var(--ink-soft); margin: 0 0 18px; line-height: 1.5; }
.p-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.p-spend { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin: 28px 0; }
.p-stat { background: var(--card); padding: 16px 14px; }
.p-stat b { font-family: var(--serif-d); font-weight: 600; font-size: 1.5rem; display: block; }
.p-stat.rank b { color: var(--gold); }
.p-stat span { font-family: var(--sans); text-transform: uppercase; font-size: 0.56rem; letter-spacing: 0.12em; color: var(--muted); }
.p-take { margin: -8px 0 28px; }

.p-section { margin: 28px 0; }
.p-section h3 { font-family: var(--sans); text-transform: uppercase; font-size: 0.68rem; letter-spacing: 0.16em; color: var(--muted); font-weight: 500; margin-bottom: 12px; }
.p-about p { margin: 0 0 12px; }
.p-links { display: flex; flex-wrap: wrap; gap: 8px; }
.p-link { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.03em; border: 1px solid var(--rule); padding: 8px 13px; color: var(--ink); transition: all .15s; }
.p-link:hover { border-color: var(--gold); color: var(--gold); }
.p-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.p-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--rule); }
.p-meta { font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); display: flex; flex-wrap: wrap; gap: 16px; border-top: 1px solid var(--rule); padding-top: 16px; margin-top: 28px; }
.p-disc { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.03em; color: var(--muted); line-height: 1.7; margin-top: 16px; }

/* ---------- ABOUT PAGE ---------- */
.about { max-width: 680px; margin: 0 auto; padding: 40px 24px 80px; }
.about h1 { font-family: var(--serif-d); font-size: clamp(2rem, 5vw, 3rem); font-weight: 600; line-height: 1.05; margin-bottom: 10px; }
.about .lead { font-size: 1.15rem; color: var(--ink-soft); margin: 0 0 34px; }
.about h2 { font-family: var(--serif-d); font-size: 1.5rem; margin: 34px 0 10px; }
.about p { margin: 0 0 14px; }
.about em { font-style: italic; color: var(--gold); }
.steps3 { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 16px; }
.steps3 li { border-top: 1px solid var(--ink); padding-top: 16px; }
.steps3 .k { font-family: var(--serif-d); color: var(--gold); font-weight: 600; }
.steps3 h3 { font-family: var(--serif-d); font-size: 1.3rem; margin: 8px 0 6px; }
.steps3 p { color: var(--ink-soft); margin: 0; }
.about-figure { font-family: var(--serif-d); font-size: 2.4rem; font-weight: 600; color: var(--ink); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--rule); padding: 30px 0; background: var(--panel); }
.footer-inner { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-family: var(--sans); text-transform: uppercase; font-size: 0.64rem; letter-spacing: 0.12em; color: var(--ink-soft); }
.footer-links a:hover { color: var(--gold); }
.footer-fine { margin-left: auto; font-family: var(--sans); font-size: 0.64rem; letter-spacing: 0.04em; color: var(--muted); }

/* ---------- modals / sheets ---------- */
.overlay { position: fixed; inset: 0; z-index: 100; background: rgba(26,22,15,0.55); backdrop-filter: blur(3px); display: grid; place-items: center; padding: 20px; overflow-y: auto; }
.overlay[hidden] { display: none; }
.sheet { background: var(--bg); border: 1px solid var(--ink); width: 100%; max-width: 400px; padding: 30px 28px; position: relative; margin: auto; }
.sheet-wide { max-width: 520px; }
.sheet-close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 1.4rem; color: var(--muted); cursor: pointer; line-height: 1; }
.sheet-close:hover { color: var(--ink); }
.sheet-brand { font-family: var(--serif-d); font-weight: 600; font-size: 1.4rem; text-align: center; margin-bottom: 18px; }
.sheet-title { font-family: var(--serif-d); font-size: 1.6rem; font-weight: 600; margin: 0 0 6px; }
.sheet-sub { color: var(--ink-soft); font-size: 0.95rem; margin: 0 0 20px; }
.sheet-form { display: flex; flex-direction: column; gap: 12px; }
.sheet input, .field input, .field select, .field textarea { width: 100%; font-family: var(--serif-b); font-size: 0.98rem; padding: 11px 13px; background: var(--card); border: 1px solid var(--rule); border-radius: 0; color: var(--ink); }
.field textarea { resize: vertical; line-height: 1.5; }
.sheet input:focus, .field input:focus, .field select:focus, .field textarea:focus, #s-amount:focus { outline: none; border-color: var(--gold); }
.field { display: block; }
.field-label { display: block; font-family: var(--sans); text-transform: uppercase; font-size: 0.62rem; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 6px; }
.field-label.sm { font-size: 0.58rem; }
.group-label { margin: 4px 0 2px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 4px; }
.code-input { text-align: center; font-family: var(--sans); font-size: 1.5rem; letter-spacing: 0.5em; padding-left: 0.5em; }
.code-email { font-style: italic; }
.or { display: flex; align-items: center; gap: 12px; color: var(--muted); font-family: var(--sans); text-transform: uppercase; font-size: 0.64rem; letter-spacing: 0.14em; margin: 16px 0 2px; }
.or::before, .or::after { content: ""; flex: 1; height: 1px; background: var(--rule); }
.sheet-fine { font-family: var(--sans); font-size: 0.64rem; letter-spacing: 0.03em; color: var(--muted); text-align: center; margin: 14px 0 0; line-height: 1.6; }
.sheet-fine strong { color: var(--ink-soft); }

.amount-field { margin: 6px 0 4px; }
.stepper { display: flex; gap: 10px; margin-top: 6px; }
.step-btn { width: 46px; border: 1px solid var(--ink); background: var(--bg); font-size: 1.3rem; cursor: pointer; color: var(--ink); }
.step-btn:hover { background: var(--gold); border-color: var(--gold); }
.amount-display { flex: 1; display: flex; align-items: center; justify-content: center; border: 1px solid var(--ink); font-family: var(--serif-d); font-size: 1.6rem; font-weight: 600; }
.amount-display input { border: none !important; text-align: center; font-family: var(--serif-d); font-size: 1.6rem; font-weight: 600; padding: 10px 4px; width: 100%; background: transparent; -moz-appearance: textfield; }
.amount-display input::-webkit-outer-spin-button, .amount-display input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.amount-quick { display: flex; gap: 8px; margin-top: 10px; }
.amount-quick button { flex: 1; font-family: var(--sans); font-size: 0.76rem; background: transparent; border: 1px solid var(--rule); padding: 8px 0; cursor: pointer; color: var(--ink-soft); }
.amount-quick button:hover { border-color: var(--gold); color: var(--gold); }
.place-line { font-size: 0.98rem; margin: 14px 0 0; }
.place-line strong { font-family: var(--serif-d); }
.give-back { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.04em; color: var(--gold); text-align: center; margin: 16px 0; padding: 11px; border: 1px solid var(--rule); }
.promote-success { text-align: center; padding: 12px 0; }
.success-rank { font-family: var(--serif-d); font-size: 4rem; font-weight: 600; color: var(--gold); line-height: 1; margin: 8px 0; }
.success-line { color: var(--ink-soft); margin: 0 0 24px; }
.success-line strong { font-family: var(--serif-d); color: var(--ink); }
.success-actions { display: flex; gap: 10px; }
.success-actions .btn { flex: 1; }

/* ---------- toasts ---------- */
.toast-wrap { position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 200; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.toast { background: var(--ink); color: var(--bg); font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.03em; padding: 11px 18px; animation: tin .3s ease; }
@keyframes tin { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 24px; padding-top: 34px; }
  .board-cols { grid-template-columns: 1fr; gap: 34px; }
  .side-col { position: static; }
}
@media (max-width: 620px) {
  body { font-size: 17px; }
  .grid { grid-template-columns: 1fr; }
  .row { grid-template-columns: 30px 48px 1fr; gap: 12px; }
  .row-thumb { width: 48px; height: 48px; }
  .row-right { grid-column: 2 / -1; flex-direction: row; align-items: center; gap: 12px; justify-content: flex-start; }
  .p-spend { grid-template-columns: 1fr 1fr; }
  .field-row, .links-grid { grid-template-columns: 1fr; }
  .footer-fine { margin-left: 0; width: 100%; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }
