/* Промо-блок "Товары дня" */
.razdel-dayproducts-promo {
    background: #000000;
    width: 100%;
    padding: 30px 0;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
}

.dayproducts-promo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dayproducts-promo-dog {
    flex-shrink: 0;
}

.dayproducts-promo-dog img {
    width: 200px;
    height: auto;
    display: block;
}

.dayproducts-promo-content {
    flex: 1;
    color: #ffffff;
}

.dayproducts-promo-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.dayproducts-promo-text {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

.dayproducts-promo-countdown-wrapper {
    flex-shrink: 0;
}

.dayproducts-promo-countdown-label {
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dayproducts-promo-countdown {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px 20px;
    text-align: center;
    min-width: 80px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Адаптив для планшетов */
@media (max-width: 1024px) {
    .dayproducts-promo-container {
        gap: 30px;
    }
    
    .dayproducts-promo-dog img {
        width: 250px;
    }
    
    .dayproducts-promo-title {
        font-size: 28px;
    }
    
    .dayproducts-promo-text {
        font-size: 16px;
    }
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
    .razdel-dayproducts-promo {
        padding: 20px 0;
        margin-bottom: 20px;
    }
    
    .dayproducts-promo-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .dayproducts-promo-dog {
        order: 1;
    }
    
    .dayproducts-promo-dog img {
        width: 200px;
        margin: 0 auto;
    }
    
    .dayproducts-promo-content {
        order: 2;
    }
    
    .dayproducts-promo-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .dayproducts-promo-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .dayproducts-promo-countdown-wrapper {
        order: 3;
    }
    
    .dayproducts-promo-countdown {
        gap: 10px;
    }
    
    .countdown-item {
        padding: 10px 15px;
        min-width: 70px;
    }
    
    .countdown-value {
        font-size: 28px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .dayproducts-promo-dog img {
        width: 150px;
    }
    
    .dayproducts-promo-title {
        font-size: 20px;
    }
    
    .dayproducts-promo-text {
        font-size: 13px;
    }
    
    .countdown-item {
        padding: 8px 12px;
        min-width: 60px;
    }
    
    .countdown-value {
        font-size: 24px;
    }
}
