.offer-card-premium {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-card-premium:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.timer-glass-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.offer-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
}

.blob-1 {
    background: var(--primary-orange);
    top: -100px;
    left: -100px;
    animation: rotate 20s infinite linear;
}

.blob-2 {
    background: #007bff;
    bottom: -100px;
    right: -100px;
    animation: rotate 25s infinite linear reverse;
}

@keyframes rotate {
    from {
        transform: rotate(0deg) translate(20px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translate(20px) rotate(-360deg);
    }
}

.discount-badge-lg {
    display: flex;
    align-items: center;
    background: white;
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
}

.discount-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.discount-percent {
    font-size: 0.9rem;
    font-weight: 700;
    margin-left: 0.4rem;
    line-height: 0.8;
}

.discount-percent small {
    font-size: 0.65rem;
    opacity: 0.7;
}

.timer-unit {
    flex: 1;
}

.timer-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.timer-label {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-top: 0.15rem;
}

.timer-separator {
    font-size: 1.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.2);
    padding-top: 0;
}

.text-glow {
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}

.animate-pulse-slow {
    animation: pulse-slow 3s infinite ease-in-out;
}

@keyframes pulse-slow {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.85;
        transform: scale(0.98);
    }
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(var(--bs-primary-rgb), 0.4);
}

.tracking-wider {
    letter-spacing: 2px;
}

.tracking-widest {
    letter-spacing: 4px;
}

.z-index-1 {
    z-index: 1;
}
