/* Timer Style Products Amazing */
.feature-title {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.time-unit {
    background: #f7284b;
    border: 1px solid #df092b;
    border-radius: 10px;
    padding: 7px 5px;
    min-width: 60px;
    text-align: center;
    transition: all 0.3s ease;
}

.time-unit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.time-number {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    display: block;
    line-height: 1;
}

.time-label {
    font-size: 12px;
    color: #ffffff;
    margin-top: 5px;
    font-weight: 500;
}

.expired {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 20px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
}

/* Timer Style Products Amazing */
