.delivery-provider--pigeon {
    margin-top: 16px;
    padding: 18px;
    border: 1px solid #d9e3ea;
    border-radius: 16px;
    background: linear-gradient(180deg, #fbfdff 0%, #f3f8fc 100%);
}

.delivery-provider__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.delivery-provider__badge {
    padding: 6px 10px;
    border-radius: 999px;
    background: #e8f3eb;
    color: #2f6b45;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.delivery-provider__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.delivery-provider__field {
    margin-bottom: 0;
}

.delivery-provider__field > span {
    display: block;
    margin-bottom: 6px;
    color: #496173;
    font-size: 13px;
    font-weight: 600;
}

.delivery-provider__field--wide {
    grid-column: 1 / -1;
}

.delivery-provider__checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 0;
    padding: 0;
    color: #243746;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.delivery-provider__checkbox input {
    width: 18px;
    height: 18px;
    margin: 0;
}

.delivery-provider__field input,
.delivery-provider__field select,
.delivery-provider__field .select2-container {
    width: 100% !important;
}

.delivery-provider__field .select2-container--default .select2-selection--single {
    height: 48px;
    border: 1px solid #cfdce5;
    border-radius: 12px;
    background: #fff;
}

.delivery-provider__field .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 46px;
    padding-left: 14px;
    padding-right: 34px;
    color: #243746;
}

.delivery-provider__field .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
    right: 10px;
}

.delivery-provider__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.delivery-provider__package,
.delivery-provider__price,
.delivery-provider__fee {
    padding: 10px 12px;
    border-radius: 12px;
    background: #ffffff;
    color: #385063;
    font-size: 13px;
}

.delivery-provider__price {
    font-weight: 700;
    color: #1e4257;
}

.delivery-provider__fee {
    color: #7a5b16;
    background: #fff8e7;
}

.delivery-provider__msg {
    min-height: 20px;
    margin-top: 12px;
    color: #537085;
    font-size: 13px;
}

.delivery-provider__msg--error {
    color: #b94a48;
}

.delivery-provider__actions {
    margin-top: 10px;
}

.delivery-provider__option-row {
    margin-top: 10px;
}

.delivery-provider__option-row .delivery-provider__checkbox {
    width: 100%;
    justify-content: flex-start;
}

.delivery-provider__apply-button {
    min-width: 180px;
    padding: 13px 22px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #1f6c8f 0%, #2f8f96 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(31, 108, 143, 0.18);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.delivery-provider__apply-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(31, 108, 143, 0.24);
}

.delivery-provider__apply-button:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(31, 108, 143, 0.2);
}

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

    .delivery-provider__header {
        align-items: flex-start;
        flex-direction: column;
    }
}
