/* ===== Доставка и оплата ===== */
.ipromo-delivery-section {
    --bg: #f5f4f0;
    --sf: #fff;
    --sf2: #f9f8f6;
    --ac: #ff5a00;
    --acd: #d44600;
    --acl: #fff3ee;
    --tx: #1a1a1a;
    --mu: #7a7a7a;
    --li: #b8b6b2;
    --bo: #e2e0dd;
    --bod: #cbc9c5;
    --dk: #1a1a1a;

    padding: 80px 48px;
}

@media (max-width: 960px) {
    .ipromo-delivery-section {
        padding: 52px 18px;
    }
}

.ipromo-stag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ac);
    font-weight: 600;
    margin-bottom: 12px;
}

.ipromo-stag::before {
    content: '';
    width: 16px;
    height: 2px;
    background: var(--ac);
    border-radius: 2px;
}

.ipromo-section-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(22px, 2.8vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
}

.ipromo-delivery-desc {
    font-size: 14px;
    color: var(--mu);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 32px;
}

body {
    background: #f5f4f0!important;
}

section {
    margin: 0!important;
}

.ipromo-delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

@media (max-width: 960px) {
    .ipromo-delivery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .ipromo-delivery-grid {
        grid-template-columns: 1fr;
    }
}

.card {
    background: var(--sf2)!important;
    border-radius: 14px!important;
    padding: 26px 22px;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: default;
}

.card:hover {
    border-color: var(--ac);
    transform: translateY(-4px);
    box-shadow: 0 10px 34px rgba(255, 90, 0, 0.09);
}

.ci {
    width: 46px;
    height: 46px;
    background: var(--acl);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
    transition: background 0.3s;
}

.card:hover .ci {
    background: var(--ac);
}

.card h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 7px;
}

.card p {
    font-size: 12px;
    color: var(--mu);
    line-height: 1.65;
}