/**
 * Стили для модуля расчета доставки
 */


.order__delivery-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f5f5f5;
    color: #51122A;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order_delivery-btn:hover {
    background-color: #ececec;
}

.order__delivery-btn:active {
    transform: scale(0.98);
}

.order__delivery-result {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
}

.order__delivery-result--success {
    background-color: #f0f8f4;
    border: 1px solid #c3e9dd;
}

.order__delivery-result--success .delivery-success {
    color: #155724;
    margin: 0;
}

.order__delivery-result--error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

.order__delivery-result--error .delivery-error {
    color: #721c24;
    margin: 0;
}

.order__delivery-result--loading {
    background-color: #e7f3ff;
    border: 1px solid #b3d9ff;
}

.delivery-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0066cc;
    margin: 0;
}

.delivery-loading::before {
    content: '';
    width: 14px;
    height: 14px;
    border: 2px solid #f0f0f0;
    border-top-color: #51122A;
    border-radius: 50%;
    animation: delivery-spin 0.8s linear infinite;
    flex-shrink: 0;
}

@keyframes delivery-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .order__delivery-btn {
        width: 100%;
    }

    .order__delivery-result {
        margin-top: 16px;
    }
}

/* Стили для доставки в корзине */
.cart-item--delivery {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background-color: #f9f9f9;
    margin-top: 12px;
}

.cart-item--delivery .cart-item__info {
    flex: 1;
}

.cart-item--delivery .cart-item__name {
    font-weight: 600;
    color: #51122A;
    margin: 0;
    font-size: 14px;
}

.cart-item--delivery .cart-item__price {
    font-weight: 600;
    color: #51122A;
    font-size: 14px;
    white-space: nowrap;
    margin-left: 12px;
}

.cart-item__remove-delivery {
    padding: 4px 8px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
    color: #999;
    transition: all 0.2s ease;
    line-height: 1;
    min-width: 28px;
    text-align: center;
}

.cart-item__remove-delivery:hover {
    background-color: #e8e8e8;
    color: #51122A;
}

@media (max-width: 768px) {
    .cart-item--delivery {
        flex-wrap: wrap;
    }

    .cart-item--delivery .cart-item__price {
        order: -1;
        flex: 0 0 auto;
        margin-left: 0;
    }
}
