
.delivery__section {
    padding: 80px 0;
}

.delivery__hero {
    background: linear-gradient(135deg, #f9f3f5 0%, #fce8ef 100%);
    padding: 60px 0 40px;
    margin-bottom: 60px;
    border-bottom: 2px solid #f0d0d8;
}

.delivery__hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 10px;
}

.delivery__hero p {
    color: #777;
    font-size: 1.6rem;
}

.delivery__card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 40px 48px;
    margin-bottom: 30px;
}

.delivery__card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #c1185b;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #fce8ef;
    display: flex;
    align-items: center;
    gap: 12px;
}

.delivery__card h2 .icon {
    font-size: 2rem;
}

.delivery__card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d2d2d;
    margin: 20px 0 10px;
}

.delivery__card p, .delivery__card li {
    color: #555;
    line-height: 1.9;
    font-size: 1.6rem;
}

.delivery__card ul, .delivery__card ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

.delivery__card ul li, .delivery__card ol li {
    margin-bottom: 10px;
}

.delivery__card strong {
    color: #333;
}

/* Table */
.delivery__card table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
}

.delivery__card table th {
    background: #fce8ef;
    color: #c1185b;
    padding: 12px 16px;
    text-align: left;
    font-size: 1.6rem;
}

.delivery__card table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 1.6rem;
}

.delivery__card table tr:hover td {
    background: #fdf5f7;
}

/* Highlight */
.delivery__highlight {
    background: #fef9fb;
    border-left: 4px solid #c1185b;
    border-radius: 6px;
    padding: 16px 22px;
    margin: 16px 0;
    color: #555;
    font-size: 1.6rem;
    line-height: 1.8;
}

.delivery__highlight--warn {
    background: #fffbf0;
    border-left-color: #f59e0b;
}

.delivery__highlight--green {
    background: #f0fff4;
    border-left-color: #22c55e;
}

/* Options grid */
.delivery__options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.delivery__option {
    background: #fdf5f7;
    border: 1.5px solid #f0d0d8;
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    transition: border-color .2s, box-shadow .2s;
}

.delivery__option:hover {
    border-color: #c1185b;
    box-shadow: 0 4px 16px rgba(193, 24, 91, .1);
}

.delivery__option .opt-icon {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.delivery__option h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #c1185b;
    margin: 0 0 8px;
}

.delivery__option .opt-price {
    font-size: 2rem;
    font-weight: 800;
    color: #2d2d2d;
    margin-bottom: 6px;
}

.delivery__option p {
    font-size: 1.4rem;
    color: #777;
    margin: 0;
}

/* Schedule grid */
.schedule__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.schedule__item {
    background: #fdf5f7;
    border-radius: 8px;
    padding: 14px 16px;
    text-align: center;
    border: 1px solid #f0d0d8;
}

.schedule__item .day {
    font-size: 1.4rem;
    font-weight: 700;
    color: #c1185b;
    margin-bottom: 4px;
}

.schedule__item .time {
    font-size: 1.6rem;
    color: #333;
    font-weight: 600;
}

/* CTA box */
.delivery__cta {
    background: linear-gradient(135deg, #c1185b, #e91e63);
    border-radius: 12px;
    padding: 40px 36px;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}

.delivery__cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.delivery__cta p {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 6px;
}

.delivery__cta a {
    color: #ffe082;
    font-weight: 600;
    text-decoration: none;
}

.delivery__cta a:hover {
    color: #fff;
    text-decoration: underline;
}

.delivery__cta .cta__btn {
    display: inline-block;
    margin-top: 20px;
    background: #fff;
    color: #c1185b;
    border-radius: 8px;
    padding: 13px 32px;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s;
}

.delivery__cta .cta__btn:hover {
    background: #ffe082;
    color: #c1185b;
}

/* Badge */
.delivery__badge {
    display: inline-block;
    background: #fce8ef;
    color: #c1185b;
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 1.3rem;
    font-weight: 600;
    margin-left: 8px;
    vertical-align: middle;
}

.delivery__badge--green {
    background: #dcfce7;
    color: #16a34a;
}

@media (max-width: 768px) {
    .delivery__card {
        padding: 24px 20px;
    }

    .delivery__hero h1 {
        font-size: 2.4rem !important;
    }

    .delivery__hero p {
        font-size: 1.2rem !important;
    }

    .delivery__card h2 {
        font-size: 1.6rem !important;
    }

    .delivery__card h3 {
        font-size: 1.4rem !important;
    }

    .delivery__card p, .delivery__card li {
        font-size: 1.2rem !important;
    }

    .delivery__card table th,
    .delivery__card table td {
        font-size: 1.2rem !important;
        padding: 8px 10px;
    }

    .delivery__highlight {
        font-size: 1.2rem !important;
    }

    .delivery__option h4 {
        font-size: 1.4rem !important;
    }

    .delivery__option .opt-price {
        font-size: 1.6rem !important;
    }

    .delivery__option p {
        font-size: 1.2rem !important;
    }

    .schedule__item .day {
        font-size: 1.2rem !important;
    }

    .schedule__item .time {
        font-size: 1.3rem !important;
    }

    .delivery__cta h3 {
        font-size: 1.6rem !important;
    }

    .delivery__cta p {
        font-size: 1.2rem !important;
    }

    .delivery__cta .cta__btn {
        font-size: 1.3rem !important;
    }
}
