

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ── Promotion banner ───────────────────────────────────────────────────────── */
@keyframes promo-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-33.3333%); }
}

.promo-banner-section {
    background: linear-gradient(to right, #0f172a, #450a0a, #7f1d1d, #450a0a, #0f172a);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.promo-banner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
}

.promo-banner-inner {
    display: flex;
    align-items: center;
    min-height: 40px;
}

/* Left pinned label */
.promo-anchor {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px 0 20px;
    position: relative;
    z-index: 10;
}

.promo-fire {
    font-size: 13px;
    line-height: 1;
}

.promo-anchor-label {
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    opacity: 0.9;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.promo-anchor:hover .promo-anchor-label {
    letter-spacing: 0.35em;
    opacity: 1;
}

.promo-anchor-sep {
    display: block;
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.18);
    margin-left: 4px;
}

/* Scrolling track */
.promo-track-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    cursor: default;
}

.promo-track-wrapper * {
    cursor: default;
}

.promo-fade-l,
.promo-fade-r {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 48px;
    z-index: 5;
    pointer-events: none;
}

.promo-fade-l {
    left: 0;
    background: linear-gradient(to right, #0f172a, transparent);
}

.promo-fade-r {
    right: 0;
    background: linear-gradient(to left, #0f172a, transparent);
}

.promo-scroll-track {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    animation: promo-scroll 28s linear infinite;
    white-space: nowrap;
    padding: 9px 0;
}

#promo-banner-section:hover .promo-scroll-track {
    animation-play-state: paused;
}

/* Promo item */
.promo-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

a.promo-item {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.promo-item:hover {
    transform: scale(1.05);
}

.promo-badge-pill {
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 2px 8px;
    line-height: 1.4;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.promo-item:hover .promo-badge-pill {
    background: #ffffff;
    color: var(--brand-red);
}

.promo-discount-val {
    font-size: 13px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.01em;
    font-family: var(--font-primary);
}

.promo-name-txt {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: -0.01em;
    font-family: var(--font-body);
}

.promo-end-txt {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
}

.promo-sep {
    font-size: 6px;
    color: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
    margin: 0 20px;
}

/* ── Tier tooltip ──────────────────────────────────────────────────────────── */
.tier-info-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: default;
}

.tier-info-tooltip .tier-tooltip-box {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: #f9fafb;
    font-size: 11px;
    font-weight: 600;
    border-radius: 12px;
    padding: 10px 14px;
    white-space: nowrap;
    z-index: 9999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    pointer-events: none;
    line-height: 1.7;
    text-align: left;
    min-width: 200px;
}

.tier-info-tooltip .tier-tooltip-box::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1f2937;
}

.tier-info-tooltip:hover .tier-tooltip-box,
.tier-info-tooltip:focus .tier-tooltip-box {
    display: block;
}

/* ── Print styles ──────────────────────────────────────────────────────────── */
@media print {
    body > *:not(#print-area) { display: none !important; }
    #print-area { display: block !important; }
}

#navbar-placeholder {
    display: contents;
}

#footer-placeholder {
    display: block;
}

/* Ensure navbar overlays correctly */
nav.absolute {
    z-index: 50;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}