:root {
    --bg: #f5f5f7;
    --surface: #ffffff;
    --surface-2: #f0f0f3;
    --ink: #17181d;
    --muted: #737680;
    --line: #e3e3e8;
    --accent: #ff4f69;
    --accent-2: #ff7f58;
    --accent-dark: #e73c57;
    --dark: #101116;
    --dark-2: #1a1b22;
    --green: #20a66a;
    --yellow: #f4b736;
    --red: #e44355;
    --blue: #3976ed;
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;
    --shadow: 0 18px 60px rgba(17, 18, 24, .09);
    --bottom-nav: 70px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: "Noto Sans Georgian", "Segoe UI", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
body:not(.feed-page):not(.auth-page):not(.install-page) { padding-bottom: 0; }
img, video, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
.icon { width: 22px; height: 22px; flex: 0 0 auto; }
.muted { color: var(--muted); }
.eyebrow {
    margin: 0 0 8px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 850; letter-spacing: -.04em; }
.brand.light { color: #fff; }
.brand-mark {
    display: inline-grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 8px 20px rgba(255, 79, 105, .26);
    font-weight: 900;
}
.site-header {
    position: sticky;
    z-index: 80;
    top: 0;
    display: grid;
    grid-template-columns: 1fr minmax(300px, 540px) 1fr;
    align-items: center;
    gap: 30px;
    height: 72px;
    padding: 0 max(24px, calc((100vw - 1320px) / 2));
    border-bottom: 1px solid rgba(229, 229, 233, .85);
    background: rgba(255, 255, 255, .89);
    backdrop-filter: blur(18px);
}
.header-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: var(--surface-2);
    transition: .2s ease;
}
.header-search:focus-within { border-color: rgba(255, 79, 105, .35); background: #fff; box-shadow: 0 0 0 4px rgba(255, 79, 105, .08); }
.header-search .icon { width: 19px; color: var(--muted); }
.header-search input { width: 100%; height: 44px; padding: 0; border: 0; outline: 0; background: transparent; }
.desktop-nav { display: flex; justify-content: flex-end; align-items: center; gap: 24px; font-size: 13px; font-weight: 700; }
.desktop-nav a:hover { color: var(--accent); }
.cart-link { position: relative; display: flex; }
.cart-link span, .nav-icon-wrap b {
    position: absolute;
    display: grid;
    place-items: center;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border: 2px solid #fff;
    border-radius: 20px;
    color: #fff;
    background: var(--accent);
    font-size: 9px;
    line-height: 1;
}
.cart-link span { top: -10px; right: -12px; }
.page-main { min-height: calc(100vh - 72px); }
.content-shell { width: min(1240px, calc(100% - 40px)); margin: 0 auto; padding: 42px 0 100px; }
.site-footer { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 18px 40px; width: min(1240px, calc(100% - 40px)); margin: 0 auto; padding: 30px 0 38px; border-top: 1px solid var(--line); }
.site-footer .brand { display: inline-flex; }
.site-footer p { margin: 7px 0 0; color: var(--muted); font-size: 10px; }
.site-footer nav { display: flex; gap: 20px; color: var(--muted); font-size: 10px; font-weight: 700; }
.site-footer nav a:hover { color: var(--accent); }
.site-footer > small { grid-column: 1/-1; color: #aaaab0; font-size: 8px; }
.page-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 34px; }
.page-heading.compact { align-items: center; margin-bottom: 30px; }
.page-heading h1 { max-width: 780px; margin: 0; font-size: clamp(30px, 5vw, 54px); line-height: 1.08; letter-spacing: -.055em; }
.page-heading h1 span { color: var(--muted); font-size: .45em; vertical-align: middle; }
.page-heading p:not(.eyebrow) { max-width: 650px; margin: 12px 0 0; color: var(--muted); font-size: 17px; }
.section-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin: 0 0 18px; }
.section-head h2 { margin: 0; font-size: clamp(20px, 3vw, 28px); letter-spacing: -.035em; }
.section-head > span, .section-head > a { color: var(--muted); font-size: 13px; }
.section-head > a { color: var(--accent); font-weight: 700; }
.detail-section { margin-top: 70px; }
.detail-section:first-child { margin-top: 0; }

.btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 19px;
    border: 1px solid transparent;
    border-radius: 13px;
    cursor: pointer;
    font-weight: 750;
    transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:disabled { cursor: not-allowed; opacity: .5; transform: none; }
.btn.primary { color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 10px 24px rgba(255, 79, 105, .18); }
.btn.primary:hover { box-shadow: 0 13px 28px rgba(255, 79, 105, .27); }
.btn.secondary { border-color: var(--line); background: var(--surface); }
.btn.secondary:hover { border-color: #c9c9d0; background: #fafafa; }
.btn.ghost { border-color: var(--line); background: transparent; }
.btn.ghost.active { border-color: rgba(255, 79, 105, .35); color: var(--accent); background: rgba(255, 79, 105, .06); }
.btn.small { min-height: 38px; padding: 0 13px; border-radius: 11px; font-size: 12px; }
.btn.full { width: 100%; }
.btn.grow { flex: 1; }
.button-row { display: flex; flex-wrap: wrap; gap: 10px; }
.icon-button {
    display: inline-grid;
    width: 40px;
    height: 40px;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
}
.icon-button.danger { color: var(--red); }
.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 0 10px;
    border-radius: 999px;
    color: #61636b;
    background: #ececf0;
    font-size: 11px;
    font-weight: 800;
}
.status-pill.success, .status-pill.approved { color: #087b4a; background: #dcf7ea; }
.status-pill.pending { color: #9d6710; background: #fff0ca; }
.status-pill.rejected { color: #b3263d; background: #ffe1e6; }
.status-pill.live { color: #fff; background: var(--red); }

.form-stack { display: grid; gap: 17px; }
.form-stack label, .form-card label, .coupon-field {
    display: grid;
    gap: 7px;
    color: #484a52;
    font-size: 12px;
    font-weight: 750;
}
.form-stack label small { color: var(--muted); font-weight: 500; }
input, select, textarea {
    width: 100%;
    min-height: 47px;
    padding: 10px 13px;
    border: 1px solid var(--line);
    border-radius: 12px;
    outline: 0;
    color: var(--ink);
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: rgba(255, 79, 105, .55); box-shadow: 0 0 0 4px rgba(255, 79, 105, .08); }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(255, 79, 105, .7); outline-offset: 3px; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 14px; border-radius: 10px; color: #fff; background: var(--dark); transform: translateY(-150%); transition: transform .15s; }
.skip-link:focus { transform: translateY(0); }
input:disabled { color: #8b8d95; background: #f4f4f6; }
.form-grid { display: grid; gap: 16px; }
.form-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-section-title { padding-top: 6px; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.alert { padding: 12px 14px; border-radius: 12px; font-size: 13px; }
.alert.error { color: #a51f35; background: #ffe3e7; }

.bottom-nav { display: none; }
.toast-stack { position: fixed; z-index: 300; right: 22px; top: 88px; display: grid; gap: 10px; pointer-events: none; }
.toast {
    min-width: 260px;
    max-width: min(400px, calc(100vw - 32px));
    padding: 13px 16px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    color: #fff;
    background: #25262d;
    box-shadow: 0 16px 50px rgba(0,0,0,.2);
    font-size: 13px;
    font-weight: 650;
    animation: toast-in .3s ease both;
}
.toast.success { background: #137a52; }
.toast.error { background: #a92f43; }
.server-toast { position: fixed; z-index: 310; right: 22px; top: 88px; }
@keyframes toast-in { from { transform: translateY(-8px); opacity: 0; } }
.modal-backdrop {
    position: fixed;
    z-index: 400;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(7, 8, 11, .76);
    backdrop-filter: blur(8px);
}
.modal-backdrop[hidden] { display: none; }
.modal-card { position: relative; width: min(420px, 100%); padding: 36px; border-radius: 25px; text-align: center; background: #fff; box-shadow: 0 28px 90px rgba(0,0,0,.3); }
.modal-close { position: absolute; top: 12px; right: 14px; border: 0; color: #777; background: transparent; font-size: 27px; cursor: pointer; }
.modal-icon { display: grid; width: 70px; height: 70px; place-items: center; margin: 0 auto 15px; border-radius: 24px; color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.modal-icon .icon { width: 34px; height: 34px; }
.modal-card h2 { margin: 0 0 8px; font-size: 24px; }
.modal-card p { margin: 0; color: var(--muted); }
.modal-card code { display: inline-block; margin-top: 18px; padding: 10px 16px; border: 1px dashed var(--accent); border-radius: 10px; color: var(--accent-dark); background: #fff6f7; font-size: 17px; font-weight: 850; letter-spacing: .08em; }

/* Feed */
.feed-page { overflow: hidden; color: #fff; background: #050506; }
.feed-stage { min-height: 100svh; }
.feed-desktop-rail { display: none; }
.feed-shell { position: relative; width: min(100%, 520px); height: 100svh; margin: 0 auto; background: #101116; box-shadow: 0 0 70px rgba(255,255,255,.05); }
.feed-header {
    position: absolute;
    z-index: 40;
    top: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    gap: 8px;
    height: 72px;
    padding: max(10px, env(safe-area-inset-top)) 15px 0;
    pointer-events: none;
}
.feed-header > * { pointer-events: auto; }
.feed-logo .brand-mark { width: 34px; height: 34px; border-radius: 11px; font-size: 15px; }
.feed-tabs { display: flex; justify-content: center; gap: 20px; }
.feed-tabs a { position: relative; padding: 11px 0; color: rgba(255,255,255,.6); font-size: 13px; font-weight: 800; text-shadow: 0 2px 10px rgba(0,0,0,.5); }
.feed-tabs a.active { color: #fff; }
.feed-tabs a.active::after { position: absolute; bottom: 3px; left: 50%; width: 22px; height: 2px; border-radius: 2px; background: #fff; content: ""; transform: translateX(-50%); }
.feed-search-button { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; color: #fff; background: rgba(0,0,0,.25); backdrop-filter: blur(10px); }
.video-feed { height: 100%; overflow-y: auto; overscroll-behavior-y: contain; scroll-snap-type: y mandatory; scrollbar-width: none; }
.video-feed::-webkit-scrollbar { display: none; }
.feed-card { position: relative; height: 100svh; overflow: hidden; background: #17181f; scroll-snap-align: start; scroll-snap-stop: always; }
.feed-media, .feed-media > img, .feed-media > video { position: absolute; inset: 0; width: 100%; height: 100%; }
.feed-media > img, .feed-media > video { object-fit: cover; }
.feed-poster { transform: scale(1.002); transition: transform 9s linear; }
.feed-card.is-visible .feed-poster { transform: scale(1.06); }
.media-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.38) 0%, transparent 22%, transparent 48%, rgba(0,0,0,.28) 65%, rgba(0,0,0,.9) 100%); }
.demo-media-label { position: absolute; top: 79px; left: 50%; display: flex; align-items: center; gap: 7px; padding: 6px 10px; border-radius: 999px; color: rgba(255,255,255,.75); background: rgba(0,0,0,.34); font-size: 9px; transform: translateX(-50%); backdrop-filter: blur(8px); white-space: nowrap; }
.demo-media-label span { width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); }
.daily-badge { position: absolute; z-index: 5; top: 84px; left: 16px; padding: 7px 11px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(12,12,16,.33); font-size: 10px; font-weight: 800; backdrop-filter: blur(12px); }
.media-toggle { position: absolute; z-index: 5; inset: 0; width: 100%; height: 55%; border: 0; color: transparent; background: transparent; cursor: pointer; }
.media-toggle .icon { display: none; }
.media-toggle.show-icon .icon { display: block; width: 68px; height: 68px; margin: auto; padding: 18px; border-radius: 50%; color: #fff; background: rgba(0,0,0,.35); backdrop-filter: blur(8px); }
.feed-actions { position: absolute; z-index: 10; right: 12px; bottom: 158px; display: grid; justify-items: center; gap: 15px; }
.profile-bubble { position: relative; display: block; width: 46px; height: 46px; margin-bottom: 4px; }
.profile-bubble img { width: 100%; height: 100%; border: 2px solid #fff; border-radius: 50%; object-fit: cover; background: #fff; }
.profile-bubble i { position: absolute; right: -1px; bottom: -2px; display: grid; width: 17px; height: 17px; place-items: center; border: 2px solid #fff; border-radius: 50%; color: #fff; background: var(--blue); font-size: 9px; font-style: normal; }
.round-action { display: grid; justify-items: center; gap: 3px; padding: 0; border: 0; color: #fff; background: transparent; cursor: pointer; filter: drop-shadow(0 2px 5px rgba(0,0,0,.45)); }
.round-action .icon { width: 29px; height: 29px; }
.round-action span { max-width: 60px; font-size: 9px; font-weight: 800; }
.round-action.active .icon { color: var(--accent); fill: var(--accent); }
.feed-content { position: absolute; z-index: 8; right: 72px; bottom: 18px; left: 15px; text-shadow: 0 2px 10px rgba(0,0,0,.5); }
.publisher-line { display: flex; align-items: center; gap: 9px; margin-bottom: 5px; }
.publisher-line a { font-size: 13px; font-weight: 850; }
.follow-mini { min-height: 25px; padding: 0 9px; border: 1px solid rgba(255,255,255,.65); border-radius: 999px; color: #fff; background: rgba(0,0,0,.12); font-size: 9px; font-weight: 800; cursor: pointer; }
.follow-mini.following { border-color: rgba(255,255,255,.22); color: rgba(255,255,255,.68); background: rgba(0,0,0,.22); }
.feed-content h2 { max-width: 380px; margin: 0 0 5px; font-size: 18px; line-height: 1.25; letter-spacing: -.02em; }
.feed-caption { display: -webkit-box; max-width: 390px; margin: 0 0 8px; overflow: hidden; color: rgba(255,255,255,.9); font-size: 11px; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.social-proof { display: flex; align-items: center; gap: 6px; margin: 0 0 10px; color: #fff; font-size: 9px; font-weight: 700; }
.pulse-dot, .live-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #35dd8a; box-shadow: 0 0 0 4px rgba(53,221,138,.17); }
.product-dock { display: flex; align-items: center; gap: 8px; padding: 7px; border: 1px solid rgba(255,255,255,.13); border-radius: 15px; background: rgba(18,19,24,.73); box-shadow: 0 12px 30px rgba(0,0,0,.25); backdrop-filter: blur(16px); text-shadow: none; }
.dock-product { display: flex; min-width: 0; flex: 1; align-items: center; gap: 9px; }
.dock-product img { width: 43px; height: 49px; border-radius: 10px; object-fit: cover; }
.dock-product > span { display: grid; min-width: 0; }
.dock-product small { color: rgba(255,255,255,.55); font-size: 8px; }
.dock-product strong { overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.dock-product b { color: #fff; font-size: 12px; }
.dock-product del { margin-left: 3px; color: rgba(255,255,255,.4); font-size: 9px; font-weight: 500; }
.dock-add { display: grid; min-width: 74px; height: 44px; place-items: center; align-content: center; gap: 1px; padding: 0 10px; border: 0; border-radius: 11px; color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); cursor: pointer; }
.dock-add .icon { width: 17px; height: 17px; }
.dock-add span { font-size: 8px; font-weight: 800; }
.dock-add:disabled { opacity: .55; }
.bonus-chip { position: absolute; z-index: 20; top: 128px; left: -10px; display: flex; align-items: center; gap: 8px; max-width: 210px; min-height: 40px; padding: 7px 13px 7px 20px; border: 1px solid rgba(255,255,255,.22); border-radius: 0 999px 999px 0; color: #fff; background: linear-gradient(135deg, rgba(255,79,105,.9), rgba(255,127,88,.88)); box-shadow: 0 10px 30px rgba(255,79,105,.28); cursor: pointer; animation: bonus-pulse 2.8s ease-in-out infinite; backdrop-filter: blur(10px); }
.bonus-chip .icon { width: 19px; }
.bonus-chip span { overflow: hidden; font-size: 9px; font-weight: 850; text-overflow: ellipsis; white-space: nowrap; }
@keyframes bonus-pulse { 50% { transform: translateX(5px); box-shadow: 0 10px 38px rgba(255,79,105,.45); } }
.feed-progress { position: absolute; z-index: 50; right: 0; bottom: var(--bottom-nav); left: 0; height: 2px; background: rgba(255,255,255,.1); }
.feed-progress span { display: block; width: 0; height: 100%; background: var(--accent); transition: width .2s; }
.feed-empty { display: grid; height: 100%; place-items: center; align-content: center; padding: 35px; text-align: center; background: radial-gradient(circle at 50% 30%, #2a2036, #101116 60%); }
.empty-orb { display: grid; width: 90px; height: 90px; place-items: center; margin-bottom: 18px; border-radius: 33px; color: #fff; background: linear-gradient(135deg, var(--accent), #8d4ee8); font-size: 32px; }
.feed-empty h1 { margin: 0 0 10px; font-size: 27px; }
.feed-empty p { margin: 0 0 24px; color: rgba(255,255,255,.64); }

/* Product cards + Search */
.search-hero { display: flex; align-items: center; gap: 12px; max-width: 800px; margin-bottom: 22px; padding: 8px 9px 8px 17px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.search-hero > .icon { color: var(--muted); }
.search-hero input { flex: 1; min-height: 45px; padding: 0; border: 0; box-shadow: none; }
.category-chips { display: flex; gap: 8px; margin-bottom: 40px; padding-bottom: 4px; overflow-x: auto; scrollbar-width: none; }
.category-chips::-webkit-scrollbar { display: none; }
.category-chips a { display: inline-flex; min-height: 39px; flex: 0 0 auto; align-items: center; gap: 7px; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; color: #595b63; background: #fff; font-size: 12px; font-weight: 700; }
.category-chips a.active { border-color: var(--dark); color: #fff; background: var(--dark); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.product-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-card { position: relative; min-width: 0; overflow: hidden; border: 1px solid rgba(228,228,232,.9); border-radius: 20px; background: #fff; transition: transform .2s, box-shadow .2s; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(20,20,25,.1); }
.product-image { position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 5; background: #ddd; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-image img { transform: scale(1.035); }
.card-badge, .discount-badge { position: absolute; top: 11px; padding: 5px 8px; border-radius: 999px; color: #fff; font-size: 9px; font-weight: 850; }
.card-badge { left: 11px; background: rgba(18,18,23,.72); backdrop-filter: blur(8px); }
.discount-badge { right: 11px; background: var(--accent); }
.product-card-body { position: relative; padding: 15px 52px 16px 16px; }
.product-card-body small { color: var(--muted); font-size: 10px; }
.product-card-body h3 { margin: 3px 0 9px; overflow: hidden; font-size: 14px; line-height: 1.35; letter-spacing: -.02em; text-overflow: ellipsis; white-space: nowrap; }
.card-price { display: flex; align-items: center; gap: 7px; }
.card-price strong { font-size: 15px; }
.card-price del { color: #a0a1a8; font-size: 10px; }
.card-add { position: absolute; right: 13px; bottom: 15px; display: grid; width: 34px; height: 34px; place-items: center; padding: 0; border: 0; border-radius: 11px; color: #fff; background: var(--dark); cursor: pointer; }
.card-add .icon { width: 17px; }
.card-add:disabled { background: #c5c6cc; }
.empty-state { display: grid; justify-items: center; padding: 80px 20px; border: 1px dashed #d8d8dd; border-radius: 24px; text-align: center; background: rgba(255,255,255,.55); }
.empty-state > span { display: grid; width: 74px; height: 74px; place-items: center; margin-bottom: 15px; border-radius: 25px; color: var(--muted); background: #eeeef1; font-size: 31px; }
.empty-state > span .icon { width: 31px; height: 31px; }
.empty-state h2 { margin: 0 0 7px; font-size: 21px; }
.empty-state p { max-width: 480px; margin: 0 0 20px; color: var(--muted); }

/* Product page */
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 24px; color: var(--muted); font-size: 11px; }
.breadcrumbs a:hover { color: var(--accent); }
.product-detail-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: clamp(35px, 7vw, 90px); align-items: start; }
.product-visual { position: sticky; top: 94px; overflow: hidden; aspect-ratio: 4/5; border-radius: 28px; background: #ddd; box-shadow: var(--shadow); }
.product-visual img, .product-visual video { width: 100%; height: 100%; object-fit: cover; }
.detail-badge { position: absolute; top: 18px; left: 18px; padding: 8px 12px; border-radius: 999px; color: #fff; background: rgba(17,18,24,.6); font-size: 10px; font-weight: 800; backdrop-filter: blur(10px); }
.product-info { padding-top: 10px; }
.store-inline { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.store-inline img { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 13px; object-fit: cover; }
.store-inline span { display: grid; }
.store-inline small { color: var(--muted); font-size: 9px; }
.store-inline strong { font-size: 12px; }
.product-info h1 { margin: 0 0 14px; font-size: clamp(31px, 5vw, 50px); line-height: 1.04; letter-spacing: -.055em; }
.detail-price { display: flex; align-items: baseline; gap: 11px; margin-bottom: 24px; }
.detail-price strong { font-size: 25px; }
.detail-price del { color: var(--muted); font-size: 14px; }
.product-description { margin: 0 0 18px; color: #5f626b; font-size: 15px; line-height: 1.75; }
.stock-line { display: flex; align-items: center; gap: 8px; margin: 0 0 17px; color: var(--green); font-size: 11px; font-weight: 750; }
.stock-line span { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.stock-line.out { color: var(--red); }
.stock-line.out span { background: var(--red); }
.proof-box { display: flex; align-items: center; gap: 11px; margin-bottom: 20px; padding: 13px 15px; border: 1px solid #f1ded0; border-radius: 14px; color: #6b5144; background: #fff7f1; font-size: 11px; }
.proof-box .icon { color: var(--accent-2); }
.proof-box span { display: grid; }
.buy-panel { display: flex; gap: 10px; margin-top: 20px; }
.quantity-picker { display: flex; height: 48px; align-items: center; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.quantity-picker button { display: grid; width: 38px; height: 100%; place-items: center; padding: 0; border: 0; background: transparent; cursor: pointer; }
.quantity-picker .icon { width: 15px; }
.quantity-picker input { width: 44px; min-height: 0; padding: 0; border: 0; text-align: center; box-shadow: none; appearance: textfield; }
.quantity-picker input::-webkit-inner-spin-button { display: none; }
.quantity-picker.small { width: max-content; height: 38px; margin-top: 13px; border-radius: 10px; }
.quantity-picker.small button { width: 32px; }
.quantity-picker.small input { width: 38px; }
.secondary-actions { display: grid; grid-template-columns: 1fr auto; gap: 9px; margin-top: 10px; }
.secondary-actions .btn { min-width: 0; font-size: 11px; }
.trust-points { display: flex; flex-wrap: wrap; gap: 14px 20px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 9px; }
.trust-points span { display: inline-flex; align-items: center; gap: 5px; }
.trust-points .icon { width: 14px; color: var(--green); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.review-card video { width: 100%; aspect-ratio: 9/14; object-fit: cover; background: #111; }
.review-card > div { padding: 13px; }
.review-card strong { font-size: 13px; }
.review-card p { margin: 5px 0 0; color: var(--yellow); font-size: 11px; }
.review-card p span { color: var(--muted); }
.empty-inline { display: flex; align-items: center; gap: 18px; padding: 28px; border: 1px dashed #d5d5da; border-radius: 20px; background: #fff; }
.empty-inline > span { display: grid; width: 52px; height: 52px; flex: 0 0 auto; place-items: center; border-radius: 17px; color: #fff; background: var(--dark); }
.empty-inline strong { font-size: 15px; }
.empty-inline p { margin: 3px 0 0; color: var(--muted); }

/* Store + Creator */
.store-cover { position: relative; height: 330px; overflow: hidden; border-radius: 28px; background: #ddd; }
.store-cover > img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.store-cover-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.45)); }
.store-profile { position: relative; display: grid; grid-template-columns: 145px 1fr auto; gap: 27px; align-items: end; width: calc(100% - 60px); margin: -68px auto 0; padding: 0 5px; }
.store-avatar { z-index: 2; width: 145px; height: 145px; border: 7px solid var(--bg); border-radius: 40px; object-fit: cover; background: #fff; }
.store-meta { padding-top: 78px; }
.store-meta h1 { margin: 0 0 6px; font-size: 33px; letter-spacing: -.045em; }
.verified { display: inline-grid; width: 21px; height: 21px; place-items: center; border-radius: 50%; color: #fff; background: var(--blue); font-size: 12px; vertical-align: middle; }
.store-meta > p:not(.eyebrow) { max-width: 650px; margin: 0; color: var(--muted); }
.store-meta > div { display: flex; gap: 18px; margin-top: 10px; color: var(--muted); font-size: 11px; }
.store-meta > div strong { color: var(--ink); }
.store-profile > .btn { margin-bottom: 9px; }
.btn.following { border-color: var(--line); color: var(--muted); background: #fff; box-shadow: none; }
.video-thumbnail-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.video-thumbnail { position: relative; overflow: hidden; aspect-ratio: 9/14; border-radius: 16px; background: #222; }
.video-thumbnail > img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s; }
.video-thumbnail:hover > img { transform: scale(1.04); }
.video-thumbnail::after { position: absolute; inset: 40% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.7)); content: ""; }
.video-thumbnail > span { position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: #fff; background: rgba(0,0,0,.35); transform: translate(-50%, -50%); backdrop-filter: blur(5px); }
.video-thumbnail > small { position: absolute; z-index: 2; right: 10px; bottom: 9px; display: flex; align-items: center; gap: 4px; color: #fff; font-weight: 750; }
.video-thumbnail > small .icon { width: 13px; }
.creator-hero { display: grid; grid-template-columns: 150px 1fr auto; gap: 30px; align-items: center; padding: 40px; border-radius: 28px; color: #fff; background: radial-gradient(circle at 20% 20%, #553366, #191a22 60%); }
.creator-hero > img { width: 150px; height: 150px; border: 5px solid rgba(255,255,255,.18); border-radius: 50%; object-fit: cover; }
.creator-hero h1 { margin: 0 0 8px; font-size: 36px; letter-spacing: -.045em; }
.creator-hero p:not(.eyebrow) { max-width: 650px; margin: 0 0 12px; color: rgba(255,255,255,.68); }
.creator-hero span { color: rgba(255,255,255,.65); font-size: 11px; }
.creator-hero span strong { color: #fff; }
.creator-grid { grid-template-columns: repeat(5, 1fr); }
.thumb-product { position: absolute; z-index: 3; right: 9px; bottom: 9px; left: 9px; display: grid; color: #fff; }
.thumb-product strong { overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.thumb-product small { color: rgba(255,255,255,.75); }

/* Live */
.live-heading { min-height: 300px; align-items: center; padding: 55px; border-radius: 30px; color: #fff; background: radial-gradient(circle at 78% 35%, rgba(255,79,105,.34), transparent 30%), linear-gradient(135deg, #171821, #08090c); }
.live-heading .eyebrow { color: #fff; }
.live-heading .live-dot { margin-right: 8px; background: var(--red); box-shadow: 0 0 0 5px rgba(228,67,85,.22); }
.live-heading p:not(.eyebrow) { color: rgba(255,255,255,.63); }
.live-section { margin-top: 55px; }
.live-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.live-grid.featured { grid-template-columns: 1fr; }
.live-grid.compact { grid-template-columns: repeat(4, 1fr); }
.live-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 10px 30px rgba(20,20,25,.05); }
.live-grid.featured .live-card { display: grid; grid-template-columns: 1.3fr .7fr; }
.live-cover { position: relative; min-height: 220px; overflow: hidden; background: #111; }
.live-grid.featured .live-cover { min-height: 480px; }
.live-cover img, .live-cover iframe { width: 100%; height: 100%; min-height: inherit; border: 0; object-fit: cover; }
.live-badge, .ended-badge { position: absolute; top: 15px; left: 15px; padding: 6px 10px; border-radius: 999px; color: #fff; background: var(--red); font-size: 10px; font-weight: 850; }
.live-badge i { display: inline-block; width: 6px; height: 6px; margin-right: 5px; border-radius: 50%; background: #fff; }
.ended-badge { background: rgba(0,0,0,.55); }
.live-cover time { position: absolute; top: 14px; left: 14px; display: grid; width: 55px; height: 62px; place-items: center; align-content: center; border-radius: 14px; color: #fff; background: rgba(15,16,21,.8); backdrop-filter: blur(8px); }
.live-cover time strong { font-size: 21px; line-height: 1; }
.live-cover time span { margin-top: 3px; font-size: 9px; font-weight: 800; }
.live-card-body { padding: 22px; }
.live-grid.featured .live-card-body { display: grid; align-content: center; padding: 40px; }
.live-card-body > a:not(.btn), .live-card-body > small { color: var(--accent); font-size: 10px; font-weight: 800; }
.live-card-body h2, .live-card-body h3 { margin: 6px 0 10px; line-height: 1.25; letter-spacing: -.03em; }
.live-card-body h2 { font-size: 29px; }
.live-card-body h3 { font-size: 17px; }
.live-card-body p { margin: 0 0 17px; color: var(--muted); font-size: 12px; }
.store-mini { display: flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 750; }
.store-mini img { width: 30px; height: 30px; border-radius: 10px; object-fit: cover; }
.live-meta { display: flex; align-items: center; gap: 7px; margin-bottom: 14px; color: var(--muted); font-size: 10px; }
.live-meta .icon { width: 16px; }
.muted-section { opacity: .72; }

/* Cart, checkout, success */
.cart-layout, .checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 35px; align-items: start; }
.cart-list { display: grid; gap: 13px; }
.cart-item { display: grid; grid-template-columns: 125px 1fr auto; gap: 18px; padding: 14px; border: 1px solid var(--line); border-radius: 19px; background: #fff; }
.cart-item > a img { width: 125px; height: 145px; border-radius: 13px; object-fit: cover; }
.cart-item-main { padding: 7px 0; }
.cart-item-main small { color: var(--muted); font-size: 10px; }
.cart-item-main h3 { margin: 3px 0 7px; font-size: 16px; }
.stock-ok { color: var(--green); font-size: 9px; font-weight: 750; }
.cart-item-side { display: grid; justify-items: end; align-content: space-between; padding: 7px 0; }
.order-summary { position: sticky; top: 94px; padding: 27px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow); }
.order-summary h2 { margin: 0 0 24px; font-size: 22px; }
.summary-line { display: flex; justify-content: space-between; gap: 15px; padding: 9px 0; color: var(--muted); font-size: 11px; }
.summary-line strong { color: var(--ink); font-weight: 650; }
.summary-line strong.free { max-width: 150px; text-align: right; font-size: 9px; }
.summary-total { display: flex; justify-content: space-between; gap: 15px; margin: 13px 0 20px; padding-top: 17px; border-top: 1px solid var(--line); font-weight: 800; }
.summary-total strong { font-size: 20px; }
.summary-note, .legal-note { display: flex; align-items: flex-start; gap: 7px; margin: 13px 0 0; color: var(--muted); font-size: 9px; }
.legal-note { display: block; line-height: 1.55; text-align: center; }
.legal-note a { color: var(--accent-dark); font-weight: 750; text-decoration: underline; text-underline-offset: 2px; }
.summary-note .icon { width: 14px; color: var(--green); }
.cart-empty { min-height: 480px; }
.shared-cart-page { max-width: 800px; }
.shared-cart-hero { padding: 35px 15px; text-align: center; }
.share-orb { display: grid; width: 75px; height: 75px; place-items: center; margin: 0 auto 17px; border-radius: 25px; color: #fff; background: linear-gradient(135deg, #7f4ee6, var(--accent)); }
.share-orb .icon { width: 33px; height: 33px; }
.shared-cart-hero h1 { margin: 0 0 10px; font-size: 35px; letter-spacing: -.05em; }
.shared-cart-hero > p:last-child { max-width: 590px; margin: 0 auto; color: var(--muted); }
.shared-products { display: grid; gap: 10px; margin: 25px 0; }
.shared-products article { display: grid; grid-template-columns: 80px 1fr auto; gap: 15px; align-items: center; padding: 10px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.shared-products img { width: 80px; height: 90px; border-radius: 11px; object-fit: cover; }
.shared-products small { color: var(--muted); }
.shared-products h3 { margin: 2px 0; font-size: 14px; }
.shared-products p { margin: 0; color: var(--muted); font-size: 10px; }
.shared-total { display: flex; justify-content: space-between; margin-bottom: 17px; padding: 18px 0; border-top: 1px solid var(--line); font-size: 18px; }
.checkout-form { display: grid; gap: 18px; }
.form-card { position: relative; padding: 28px 28px 28px 75px; border: 1px solid var(--line); border-radius: 21px; background: #fff; }
.step-number { position: absolute; top: 28px; left: 25px; display: grid; width: 34px; height: 34px; place-items: center; border-radius: 11px; color: #fff; background: var(--dark); font-size: 11px; font-weight: 850; }
.form-card-head { margin-bottom: 20px; }
.form-card-head h2 { margin: 0; font-size: 20px; }
.form-card-head p { margin: 3px 0 0; color: var(--muted); font-size: 11px; }
.payment-options { display: grid; gap: 9px; }
.payment-options label { display: flex; align-items: center; gap: 12px; padding: 14px; border: 1px solid var(--line); border-radius: 13px; cursor: pointer; }
.payment-options label:has(input:checked) { border-color: var(--accent); background: #fff7f8; box-shadow: 0 0 0 3px rgba(255,79,105,.07); }
.payment-options label.disabled { cursor: not-allowed; opacity: .55; }
.payment-options input { width: 18px; min-height: 18px; accent-color: var(--accent); }
.payment-options span { display: grid; }
.payment-options strong { font-size: 12px; }
.payment-options small { color: var(--muted); font-size: 9px; font-weight: 500; }
.checkout-items { display: grid; gap: 10px; max-height: 320px; margin-bottom: 17px; padding-bottom: 15px; overflow-y: auto; border-bottom: 1px solid var(--line); }
.checkout-items > div { display: grid; grid-template-columns: 50px 1fr auto; gap: 9px; align-items: center; }
.checkout-items img { width: 50px; height: 57px; border-radius: 9px; object-fit: cover; }
.checkout-items span { display: grid; min-width: 0; }
.checkout-items strong { overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.checkout-items small { color: var(--muted); font-size: 8px; }
.checkout-items b { font-size: 10px; }
.coupon-field { margin: 0 0 12px; }
.coupon-field > span { display: flex; }
.coupon-field input { border-radius: 11px 0 0 11px; }
.coupon-field button { padding: 0 12px; border: 0; border-radius: 0 11px 11px 0; color: #fff; background: var(--dark); cursor: pointer; font-size: 10px; font-weight: 750; }
.success-page { max-width: 760px; }
.success-card { padding: clamp(30px, 7vw, 65px); border: 1px solid var(--line); border-radius: 28px; text-align: center; background: #fff; box-shadow: var(--shadow); }
.success-icon { display: grid; width: 82px; height: 82px; place-items: center; margin: 0 auto 20px; border-radius: 29px; color: #fff; background: var(--green); }
.success-icon .icon { width: 42px; height: 42px; }
.success-card h1 { margin: 0 0 10px; font-size: clamp(27px, 5vw, 43px); letter-spacing: -.05em; }
.success-card > p:not(.eyebrow) { margin: 0 auto 25px; color: var(--muted); }
.order-number { display: grid; gap: 4px; margin: 25px 0; padding: 17px; border-radius: 14px; background: var(--surface-2); }
.order-number span { color: var(--muted); font-size: 9px; }
.order-number strong { font-size: 20px; letter-spacing: .05em; }
.success-items { display: grid; gap: 8px; text-align: left; }
.success-items > div, .success-total { display: flex; justify-content: space-between; gap: 15px; }
.success-items > div { color: var(--muted); font-size: 11px; }
.success-items strong { color: var(--ink); }
.success-total { margin: 17px 0 25px; padding-top: 16px; border-top: 1px solid var(--line); font-weight: 800; }
.success-card .button-row { justify-content: center; }

/* Account */
.account-hero { display: flex; align-items: center; gap: 17px; margin-bottom: 30px; padding: 28px; border-radius: 23px; color: #fff; background: linear-gradient(135deg, #1b1c24, #2e223a); }
.account-avatar { display: grid; width: 76px; height: 76px; flex: 0 0 auto; place-items: center; overflow: hidden; border: 3px solid rgba(255,255,255,.22); border-radius: 26px; color: #fff; background: linear-gradient(135deg, var(--accent), #8c4edf); font-size: 31px; font-weight: 850; }
.account-avatar img { width: 100%; height: 100%; object-fit: cover; }
.account-hero > div:nth-child(2) { flex: 1; }
.account-hero h1 { margin: 0; font-size: 28px; }
.account-hero p:not(.eyebrow) { margin: 2px 0 0; color: rgba(255,255,255,.58); font-size: 11px; }
.account-hero .btn { color: #fff; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.08); }
.account-tabs { display: flex; gap: 4px; margin-bottom: 25px; padding: 5px; overflow-x: auto; border: 1px solid var(--line); border-radius: 15px; background: #fff; scrollbar-width: none; }
.account-notifications { display: grid; gap: 8px; margin: -10px 0 22px; }
.account-notifications article { display: grid; grid-template-columns: 38px 1fr auto auto; gap: 11px; align-items: center; padding: 11px 13px; border: 1px solid #f1d7c9; border-radius: 14px; background: #fff7f1; }
.account-notifications article > span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 12px; color: #fff; background: var(--accent-2); }
.account-notifications article > span .icon { width: 18px; }
.account-notifications article > div { display: grid; }
.account-notifications strong { font-size: 11px; }
.account-notifications p { margin: 2px 0 0; color: var(--muted); font-size: 9px; }
.account-notifications a { color: var(--accent); font-size: 9px; font-weight: 800; }
.account-notifications button { border: 0; color: #9a8175; background: transparent; cursor: pointer; font-size: 18px; }
.account-tabs::-webkit-scrollbar { display: none; }
.account-tabs button { display: inline-flex; min-height: 39px; flex: 1 0 auto; align-items: center; justify-content: center; gap: 7px; padding: 0 14px; border: 0; border-radius: 10px; color: var(--muted); background: transparent; cursor: pointer; font-size: 11px; font-weight: 750; }
.account-tabs button span { padding: 2px 6px; border-radius: 999px; background: #eeeef1; font-size: 8px; }
.account-tabs button.active { color: #fff; background: var(--dark); }
.account-tabs button.active span { background: rgba(255,255,255,.14); }
.account-panel { display: none; }
.account-panel.active { display: block; animation: panel-in .2s ease; }
@keyframes panel-in { from { opacity: 0; transform: translateY(4px); } }
.saved-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.saved-grid article { position: relative; display: grid; grid-template-columns: 110px 1fr; gap: 15px; padding: 10px 58px 10px 10px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.saved-grid img { width: 110px; height: 130px; border-radius: 12px; object-fit: cover; }
.saved-grid article > div { align-self: center; }
.saved-grid small { color: var(--muted); font-size: 9px; }
.saved-grid h3 { margin: 3px 0 10px; font-size: 14px; }
.saved-grid .icon-button { position: absolute; top: 13px; right: 13px; color: var(--accent); }
.alert-list, .order-list, .review-list { display: grid; gap: 11px; }
.alert-list article, .order-list article, .review-list article { display: grid; grid-template-columns: auto 1fr auto; gap: 15px; align-items: center; padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.alert-list img { width: 72px; height: 82px; border-radius: 11px; object-fit: cover; }
.alert-list h3, .order-list h3, .review-list h3 { margin: 2px 0 4px; font-size: 14px; }
.alert-list p, .order-list p, .review-list p { margin: 0; color: var(--muted); font-size: 9px; }
.alert-list strong { color: var(--accent); font-size: 12px; }
.order-list article { grid-template-columns: 1fr auto auto auto; padding: 18px; }
.order-list small { color: var(--muted); font-size: 9px; }
.order-open { color: var(--accent-dark); font-size: 9px; font-weight: 800; white-space: nowrap; }
.order-status { padding: 5px 9px; border-radius: 999px; color: #9d6710; background: #fff0ca; font-size: 9px; font-weight: 800; }
.order-status.confirmed, .order-status.processing, .order-status.shipped { color: #275aa0; background: #e3efff; }
.order-status.completed { color: #087b4a; background: #dcf7ea; }
.order-status.cancelled { color: #b3263d; background: #ffe1e6; }
.review-list article { grid-template-columns: 1fr auto; }
.profile-form-wrap { display: grid; grid-template-columns: .7fr 1.3fr; gap: 50px; padding: 35px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.profile-form-wrap h2 { margin: 0 0 8px; font-size: 26px; }
.profile-form-wrap > div > p:last-child { color: var(--muted); }

/* Order details + legal */
.order-detail-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 25px; align-items: start; }
.order-detail-card, .order-detail-side > section { border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 12px 35px rgba(20,20,25,.045); }
.order-detail-card { padding: 26px; }
.order-detail-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.order-detail-head small { color: var(--muted); font-size: 9px; }
.order-detail-head h2, .order-detail-side h2 { margin: 4px 0 0; font-size: 19px; }
.order-detail-items { display: grid; padding: 14px 0; }
.order-detail-items > div { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 12px 0; border-bottom: 1px solid #f0f0f2; }
.order-detail-items span { display: grid; }
.order-detail-items strong { font-size: 11px; }
.order-detail-items small { margin-top: 3px; color: var(--muted); font-size: 8px; }
.order-detail-items b { font-size: 11px; white-space: nowrap; }
.order-detail-totals { display: grid; gap: 9px; padding-top: 5px; }
.order-detail-totals > div { display: flex; justify-content: space-between; color: var(--muted); font-size: 10px; }
.order-detail-totals strong { color: var(--ink); }
.order-detail-totals .total { margin-top: 5px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--ink); font-size: 14px; font-weight: 850; }
.order-detail-side { display: grid; gap: 18px; }
.order-detail-side > section { padding: 23px; }
.order-detail-side dl { display: grid; gap: 11px; margin: 19px 0 0; }
.order-detail-side dl > div { display: grid; grid-template-columns: 85px 1fr; gap: 10px; }
.order-detail-side dt { color: var(--muted); font-size: 9px; }
.order-detail-side dd { margin: 0; font-size: 10px; font-weight: 700; }
.order-customer-note { margin: 16px 0 0; padding: 12px; border-radius: 11px; color: var(--muted); background: #f5f5f7; font-size: 9px; }
.order-timeline { display: grid; gap: 0; margin: 18px 0 0; padding: 0; list-style: none; }
.order-timeline li { position: relative; display: grid; grid-template-columns: 18px 1fr; gap: 9px; min-height: 58px; }
.order-timeline li::before { position: absolute; top: 14px; bottom: -4px; left: 5px; width: 1px; background: var(--line); content: ''; }
.order-timeline li:last-child::before { display: none; }
.order-timeline li > span { z-index: 1; width: 11px; height: 11px; margin-top: 2px; border: 3px solid #fff; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.order-timeline div { display: grid; align-content: start; }
.order-timeline strong { font-size: 10px; }
.order-timeline small { margin-top: 2px; color: var(--muted); font-size: 8px; }
.order-timeline p { margin: 5px 0 0; color: var(--muted); font-size: 8px; }
.legal-page { max-width: 900px; }
.legal-hero { padding: clamp(28px, 6vw, 56px); border-radius: 26px; color: #fff; background: radial-gradient(circle at 80% 10%, rgba(255,79,105,.4), transparent 27%), linear-gradient(145deg, #191a21, #312237); }
.legal-hero h1 { margin: 5px 0 12px; font-size: clamp(32px, 6vw, 52px); letter-spacing: -.05em; }
.legal-hero > p:not(.eyebrow) { max-width: 650px; margin: 0 0 22px; color: rgba(255,255,255,.66); }
.legal-hero small { color: rgba(255,255,255,.4); font-size: 9px; }
.legal-content { display: grid; gap: 16px; margin-top: 22px; }
.legal-content section { padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.legal-content h2 { margin: 0 0 9px; font-size: 18px; }
.legal-content p { margin: 0 0 9px; color: var(--muted); font-size: 11px; line-height: 1.75; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-draft-note { margin: 18px 0 0; padding: 14px 17px; border-radius: 13px; color: #886718; background: #fff5d7; font-size: 9px; }

/* Review form + auth */
.review-submit-page { max-width: 800px; }
.review-submit-card { padding: 38px; border: 1px solid var(--line); border-radius: 25px; background: #fff; box-shadow: var(--shadow); }
.back-link { display: inline-block; margin-bottom: 24px; color: var(--muted); font-size: 11px; font-weight: 750; }
.review-product { display: flex; align-items: center; gap: 20px; margin-bottom: 26px; }
.review-product img { width: 105px; height: 125px; border-radius: 15px; object-fit: cover; }
.review-product h1 { margin: 0; font-size: 28px; letter-spacing: -.04em; }
.review-guide { display: grid; grid-template-columns: auto 1fr; gap: 8px 12px; margin-bottom: 30px; padding: 18px; border-radius: 16px; background: #f5f5f7; }
.review-guide > span { color: var(--accent); font-size: 10px; font-weight: 900; }
.review-guide p { margin: 0; color: var(--muted); font-size: 11px; }
.review-guide strong { color: var(--ink); }
.upload-zone { position: relative; }
.upload-zone input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.upload-zone > span { display: grid; min-height: 145px; place-items: center; align-content: center; gap: 5px; border: 1px dashed #c9c9cf; border-radius: 16px; cursor: pointer; background: #fafafa; }
.upload-zone > span .icon { width: 26px; color: var(--accent); }
.upload-zone > span strong { color: var(--ink); }
.or-divider { position: relative; height: 1px; margin: 7px 0; background: var(--line); text-align: center; }
.or-divider span { position: relative; top: -10px; padding: 0 10px; color: var(--muted); background: #fff; font-size: 10px; }
.auth-page { overflow: hidden; background: #fff; }
.auth-shell { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 100svh; }
.auth-visual { position: relative; display: grid; overflow: hidden; align-content: space-between; padding: 42px clamp(35px, 6vw, 85px); color: #fff; background: radial-gradient(circle at 70% 22%, rgba(255,118,90,.45), transparent 27%), linear-gradient(145deg, #1b1c24, #3b223c); }
.auth-visual.register { background: radial-gradient(circle at 75% 20%, rgba(116,89,222,.5), transparent 25%), linear-gradient(145deg, #151723, #2f2b58); }
.auth-visual.reset { background: radial-gradient(circle at 70% 28%, rgba(48,170,148,.38), transparent 27%), linear-gradient(145deg, #111c21, #183c3a); }
.auth-message { position: relative; z-index: 2; max-width: 620px; align-self: center; }
.auth-message h1 { margin: 0 0 15px; font-size: clamp(42px, 6vw, 76px); line-height: .98; letter-spacing: -.065em; }
.auth-message p:not(.eyebrow) { max-width: 530px; margin: 0; color: rgba(255,255,255,.65); font-size: 16px; }
.auth-product-stack { position: absolute; right: -30px; bottom: -70px; display: flex; align-items: flex-end; gap: 13px; transform: rotate(-6deg); opacity: .5; }
.auth-product-stack img { width: 160px; aspect-ratio: 3/4; border: 2px solid rgba(255,255,255,.15); border-radius: 25px; object-fit: cover; box-shadow: 0 25px 60px rgba(0,0,0,.3); }
.auth-product-stack img:nth-child(2) { width: 200px; transform: translateY(-25px); }
.auth-stats { position: relative; z-index: 2; display: flex; gap: 35px; }
.auth-stats div { display: grid; }
.auth-stats strong { font-size: 28px; }
.auth-stats span { color: rgba(255,255,255,.5); font-size: 9px; }
.auth-form-wrap { width: min(470px, calc(100% - 50px)); align-self: center; justify-self: center; }
.auth-form-wrap > h2 { margin: 0 0 4px; font-size: 35px; letter-spacing: -.05em; }
.auth-form-wrap > .muted { margin: 0 0 28px; }
.mobile-auth-brand { display: none; margin-bottom: 50px; }
.auth-switch { margin: 22px 0 12px; text-align: center; color: var(--muted); font-size: 11px; }
.auth-switch a { color: var(--accent); font-weight: 800; }
.forgot-link { justify-self: end; margin-top: -8px; color: var(--accent); font-size: 10px; font-weight: 750; }
.form-hint { margin-top: -8px; color: var(--muted); font-size: 9px; }
.back-to-feed { display: block; text-align: center; color: var(--muted); font-size: 10px; }
.account-intent { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0; padding: 0; border: 0; }
.account-intent legend { grid-column: 1/-1; margin-bottom: 3px; color: var(--ink); font-size: 11px; font-weight: 750; }
.account-intent > label { position: relative; cursor: pointer; }
.account-intent input { position: absolute; opacity: 0; pointer-events: none; }
.account-intent label > span { display: grid; min-height: 88px; grid-template-columns: 28px 1fr; align-content: center; gap: 2px 9px; padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.account-intent .icon { grid-row: 1/3; width: 24px; height: 24px; align-self: center; color: var(--muted); }
.account-intent strong { font-size: 11px; }
.account-intent small { color: var(--muted); font-size: 8px; font-weight: 500; }
.account-intent input:checked + span { border-color: rgba(255,79,105,.55); background: #fff6f7; box-shadow: 0 0 0 3px rgba(255,79,105,.07); }
.account-intent input:checked + span .icon { color: var(--accent); }
.seller-register-fields { display: grid; gap: 13px; padding: 15px; border-radius: 15px; background: #f6f6f8; }
.seller-register-fields[hidden] { display: none; }
.seller-register-fields > p { margin: 0; color: var(--muted); font-size: 8px; line-height: 1.55; }
.seller-account-banner { display: grid; grid-template-columns: 48px 1fr auto; gap: 14px; align-items: center; margin: -13px 0 25px; padding: 15px 18px; border: 1px solid #eadcf7; border-radius: 17px; background: linear-gradient(135deg, #fbf8ff, #fff8f3); }
.seller-account-banner > span { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 15px; color: #fff; background: linear-gradient(135deg, #8558d8, var(--accent)); }
.seller-account-banner .icon { width: 23px; }
.seller-account-banner div { display: grid; }
.seller-account-banner strong { font-size: 12px; }
.seller-account-banner p { margin: 3px 0 0; color: var(--muted); font-size: 9px; }
.seller-account-banner b { color: var(--accent-dark); font-size: 9px; }
.seller-account-banner.merchant { border-color: #caeadc; background: #f4fcf8; }
.seller-account-banner.merchant > span { background: linear-gradient(135deg, #168c62, #43be91); }
.seller-onboarding-page { max-width: 1050px; }
.seller-onboarding-grid { display: grid; grid-template-columns: 1.1fr .9fr; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow); }
.seller-onboarding-copy { padding: clamp(35px, 6vw, 70px); color: #fff; background: radial-gradient(circle at 80% 10%, rgba(255,79,105,.38), transparent 27%), linear-gradient(145deg, #181922, #32243c); }
.seller-onboarding-copy h1 { margin: 5px 0 16px; font-size: clamp(35px, 5vw, 58px); line-height: 1; letter-spacing: -.06em; }
.seller-onboarding-copy > p:not(.eyebrow) { color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.7; }
.seller-onboarding-copy ol { display: grid; gap: 20px; margin: 36px 0 0; padding: 0; list-style: none; }
.seller-onboarding-copy li { display: grid; grid-template-columns: 36px 1fr; gap: 12px; }
.seller-onboarding-copy li > span { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; background: rgba(255,255,255,.08); font-size: 10px; font-weight: 850; }
.seller-onboarding-copy li div { display: grid; }
.seller-onboarding-copy li strong { font-size: 12px; }
.seller-onboarding-copy li p { margin: 3px 0 0; color: rgba(255,255,255,.5); font-size: 9px; }
.seller-onboarding-form { align-content: center; padding: clamp(30px, 6vw, 60px); }
.seller-onboarding-form h2 { margin: 0 0 10px; font-size: 28px; }

/* Install + errors */
.install-page { min-height: 100vh; padding: 45px 20px; background: radial-gradient(circle at 50% 0%, #352343, #111218 50%); }
.install-shell { width: min(650px, 100%); margin: 0 auto; }
.install-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; color: #fff; }
.install-brand .brand-mark { width: 48px; height: 48px; border-radius: 16px; }
.install-brand h1 { margin: 0; font-size: 25px; }
.install-brand .eyebrow { margin: 0; color: rgba(255,255,255,.45); }
.install-card { padding: clamp(25px, 6vw, 45px); border: 1px solid rgba(255,255,255,.08); border-radius: 28px; background: #fff; box-shadow: 0 30px 100px rgba(0,0,0,.3); }
.install-card h2 { margin: 9px 0 6px; font-size: 28px; letter-spacing: -.04em; }
.install-card > p { color: var(--muted); }
.install-card .form-stack { margin-top: 28px; }
.install-note { color: rgba(255,255,255,.4); text-align: center; font-size: 10px; }
.error-page { display: grid; min-height: 70vh; justify-items: center; place-items: center; align-content: center; text-align: center; }
.error-code { color: #dddde1; font-size: clamp(100px, 20vw, 220px); font-weight: 950; line-height: .8; letter-spacing: -.1em; }
.error-page h1 { margin: 0 0 8px; font-size: 30px; }
.error-page > p:not(.eyebrow) { margin: 0 0 23px; color: var(--muted); }

@media (min-width: 761px) {
    .feed-page { background: radial-gradient(circle at 50% 30%, #202129, #050506 60%); }
    .feed-page .bottom-nav {
        position: fixed;
        z-index: 100;
        right: auto;
        bottom: 0;
        left: 50%;
        display: flex;
        width: min(100%, 520px);
        height: var(--bottom-nav);
        align-items: center;
        justify-content: space-around;
        padding: 5px 8px;
        border-top: 1px solid rgba(255,255,255,.08);
        color: #fff;
        background: rgba(9,10,13,.94);
        backdrop-filter: blur(20px);
        transform: translateX(-50%);
    }
    .feed-page .bottom-nav > a { position: relative; display: grid; min-width: 60px; justify-items: center; gap: 2px; color: rgba(255,255,255,.55); font-size: 8px; font-weight: 750; }
    .feed-page .bottom-nav > a.active { color: var(--accent); }
    .feed-page .bottom-nav .icon { width: 21px; height: 21px; }
    .feed-page .live-nav .live-icon { display: grid; width: 47px; height: 38px; place-items: center; border: 4px solid #111218; border-radius: 13px; color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
    .feed-page .live-nav { transform: translateY(-8px); }
    .feed-page .nav-icon-wrap { position: relative; }
    .feed-page .nav-icon-wrap b { top: -8px; right: -11px; border-color: #111218; }
    .feed-shell { height: calc(100svh - var(--bottom-nav)); }
    .feed-card { height: calc(100svh - var(--bottom-nav)); }
    .feed-actions { bottom: 112px; }
    .feed-content { bottom: 15px; }
    .feed-progress { bottom: 0; }
}

@media (min-width: 1180px) {
    .feed-stage { display: grid; grid-template-columns: 250px 520px 280px; width: 1090px; margin: 0 auto; }
    .feed-shell { margin: 0; }
    .feed-desktop-rail { display: flex; height: 100svh; flex-direction: column; padding: 30px 24px; color: #fff; }
    .feed-rail-left { justify-content: flex-start; border-right: 1px solid rgba(255,255,255,.06); }
    .feed-desktop-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 42px; font-size: 18px; font-weight: 900; }
    .feed-desktop-brand .brand-mark { width: 40px; height: 40px; border-radius: 13px; }
    .feed-rail-left nav { display: grid; gap: 8px; }
    .feed-rail-left nav a { position: relative; display: flex; min-height: 48px; align-items: center; gap: 13px; padding: 0 14px; border-radius: 14px; color: rgba(255,255,255,.62); font-size: 12px; font-weight: 750; }
    .feed-rail-left nav a:hover, .feed-rail-left nav a.active { color: #fff; background: rgba(255,255,255,.08); }
    .feed-rail-left nav .icon { width: 21px; height: 21px; }
    .feed-rail-left nav b { display: grid; min-width: 19px; height: 19px; place-items: center; margin-left: auto; border-radius: 99px; color: #fff; background: var(--accent); font-size: 8px; }
    .feed-rail-left > p { margin-top: auto; color: rgba(255,255,255,.35); font-size: 9px; line-height: 1.7; }
    .feed-rail-right { overflow: auto; border-left: 1px solid rgba(255,255,255,.06); }
    .feed-rail-heading { margin: 64px 0 20px; }
    .feed-rail-heading .eyebrow { color: var(--accent); }
    .feed-rail-heading h2 { margin: 3px 0 0; font-size: 18px; }
    .feed-rail-products { display: grid; gap: 12px; }
    .feed-rail-products > a { display: grid; grid-template-columns: 58px minmax(0,1fr); align-items: center; gap: 11px; padding: 8px; border-radius: 14px; background: rgba(255,255,255,.045); transition: background .15s, transform .15s; }
    .feed-rail-products > a:hover { background: rgba(255,255,255,.09); transform: translateX(2px); }
    .feed-rail-products img { width: 58px; height: 66px; border-radius: 10px; object-fit: cover; }
    .feed-rail-products span { display: grid; min-width: 0; }
    .feed-rail-products small { color: rgba(255,255,255,.4); font-size: 8px; }
    .feed-rail-products strong { overflow: hidden; margin: 2px 0 5px; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
    .feed-rail-products b { color: #fff; font-size: 11px; }
    .feed-rail-all { margin-top: 18px; color: var(--accent); font-size: 10px; font-weight: 800; }
    .feed-page .bottom-nav { display: none; }
    .feed-shell, .feed-card { height: 100svh; }
}

@media (max-width: 1080px) {
    .site-header { grid-template-columns: auto 1fr auto; padding: 0 24px; }
    .desktop-nav a:not(.cart-link) { display: none; }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .video-thumbnail-grid { grid-template-columns: repeat(4, 1fr); }
    .creator-grid { grid-template-columns: repeat(4, 1fr); }
    .live-grid { grid-template-columns: repeat(2, 1fr); }
    .live-grid.compact { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
    :root { --bottom-nav: 66px; }
    body:not(.auth-page):not(.install-page) { padding-bottom: calc(var(--bottom-nav) + env(safe-area-inset-bottom)); }
    .site-header { position: relative; height: 62px; padding: 0 16px; border: 0; }
    .site-header .brand > span:last-child { display: none; }
    .header-search { grid-column: 2; }
    .desktop-nav { display: none; }
    .page-main { min-height: auto; }
    .content-shell { width: min(100% - 28px, 650px); padding: 24px 0 45px; }
    .site-footer { grid-template-columns: 1fr; width: calc(100% - 28px); padding: 25px 0 calc(30px + var(--bottom-nav)); }
    .site-footer nav { flex-wrap: wrap; gap: 10px 17px; }
    .site-footer > small { grid-column: auto; }
    .bottom-nav {
        position: fixed;
        z-index: 100;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        height: calc(var(--bottom-nav) + env(safe-area-inset-bottom));
        align-items: flex-start;
        justify-content: space-around;
        padding: 7px 6px env(safe-area-inset-bottom);
        border-top: 1px solid rgba(225,225,230,.92);
        background: rgba(255,255,255,.94);
        backdrop-filter: blur(20px);
    }
    .feed-page .bottom-nav { color: #fff; border-color: rgba(255,255,255,.08); background: rgba(9,10,13,.88); }
    .bottom-nav > a { position: relative; display: grid; min-width: 55px; justify-items: center; gap: 2px; color: #8b8d96; font-size: 8px; font-weight: 750; }
    .feed-page .bottom-nav > a { color: rgba(255,255,255,.55); }
    .bottom-nav > a.active { color: var(--accent); }
    .bottom-nav .icon { width: 21px; height: 21px; }
    .live-nav { transform: translateY(-17px); }
    .live-nav .live-icon { display: grid; width: 47px; height: 38px; place-items: center; border: 4px solid var(--bg); border-radius: 13px; color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
    .feed-page .live-nav .live-icon { border-color: #111218; }
    .nav-icon-wrap { position: relative; }
    .nav-icon-wrap b { top: -8px; right: -11px; border-color: #fff; }
    .feed-page .nav-icon-wrap b { border-color: #111218; }
    .page-heading { align-items: flex-start; flex-direction: column; }
    .page-heading.compact { align-items: flex-start; }
    .page-heading h1 { font-size: 34px; }
    .form-grid.two { grid-template-columns: 1fr; }
    .product-grid, .product-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
    .product-card { border-radius: 15px; }
    .product-card-body { padding: 11px 41px 12px 12px; }
    .product-card-body h3 { font-size: 12px; }
    .card-add { right: 9px; bottom: 11px; width: 29px; height: 29px; }
    .search-hero { gap: 7px; padding-left: 13px; border-radius: 15px; }
    .search-hero .btn { min-height: 40px; padding: 0 13px; }
    .category-chips { margin-right: -14px; margin-bottom: 27px; }
    .detail-section { margin-top: 45px; }

    .feed-shell, .feed-card { height: calc(100svh - var(--bottom-nav) - env(safe-area-inset-bottom)); }
    .feed-shell { width: 100%; }
    .feed-header { height: 66px; }
    .feed-actions { right: 10px; bottom: 112px; }
    .feed-content { bottom: 13px; }
    .feed-progress { bottom: 0; }
    .bonus-chip { top: 112px; }

    .product-detail-grid { grid-template-columns: 1fr; gap: 28px; }
    .order-detail-grid { grid-template-columns: 1fr; }
    .order-detail-card { padding: 19px; }
    .order-detail-head { align-items: flex-start; flex-direction: column; }
    .legal-content section { padding: 20px; }
    .order-list article { grid-template-columns: 1fr auto; }
    .order-list article > strong { justify-self: start; }
    .order-open { justify-self: end; }
    .product-visual { position: relative; top: auto; aspect-ratio: 4/5; border-radius: 21px; }
    .product-info h1 { font-size: 34px; }
    .secondary-actions { grid-template-columns: 1fr; }
    .review-grid { grid-template-columns: repeat(2, 1fr); }
    .store-cover { height: 220px; border-radius: 20px; }
    .store-profile { grid-template-columns: 90px 1fr; width: calc(100% - 20px); gap: 15px; margin-top: -45px; }
    .store-avatar { width: 90px; height: 90px; border-width: 5px; border-radius: 27px; }
    .store-meta { padding-top: 50px; }
    .store-meta h1 { font-size: 24px; }
    .store-meta > p:not(.eyebrow) { font-size: 12px; }
    .store-profile > .btn { grid-column: 1 / -1; width: 100%; margin: 5px 0 0; }
    .video-thumbnail-grid, .creator-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .creator-hero { grid-template-columns: 90px 1fr; gap: 16px; padding: 23px; }
    .creator-hero > img { width: 90px; height: 90px; }
    .creator-hero h1 { font-size: 25px; }
    .creator-hero > .btn { grid-column: 1/-1; width: 100%; }

    .live-heading { min-height: 320px; padding: 30px; }
    .live-grid, .live-grid.compact { grid-template-columns: 1fr; }
    .live-grid.featured .live-card { grid-template-columns: 1fr; }
    .live-grid.featured .live-cover { min-height: 300px; }
    .live-grid.featured .live-card-body { padding: 25px; }
    .live-section { margin-top: 40px; }
    .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
    .cart-item { grid-template-columns: 90px 1fr auto; gap: 11px; }
    .cart-item > a img { width: 90px; height: 110px; }
    .cart-item-side strong { font-size: 11px; }
    .order-summary { position: static; }
    .form-card { padding: 70px 20px 23px; }
    .step-number { top: 22px; left: 20px; }
    .form-card-head { margin-bottom: 17px; }
    .shared-cart-hero h1 { font-size: 29px; }
    .shared-products article { grid-template-columns: 65px 1fr auto; }
    .shared-products img { width: 65px; height: 76px; }

    .account-hero { align-items: flex-start; flex-wrap: wrap; padding: 21px; }
    .account-avatar { width: 63px; height: 63px; border-radius: 21px; }
    .account-hero > div:nth-child(2) { min-width: calc(100% - 90px); }
    .account-hero > .btn, .account-hero > form { flex: 1; }
    .account-hero > form .btn { width: 100%; }
    .seller-account-banner { grid-template-columns: 42px 1fr; }
    .seller-account-banner > span { width: 42px; height: 42px; }
    .seller-account-banner > b { grid-column: 2; }
    .seller-onboarding-grid { grid-template-columns: 1fr; }
    .seller-onboarding-copy { padding: 32px 24px; }
    .seller-onboarding-copy h1 { font-size: 37px; }
    .seller-onboarding-copy ol { margin-top: 25px; }
    .saved-grid { grid-template-columns: 1fr; }
    .alert-list article { grid-template-columns: 65px 1fr; }
    .alert-list img { width: 65px; height: 75px; }
    .alert-list .btn { grid-column: 1/-1; }
    .order-list article { grid-template-columns: 1fr auto; }
    .order-list article > strong { grid-column: 1/-1; }
    .profile-form-wrap { grid-template-columns: 1fr; gap: 20px; padding: 22px; }
    .review-submit-card { padding: 22px; }
    .review-product h1 { font-size: 23px; }

    .auth-page { overflow: auto; }
    .auth-shell { grid-template-columns: 1fr; min-height: 100svh; padding: 28px 0 45px; }
    .auth-visual { display: none; }
    .auth-form-wrap { width: min(100% - 34px, 470px); }
    .mobile-auth-brand { display: inline-flex; }
    .auth-form-wrap > h2 { font-size: 31px; }
}

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

@media (max-width: 420px) {
    .feed-tabs { gap: 14px; }
    .feed-tabs a { font-size: 11px; }
    .feed-content { right: 67px; }
    .feed-actions { gap: 13px; }
    .feed-caption { font-size: 10px; }
    .product-dock { margin-right: -54px; }
    .dock-add { min-width: 68px; }
    .product-card-body small { font-size: 8px; }
    .product-card-body h3 { font-size: 11px; }
    .card-price strong { font-size: 13px; }
    .review-grid { grid-template-columns: 1fr; }
    .video-thumbnail-grid, .creator-grid { grid-template-columns: repeat(2, 1fr); }
    .buy-panel { flex-direction: column; }
    .quantity-picker { justify-content: space-between; }
    .quantity-picker:not(.small) input { flex: 1; }
    .cart-item { grid-template-columns: 75px 1fr; }
    .cart-item > a img { width: 75px; height: 92px; }
    .cart-item-side { grid-column: 1/-1; grid-template-columns: 1fr auto; align-items: center; justify-items: start; }
}
