/* Стили для промо-баннеров */
.promo-banner {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(231, 76, 60, 0.3);
}

.promo-banner h2 {
    margin: 0 0 1rem 0;
    font-size: 2rem;
    color: white;
}

.promo-banner p {
    font-size: 1.1rem;
    margin: 0 0 1.5rem 0;
    opacity: 0.9;
}

.promo-timer {
    margin-top: 1.5rem;
}

.timer-label {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.timer-unit {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
}

.timer-unit span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.timer-unit label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timer-expired {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f39c12;
}

/* Стили для таблиц цен */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.pricing-table th {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.pricing-table tr:hover {
    background: #f8f9fa;
}

.pricing-table .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
}

.pricing-table .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.pricing-table .discount {
    background: #e74c3c;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Стили для популярных продуктов */
.popular-products {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.popular-products h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.popular-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.popular-item:last-child {
    border-bottom: none;
}

.popular-item img {
    border-radius: 8px;
}

.popular-info {
    flex: 1;
}

.popular-info strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.popular-info .price {
    color: #e74c3c;
    font-weight: bold;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .promo-banner {
        padding: 1.5rem;
    }
    
    .promo-banner h2 {
        font-size: 1.5rem;
    }
    
    .timer-display {
        gap: 0.5rem;
    }
    
    .timer-unit {
        min-width: 60px;
        padding: 0.8rem;
    }
    
    .timer-unit span {
        font-size: 1.5rem;
    }
    
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.8rem 0.5rem;
    }
    
    .popular-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}
