/* Premium promo — top bar + gift offer modal */

body.has-vexor-promo {
    padding-top: 32px;
}

body.has-vexor-promo .page-tabs {
    top: 44px;
}

.vexor-promo-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 12000;
    height: 32px;
    background: #0a0a0a;
    border-bottom: 1px solid #1a1a1a;
    overflow: hidden;
}

.vexor-promo-track {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    overflow: hidden;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    font: inherit;
    color: inherit;
}

.vexor-promo-track:focus-visible {
    outline: 1px solid #fff;
    outline-offset: -2px;
}

.vexor-promo-track:hover {
    background: #0f0f0f;
}

.vexor-promo-marquee {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    white-space: nowrap;
    animation: vexor-promo-scroll 36s linear infinite;
}

.vexor-promo-track:hover .vexor-promo-marquee {
    animation-play-state: paused;
}

.vexor-promo-item {
    display: inline-flex;
    align-items: center;
    padding: 0 22px;
    font-family: 'Geist', 'Inter', system-ui, sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #c8c8c8;
}

.vexor-promo-item + .vexor-promo-item::before {
    content: '·';
    margin-right: 22px;
    color: #3a3a3a;
    font-weight: 400;
}

@keyframes vexor-promo-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Gift offer modal */
.vexor-gift-overlay {
    position: fixed;
    inset: 0;
    z-index: 13000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.78);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.vexor-gift-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.vexor-gift-modal {
    position: relative;
    width: min(400px, 100%);
    padding: 28px 28px 22px;
    border-radius: 0;
    background: #0a0a0a;
    border: 1px solid #222;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    color: #fff;
    font-family: 'Geist', 'Inter', system-ui, sans-serif;
    text-align: left;
}

.vexor-gift-kicker {
    margin: 0 0 12px;
    font-size: 0.68rem;
    font-weight: 650;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
}

.vexor-gift-modal h2 {
    margin: 0 0 12px;
    font-size: 1.35rem;
    line-height: 1.25;
    letter-spacing: -0.025em;
    font-weight: 700;
    color: #fff;
}

.vexor-gift-modal p {
    margin: 0 0 16px;
    color: #999;
    font-size: 0.88rem;
    line-height: 1.55;
}

.vexor-gift-steps {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    border-top: 1px solid #1a1a1a;
}

.vexor-gift-steps li {
    display: grid;
    grid-template-columns: 1.25rem 1fr;
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px solid #1a1a1a;
    font-size: 0.84rem;
    line-height: 1.45;
    color: #ccc;
}

.vexor-gift-steps li span {
    color: #666;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
}

.vexor-gift-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vexor-gift-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #fff;
    border-radius: 0;
    background: #fff;
    color: #0a0a0a;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    text-decoration: none;
}

.vexor-gift-cta:hover {
    background: #e8e8e8;
    border-color: #e8e8e8;
}

.vexor-gift-dismiss {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #666;
    font-size: 0.8rem;
    cursor: pointer;
}

.vexor-gift-dismiss:hover {
    color: #aaa;
}

.vexor-gift-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #666;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
}

.vexor-gift-close:hover {
    color: #fff;
}

@media (max-width: 520px) {
    .vexor-promo-item {
        font-size: 0.64rem;
        padding: 0 16px;
    }

    .vexor-promo-item + .vexor-promo-item::before {
        margin-right: 16px;
    }

    .vexor-gift-modal {
        padding: 24px 20px 18px;
    }

    .vexor-gift-modal h2 {
        font-size: 1.2rem;
    }
}
