/* ========== DELIVERY & WARRANTY ========== */
.delivery {
    background: var(--bg);
    padding: 0 0 3cqw;
}

.delivery__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.delivery__text {
    padding: 4cqw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.delivery__title {
    font-size: 2.8cqw;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 2.5cqw;
    line-height: 1.3;
}

.delivery__items {
    display: flex;
    flex-direction: column;
    gap: 2cqw;
}

.delivery__item-title {
    font-size: 1.6cqw;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: .5cqw;
}

.delivery__item-desc {
    font-size: 1.2cqw;
    color: var(--gray);
    line-height: 1.6;
}

.delivery__image {
    overflow: hidden;
}

.delivery__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center;
    min-height: 32cqw;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .delivery {
        padding: 0 0 10cqw;
    }

    .delivery__card {
        grid-template-columns: 1fr;
    }

    .delivery__text {
        padding: 7cqw;
    }

    .delivery__title {
        font-size: 5cqw;
        margin-bottom: 4cqw;
    }

    .delivery__items {
        gap: 4cqw;
    }

    .delivery__item-title {
        font-size: 3.5cqw;
        margin-bottom: 1cqw;
    }

    .delivery__item-desc {
        font-size: 3cqw;
    }

    .delivery__image {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 490px) {
    .delivery__title {
        font-size: 6cqw;
    }

    .delivery__item-title {
        font-size: 4.5cqw;
    }

    .delivery__item-desc {
        font-size: 3.8cqw;
    }
}
