/* ════ URGENCE SYSTEM ════ */

.sale-banner {
    width: 100%;
    height: 36px;
    background: #CCFF00;
    color: #0a0a0a;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 10001;
    position: relative;
    font-family: sans-serif;
}

.pricing-card.featured {
    border: 1px solid #CCFF00 !important;
    position: relative;
    z-index: 5;
}

.banner-dot {
    width: 8px;
    height: 8px;
    background: #cc2200;
    border-radius: 50%;
    animation: bannerPulse 1.4s infinite ease-in-out;
}

@keyframes bannerPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(0.9);
    }
}

.banner-timer-digits {
    color: #cc2200;
    font-family: monospace;
    font-weight: 800;
}

/* ════ FLOATING SALE PILL ════ */

.floating-sale-pill {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: #1a1a1a;
    border: 1px solid #CCFF00;
    border-radius: 30px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.floating-sale-pill.visible {
    opacity: 1;
    visibility: visible;
}

.pill-dot {
    width: 6px;
    height: 6px;
    background: #CCFF00;
    border-radius: 50%;
    animation: pillPulse 1.4s infinite ease-in-out;
}

@keyframes pillPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(204, 255, 0, 0.4);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
        box-shadow: 0 0 8px 2px rgba(204, 255, 0, 0.4);
    }
}

.pill-text {
    color: #CCFF00;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pill-timer {
    color: #CCFF00;
}

@media (max-width: 768px) {
    .floating-sale-pill {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }
}

/* ════ CARD URGENCY COMPONENTS ════ */

/* Scarcity Bar */
.scarcity-bar {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(204, 255, 0, 0.3);
    border-radius: 6px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.scarcity-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.scarcity-dot {
    width: 6px;
    height: 6px;
    background: #CCFF00;
    border-radius: 50%;
}

.scarcity-text {
    color: #CCFF00;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scarcity-progress-bg {
    flex: 1;
    height: 4px;
    background: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    max-width: 80px;
}

.scarcity-progress-fill {
    height: 100%;
    background: #CCFF00;
    border-radius: 10px;
}

/* Discount Pill */
.discount-pill {
    background: #1f1f1f;
    color: #CCFF00;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    display: inline-block;
    margin-top: 8px;
    margin-bottom: 8px;
    border: 1px solid rgba(204, 255, 0, 0.4);
}

/* Price Stack */
.price-stack {
    margin: 20px 0;
}

.price-was-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.price-was-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
}

.price-was-amt {
    font-size: 14px;
    color: #888;
    text-decoration: line-through;
}

.price-save-pill {
    background: rgba(204, 255, 0, 0.15);
    color: #CCFF00;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.price-now {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    display: block;
}


/* ════ CARD COUNTDOWN TIMER ════ */
.card-timer-box {
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    padding: 16px;
    margin: 24px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.timer-dot-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.pulsing-dot {
    width: 6px;
    height: 6px;
    background: #ff3b30;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff3b30;
    animation: timerPulse 1.2s infinite ease-in-out;
}

@keyframes timerPulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
    }

    70% {
        transform: scale(1.1);
        opacity: 0.8;
        box-shadow: 0 0 0 6px rgba(255, 59, 48, 0);
    }

    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
    }
}

.timer-label {
    font-size: 10px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.timer-digits-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
}

.digit-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-digit {
    font-size: 28px;
    font-weight: 800;
    color: #ff3b30;
    font-family: 'Inter', sans-serif;
    line-height: 1;
    transition: color 0.3s ease;
}

.timer-digit.warning {
    color: #ff9500;
    /* Orange when below 1 hour */
}

.unit-label {
    font-size: 9px;
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 4px;
}

.pricing-card:hover {
    transform: translateY(-8px);
    transition: transform 0.3s ease;
}

.pricing-card.featured:hover {
    box-shadow: 0 0 30px rgba(204, 255, 0, 0.15);
}