﻿/* Hero секция */
.delivery-hero {
    position: relative;
    min-height: 250px;
}

    .delivery-hero .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
    }

/* Блоки Доставка и Оплата */
.delivery-info h2,
.payment-info h2 {
    font-weight: 700;
}

.delivery-info p,
.payment-info p {
    color: #555;
    line-height: 1.6;
}

.delivery-info ul,
.payment-info ul {
    list-style: none;
    padding-left: 0;
}

    .delivery-info ul li,
    .payment-info ul li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 12px;
        color: #444;
    }

        .delivery-info ul li::before,
        .payment-info ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #1F839F;
            font-weight: bold;
        }

/* CTA-блок */
.delivery-cta {
    background: linear-gradient(90deg, #232526, #ff7f32);
}

    .delivery-cta h2 {
        font-weight: 700;
    }

    .delivery-cta p {
        margin-bottom: 1.5rem;
    }

/* Картинки */
.delivery-info img,
.payment-info img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Кнопки */
.delivery-info a.btn,
.payment-info a.btn {
    border-radius: 6px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

    .delivery-info a.btn:hover,
    .payment-info a.btn:hover {
        background-color: #e96f22;
    }

/* Адаптив: центрируем текст на мобилках */
@media (max-width: 767.98px) {
    .delivery-info h2,
    .payment-info h2,
    .delivery-info p,
    .payment-info p,
    .delivery-info ul,
    .payment-info ul,
    .delivery-cta h2,
    .delivery-cta p {
        text-align: center;
    }
}

/* Animate.css плавность */
.animate__animated {
    will-change: transform, opacity;
}
