/* ═══════════ 5KEY — карточка товара V2 ═══════════ */

/* ── ХЛЕБНЫЕ КРОШКИ (в центре над заголовком) ── */
.breadcrumbs-v2 {
    font-size: 13px;
    color: var(--text-faint);
    padding: 0 0 6px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.breadcrumbs-v2 a { color: var(--text-dim); transition: .15s; }
.breadcrumbs-v2 a:hover { color: var(--accent); }
.breadcrumbs-v2 .sep { color: var(--text-dim); font-weight: 300; padding: 0 2px; }

/* ── 3-колоночный лейаут ── */
.product-hero {
    display: grid;
    grid-template-columns: 400px 1fr 330px;
    gap: 28px;
    margin-bottom: 36px;
}

/* Левая колонка: Галерея (sticky) */
.gallery-col {
    position: sticky;
    top: 94px;
    align-self: start;
}
.gallery-main {
    position: relative;
    aspect-ratio: 1;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
}
.gallery-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.gallery-main:hover img {
    transform: scale(1.08);
}
.gallery-main .no-img {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    opacity: .15;
}
.gallery-main .no-img .lucide { width: 64px; height: 64px; }
.gallery-discount {
    position: absolute; top: 12px; left: 12px;
    padding: 5px 12px;
    background: var(--red); color: #fff;
    border-radius: 6px; font-size: 13px; font-weight: 800;
    z-index: 2;
}
.gallery-thumbs {
    display: flex; gap: 8px; margin-top: 10px;
}
.gallery-thumb {
    width: 56px; height: 56px; border-radius: 8px; overflow: hidden;
    border: 2px solid var(--border); cursor: pointer; opacity: .6;
    transition: .15s; flex-shrink: 0;
}
.gallery-thumb:hover, .gallery-thumb.active {
    border-color: var(--accent); opacity: 1;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Центральная колонка */
.product-title-v2 {
    font-size: 24px; font-weight: 700; color: #fff;
    line-height: 1.3; margin-bottom: 12px;
    word-break: break-word; overflow-wrap: break-word;
}

/* Мета-строка: звёзды + продажи + наличие */
.meta-bar {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 14px; flex-wrap: wrap;
}
.meta-stars {
    display: inline-flex; align-items: center; gap: 2px;
}
.meta-stars svg.star { width: 16px; height: 16px; display: block; }
.meta-rating-val {
    font-size: 14px; font-weight: 600; color: #f59e0b; margin-left: 4px;
}
.meta-rev-count {
    font-size: 13px; color: var(--text-dim); margin-left: 2px;
}
.meta-sep { width: 1px; height: 16px; background: var(--border); }
.meta-label {
    font-size: 13px; color: var(--text-dim);
    display: inline-flex; align-items: center; gap: 4px;
}
.meta-label .lucide { width: 14px; height: 14px; }
.meta-available {
    font-size: 13px; color: var(--green); font-weight: 600;
    display: inline-flex; align-items: center; gap: 4px;
}
.meta-unavailable {
    font-size: 13px; color: var(--red); font-weight: 600;
    display: inline-flex; align-items: center; gap: 4px;
}

/* Блок опций — без контейнера, просто строчки */
.options-block-v2 {
    margin-bottom: 16px;
}
.options-block-v2 .option-label { margin-bottom: 4px; }
.options-block-v2 .option-row { margin-bottom: 10px; }
.options-block-v2 .option-row:last-child { margin-bottom: 0; }
.options-block-v2 .option-select {
    width: 100%; padding: 8px 12px;
    background: var(--bg); border: 1px solid var(--input-border);
    border-radius: 8px; color: var(--text);
    font: 14px/1.4 ui-monospace,monospace; outline: none; cursor: pointer; transition: .15s;
}
.options-block-v2 .option-select:focus { border-color: var(--accent); }
.options-block-v2 .option-radio-group,
.options-block-v2 .option-checkbox-group {
    display: flex; flex-wrap: wrap; gap: 6px;
}

/* Правая колонка: sticky */
.side-col {
    position: sticky; top: 94px; align-self: start;
    display: flex; flex-direction: column; gap: 14px;
}

/* Блок цены — стекло */
.price-block-v2 {
    background: rgba(10,14,26,.55); border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px; padding: 28px 18px 18px;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.price-main-v2 {
    display: flex; align-items: baseline; gap: 4px;
    margin-bottom: 6px;
}
.price-num {
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-size: 32px; font-weight: 800; color: #fff; letter-spacing: .03em;
    line-height: 1;
}
.price-rub {
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-size: 20px; font-weight: 800; color: #fff;
}
.price-old-row {
    display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.price-old-v2 {
    font-family: ui-monospace, monospace; font-size: 14px;
    color: var(--text-faint); text-decoration: line-through;
}
.price-discount-v2 {
    font-size: 13px; font-weight: 800; color: var(--red);
}
.price-actions {
    display: flex; gap: 8px; align-items: stretch;
    margin-top: 12px;
}
.btn-buy-v2 {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 0;
    background: var(--accent); color: #000;
    border: none; border-radius: 10px;
    font: inherit; font-size: 15px; font-weight: 700;
    cursor: pointer; transition: .15s;
}
.btn-buy-v2:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-buy-v2:active { transform: scale(.97); }
.btn-icon-v2 {
    width: 48px; display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border); border-radius: 10px;
    background: transparent; color: var(--text-dim); cursor: pointer; transition: .15s;
    flex-shrink: 0;
}
.btn-icon-v2:hover { border-color: var(--accent); color: var(--text); }

/* Промокод */
.promo-section { margin-top: 10px; }
.promo-toggle {
    font-size: 12px; color: var(--text-faint); cursor: pointer;
    transition: color .15s; text-decoration: underline; text-decoration-style: dotted;
}
.promo-toggle:hover { color: var(--text-dim); }
.promo-form { margin-top: 6px; }
.promo-input {
    flex: 1; padding: 6px 10px; background: var(--input-bg); color: #fff;
    border: 1px solid var(--input-border); border-radius: 6px;
    font: inherit; font-size: 12px; outline: none; transition: .15s;
}
.promo-input:focus { border-color: var(--accent); }
.promo-apply {
    padding: 6px 12px; background: var(--accent); color: #000;
    border: none; border-radius: 6px; font: inherit; font-size: 12px; font-weight: 600;
    cursor: pointer; white-space: nowrap; transition: .15s;
}
.promo-apply:hover { background: var(--accent-hover); }
#promo-result { font-size: 12px; line-height: 1.4; }
#promo-result.ok { color: var(--green); }
#promo-result.err { color: var(--red); }
.promo-price-line {
    margin: 12px 0 4px; display: flex; align-items: center; gap: 10px;
}
.btn-icon-v2 .lucide { width: 20px; height: 20px; }
/* Сердечко в избранном */
.btn-icon-v2.faved { border-color: transparent; color: var(--accent); background: rgba(0,212,255,.1); }
.btn-icon-v2.faved .lucide { fill: var(--accent); }

/* Продавец — стекло, компактно, кликабельный */
.seller-block-v2 {
    background: rgba(10,14,26,.55); border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px; padding: 18px;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    cursor: pointer; transition: border-color .15s, background .15s;
}
.seller-block-v2:hover {
    border-color: rgba(0,212,255,.3);
    background: rgba(0,212,255,.04);
}
.seller-header-v2 {
    display: flex; align-items: center; gap: 10px;
}
.seller-avatar-v2 {
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); flex-shrink: 0; position: relative;
}
.seller-avatar-v2 .lucide { width: 20px; height: 20px; }
.seller-name-v2 { font-weight: 600; color: var(--text); font-size: 14px; flex: 1; }
.seller-name-v2 a { color: inherit; text-decoration: none; }

/* Точка онлайн на иконке магазина */
.store-online-dot {
    position: absolute; top: -2px; right: -3px;
    width: 10px; height: 10px; border-radius: 50%;
    background: #22c55e; border: 2px solid var(--bg-dark, #0f1119);
    box-shadow: 0 0 6px rgba(34,197,94,.5);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 6px rgba(34,197,94,.5); }
    50% { box-shadow: 0 0 10px rgba(34,197,94,.8); }
}

/* Старые стили — оставляем для совместимости */
.online-badge {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; color: #22c55e; font-weight: 500;
}
.online-dot {
    display: inline-block; width: 8px; height: 8px;
    border-radius: 50%; background: #22c55e;
    box-shadow: 0 0 6px rgba(34,197,94,.5);
}
.seller-name-v2 a:hover { color: var(--accent); text-decoration: underline; }
.seller-header-right {
    display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.sr-rating {
    font-size: 13px; color: var(--text-dim); display: inline-flex; align-items: center; gap: 3px;
}
.sr-verified {
    display: inline-flex; align-items: center; justify-content: center;
    width: 24px; height: 24px; color: var(--green);
}
.sr-verified .lucide { width: 16px; height: 16px; }

/* Кнопка чата в шапке продавца — как btn-icon-v2, но компактнее */
.sr-chat-btn {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border); border-radius: 10px;
    background: transparent; color: var(--text-dim); cursor: pointer;
    transition: .15s; flex-shrink: 0; padding: 0;
    -webkit-appearance: none; appearance: none;
}
.sr-chat-btn:hover { border-color: var(--accent); color: var(--accent); }
.sr-chat-btn .lucide { width: 17px; height: 17px; }

/* Детали (раскрываются по клику) */
.seller-details {
    margin-top: 10px; padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.06);
    display: flex; flex-direction: column; gap: 8px;
}
.sd-row {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: var(--text-dim);
}
.sd-link {
    text-decoration: none; color: var(--text-dim); transition: color .15s;
}
.sd-link:hover { color: var(--text); }
.sd-link:hover b { color: var(--accent); }
.sd-row .lucide { width: 15px; height: 15px; color: var(--text-faint); flex-shrink: 0; }
.sd-row b { color: var(--text); font-weight: 600; }
.sd-row span { flex: 1; }
.sd-muted { font-size: 12px; color: var(--text-faint); }

/* Доверие */
.trust-block-v2 {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 14px; padding: 18px;
    display: flex; flex-direction: column; gap: 10px;
}
.trust-item-v2 {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--text-dim);
}
.trust-item-v2 .lucide { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

/* Оплата */

/* Табы-заголовки: Описание / Отзывы */
.section-tabs {
    display: flex; gap: 20px; align-items: center;
    margin-top: 28px; margin-bottom: 4px;
}
.section-tab {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 0; border: none; background: none;
    font: inherit; font-size: 18px; font-weight: 600;
    color: var(--text-faint); cursor: pointer; transition: .15s;
}
.section-tab .lucide { width: 20px; height: 20px; }
.section-tab:hover { color: var(--text-dim); }
.section-tab.active { color: #fff; }

/* Описание */
.desc-block-v2 {
    margin-top: 10px;
}
.desc-block-v2 .desc-body {
    font-size: 14px; line-height: 1.65; color: #b8c0d0;
    padding: 16px 0 4px;
}
.desc-block-v2.collapsed .desc-body {
    max-height: 300px; overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}
.desc-block-v2 .desc-body {
    max-height: 5000px; overflow: hidden;
    transition: max-height 0.5s ease;
}
.desc-toggle {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 16px; margin-top: 8px;
    background: rgba(0,212,255,.06); border: 1px solid rgba(0,212,255,.15);
    border-radius: 8px; color: var(--accent); font: inherit; font-size: 13px;
    cursor: pointer; transition: .15s;
}
.desc-toggle:hover { background: rgba(0,212,255,.12); }

/* ── Доверие (внутри блока цены) ── */
.trust-inline {
    display: flex; flex-direction: column; gap: 8px;
    margin-top: 12px; padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.06);
}
.trust-inline-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: var(--text-dim);
}
.trust-inline-item .lucide { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

/* ── СКИДКИ ПОСТОЯННЫМ ── */
.discount-ladder-v2 {
    background: rgba(10,14,26,.55); border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px; padding: 18px;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.discount-rows { margin-top: 8px; }
.discount-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 6px 0; border-bottom: 1px solid var(--border);
    font-size: 13px;
}
.discount-row:last-child { border-bottom: none; }
.dr-sum { color: var(--text-dim); }
.dr-pct { color: var(--accent); font-weight: 700; }

/* ── ПОДАРОК ── */
.gift-block-v2 {
    background: rgba(10,14,26,.55); border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px; padding: 18px;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.gift-body {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: var(--text); margin-top: 8px;
}
.gift-hint {
    font-size: 11px; color: var(--text-faint); margin-top: 6px;
}

/* ── ОТЗЫВЫ — стекло ── */
.reviews-block-v2 {
    margin-top: 36px;
}
.reviews-list-v2 { display: flex; flex-direction: column; gap: 12px; }
.review-item-v2 {
    padding: 12px; border-radius: 10px;
    background: rgba(255,255,255,.02); border: 1px solid var(--border);
}
.review-item-v2.review-good { border-color: rgba(34,197,94,.2);  background: rgba(34,197,94,.07); }
.review-item-v2.review-bad  { border-color: rgba(239,68,68,.25); background: rgba(239,68,68,.07); }
.review-header-v2 {
    display: flex; align-items: center; gap: 8px; margin-bottom: 6px;
}
.review-author { font-size: 13px; font-weight: 600; color: var(--text); }
.review-type { font-size: 13px; }
.review-type.bad { color: var(--red); }
.review-date { font-size: 11px; color: var(--text-faint); margin-left: auto; }
.review-text-v2 {
    font-size: 13px; line-height: 1.55; color: var(--text-dim);
}
.review-comment-v2 {
    margin-top: 8px; padding: 8px 10px; border-radius: 8px;
    background: rgba(0,212,255,.05); border: 1px solid rgba(0,212,255,.15);
    font-size: 12px; line-height: 1.5; color: var(--text-dim);
}
.review-comment-label {
    font-weight: 600; color: var(--accent); font-size: 11px;
    display: block; margin-bottom: 2px;
}

/* ── ОПЦИИ: радио и чекбоксы ── */
.option-label {
    font-size: 13px; font-weight: 600; color: var(--text);
    margin-bottom: 6px; word-break: break-word;
}
.option-comment {
    font-size: 12px; color: var(--text-faint); line-height: 1.5;
    margin: -2px 0 8px; word-break: break-word;
}
.option-radio, .option-checkbox {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 12px; border: 1px solid var(--input-border);
    border-radius: 8px; cursor: pointer; font-size: 13px;
    color: var(--text-dim); transition: .15s;
    background: var(--bg); word-break: break-word;
    position: relative;
}

/* Лейбл опции — текст внутри радио/чекбокса */
.option-radio span, .option-checkbox span {
    word-break: break-word; overflow-wrap: break-word;
}
/* Прячем нативный радио/чекбокс — состояние через подсветку плашки */
.option-radio input, .option-checkbox input {
    position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none;
}
.option-radio:hover, .option-checkbox:hover { border-color: var(--accent); color: var(--text); }
/* Выбранный чип */
.option-radio.selected, .option-checkbox.selected {
    border-color: var(--accent);
    background: rgba(0,212,255,.08);
    color: #fff;
}
.opt-price { color: var(--accent); font-weight: 600; font-size: 12px; margin-left: 2px; }
.option-radio.selected .opt-price,
.option-checkbox.selected .opt-price { color: #fff; }
.option-unavailable { opacity: .45; cursor: not-allowed; }
.option-unavailable:hover { border-color: var(--input-border) !important; color: var(--text-dim) !important; }
.opt-unavailable { color: var(--red); font-size: 11px; margin-left: 4px; }
.option-row-error { border-left: 3px solid var(--red); padding-left: 10px; border-radius: 0; }
.option-row-error .option-label { color: var(--red); }
.option-error-hint { color: var(--red); font-size: 11px; margin-top: 3px; display: block; }
.review-tab {
    padding: 4px 0; border: none;
    background: transparent; color: var(--text-dim); font-size: 13px;
    cursor: pointer; transition: .15s; margin-right: 16px;
    display: inline-flex; align-items: center; gap: 4px;
}
.review-tab .lucide { width: 14px; height: 14px; }
.review-tab:hover { color: var(--text); }
.review-tab.active { color: var(--accent); font-weight: 600; }
.tab-count { opacity: .7; }
.option-textarea {
    width: 100%; padding: 10px 12px;
    background: var(--bg); border: 1px solid var(--input-border);
    border-radius: 8px; color: var(--text);
    font: 14px/1.5 ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    outline: none; resize: vertical; transition: border-color .15s;
}
.option-textarea:focus { border-color: var(--accent); }

/* ── Адаптив ── */
@media(max-width: 1200px) {
    .product-hero { grid-template-columns: 340px 1fr 280px; gap: 20px; }
}
@media(max-width: 960px) {
    .product-hero { grid-template-columns: 1fr 1fr; }
    .side-col    { grid-column: 2; grid-row: 1 / 3; }
    .gallery-col { grid-column: 1; grid-row: 1; position: static; }
    .info-col    { grid-column: 1; grid-row: 2; }
    .side-col     { position: static; }
}
@media(max-width: 680px) {
    .product-hero { grid-template-columns: 1fr; }
    .gallery-col { grid-column: 1; grid-row: 1; }
    .side-col    { grid-column: 1; grid-row: 2; }
    .info-col    { grid-column: 1; grid-row: 3; }
    .gallery-col, .side-col, .info-col { position: static; }
    .product-title-v2 { font-size: 18px; }
    .price-num { font-size: 26px; }
    .price-rub { font-size: 17px; }

    /* Прячем кнопку Купить в основном блоке — она в нижней плашке */
    .price-actions { display: none; }
    /* Прячем десктопную sticky-плашку */
    .header-shell .sticky-buy-bar { display: none; }

    /* Мобильная плашка снизу */
    .mob-buy-bar {
        display: flex; align-items: center; gap: 10px;
        position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
        padding: 12px 16px;
        background: rgba(10,14,26,.75);
        -webkit-backdrop-filter: blur(20px) saturate(160%);
        backdrop-filter: blur(20px) saturate(160%);
        border-top: 1px solid rgba(255,255,255,.06);
    }
    .mob-buy-price { display: none; }
    .mob-buy-btn {
        flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
        padding: 14px 0; background: var(--accent); color: #000;
        border: none; border-radius: 12px;
        font: inherit; font-size: 16px; font-weight: 700;
        cursor: pointer; transition: .15s;
    }
    .mob-buy-btn:active { transform: scale(.96); }

    /* Отступ снизу чтобы контент не скрывался под плашкой */
    body { padding-bottom: 62px; }
    .mob-buy-bar-placeholder { height: 62px; }
}
@media(min-width: 681px) {
    .mob-buy-bar { display: none; }
}

/* ═══ HEADER-SHELL: единое стекло (шапка + sticky-бар) ═══ */
/* На product.php убираем блюр/фон/бордер с шапки — всё на обёртке */
.header { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; border-bottom: none !important; background: transparent !important; position: static !important; }
.header-shell {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10,14,26,.65);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    backdrop-filter: blur(20px) saturate(160%);
}
/* Плашка внутри обёртки — течёт как вторая строка */
.sticky-buy-bar {
    overflow: hidden;
    max-height: 0;
    transition: max-height .28s cubic-bezier(.4,0,.2,1);
    background: none; /* стекло на обёртке */
}
.header-shell.expanded .sticky-buy-bar { max-height: 72px; }
.sticky-buy-inner {
    max-width: 1440px; margin: 0 auto; padding: 0 40px;
    display: flex; align-items: center; gap: 14px;
    height: 72px;
}
.sticky-buy-img {
    width: 52px; height: 52px; border-radius: 10px;
    object-fit: cover; flex-shrink: 0;
    background: var(--bg-card); border: 1px solid var(--border);
}
.sticky-buy-info {
    flex: 1; min-width: 0;
    display: flex; flex-direction: column; gap: 3px;
}
.sticky-buy-name {
    font-size: 15px; font-weight: 600; color: #fff;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    line-height: 1.2;
}
.sticky-buy-meta {
    display: flex; align-items: center; gap: 0;
    font-size: 12px; color: var(--text-dim);
    white-space: nowrap;
}
.sticky-buy-meta .meta-stars { display: inline-flex; align-items: center; gap: 1px; }
.sticky-buy-meta .meta-stars svg.star { width: 11px; height: 11px; display: block; }
.sticky-buy-meta .meta-rating-val { font-size: 12px; font-weight: 600; color: #f59e0b; margin-left: 3px; }
.sticky-buy-meta .meta-sep { width: 1px; height: 12px; background: var(--border); margin: 0 7px; flex-shrink: 0; }
.sticky-buy-meta .meta-label { font-size: 12px; color: var(--text-dim); display: inline-flex; align-items: center; gap: 3px; }
.sticky-buy-meta .meta-label .lucide { width: 12px; height: 12px; }
.sticky-buy-price {
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-size: 20px; font-weight: 800; color: #fff;
    white-space: nowrap; flex-shrink: 0;
}
.sticky-buy-btn {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 20px; background: var(--accent); color: #000;
    border: none; border-radius: 10px;
    font: inherit; font-size: 14px; font-weight: 700;
    cursor: pointer; transition: .15s; flex-shrink: 0;
}
.sticky-buy-btn:hover { background: var(--accent-hover); transform: translateY(-1px); }
.sticky-buy-btn:active { transform: scale(.96); }
