/* Countdown strip - sağ kenar, hover'da kalan süre */
.countdown-strip {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 120px;
    background: linear-gradient(180deg, #1a237e 0%, #0d47a1 100%);
    border-radius: 12px 0 0 12px;
    box-shadow: -2px 0 12px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 9998;
    transition: width 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}
.countdown-strip:hover {
    width: 180px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
}
.countdown-strip__icon {
    font-size: 24px;
    margin-bottom: 4px;
    animation: countdown-pulse 2s ease-in-out infinite;
}
.countdown-strip__days {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}
.countdown-strip__label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}
.countdown-strip__hover {
    display: none;
    white-space: nowrap;
    padding: 0 12px;
    text-align: center;
    font-size: 13px;
    line-height: 1.4;
}
.countdown-strip:hover .countdown-strip__icon,
.countdown-strip:hover .countdown-strip__days,
.countdown-strip:hover .countdown-strip__label { display: none; }
.countdown-strip:hover .countdown-strip__hover { display: block; }
@keyframes countdown-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.05); }
}
