.image-container {
    position: relative;
    display: inline-block;
}

.countdown {
    position: absolute;
    bottom: -41px;
    left: 50%;
    transform: translateX(-50%);
    width: 233.5px;
    height: 82px;
    padding: 5px;
    background: white;
    box-shadow: 0px 0.5px 1px rgba(10, 12.67, 18, 0.05);
    border-radius: 7.5px;
    border: 0.5px solid #D5D7DA;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    font-family: Inter, sans-serif;
    transition: all 0.3s ease;
    z-index: 10;
}

.countdown-header {
    text-align: center;
    color: #076FC6;
    font-size: 12px;
    font-weight: 600;
    line-height: 15px;
}

.countdown-items {
    align-self: stretch;
    flex: 1 1 0;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    display: flex;
}

.countdown-item {
    flex: 1 1 0;
    align-self: stretch;
    padding: 0 3.5px;
    background: #076FC6;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    display: flex;
    transition: all 0.3s ease;
}

.countdown-content {
    width: 38px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.countdown-number {
    text-align: center;
    color: white;
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
    transition: all 0.3s ease;
}

.countdown-label {
    text-align: center;
    color: white;
    font-size: 10px;
    font-weight: 600;
    line-height: 14px;
    transition: all 0.3s ease;
}

.countdown-expired-text {
    display: none;
}

.countdown.expired .countdown-header,
.countdown.expired .countdown-items {
    display: none;
}

.countdown.expired .countdown-expired-text {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.countdown.expired .countdown-expired-text .countdown-content {
    flex: 1;
    align-self: stretch;
    padding: 0 3.5px;
    background: #E93F3F;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    gap: 2px;
    display: flex;
}

.countdown.expired .countdown-number {
    font-size: 20px;
    line-height: 22px;
}

.countdown.expired .countdown-label {
    font-size: 12px;
    line-height: 15px;
}

@media (max-width: 640px) {
    .countdown {
        width: 200px;
        height: 70px;
        bottom: -35px;
        padding: 4px;
    }

    .countdown-content {
        width: 32px;
    }

    .countdown-number {
        font-size: 24px;
        line-height: 28px;
    }

    .countdown.expired .countdown-number {
        font-size: 16px;
        line-height: 18px;
    }

    .countdown-label {
        font-size: 8px;
        line-height: 12px;
    }

    .countdown.expired .countdown-label {
        font-size: 10px;
        line-height: 13px;
    }

    .countdown-header {
        font-size: 10px;
        line-height: 12px;
    }
}