/**
 * Miele Cart Pricing Styles
 */

/* Бейдж знижки */
.miele-discount-badge {
    display: inline-block;
    background-color: #c41e3a;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 5px;
    vertical-align: middle;
}

/* Перекреслена стара ціна */
.woocommerce-cart-form .product-price del,
.woocommerce-cart-form .product-subtotal del,
.woocommerce-checkout-review-order-table .product-name del {
    color: #999;
    font-size: 0.9em;
    margin-right: 5px;
}

/* Нова ціна */
.woocommerce-cart-form .product-price ins,
.woocommerce-cart-form .product-subtotal ins,
.woocommerce-checkout-review-order-table .product-name ins {
    text-decoration: none;
    color: #c41e3a;
    font-weight: 600;
}

/* Індикатор завантаження цін */
.miele-prices-loading {
    position: relative;
}

.miele-prices-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 10;
}

.miele-prices-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid #ddd;
    border-top-color: #c41e3a;
    border-radius: 50%;
    animation: miele-spin 0.8s linear infinite;
    z-index: 11;
}

@keyframes miele-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Колонка знижки в таблиці кошика */
.woocommerce-cart-form__contents th.product-discount,
.woocommerce-cart-form__contents td.product-discount {
    text-align: center;
    width: 80px;
}

.product-discount .discount-value {
    color: #c41e3a;
    font-weight: 600;
}

/* Адаптивність */
@media (max-width: 768px) {
    .miele-discount-badge {
        display: block;
        margin: 5px 0 0 0;
        width: fit-content;
    }
    
    .woocommerce-cart-form .product-price del,
    .woocommerce-cart-form .product-subtotal del {
        display: block;
    }
    
    .woocommerce-cart-form .product-price ins,
    .woocommerce-cart-form .product-subtotal ins {
        display: block;
    }
}

/* Checkout блок стилі */
.wc-block-cart .miele-discount-badge {
    font-size: 10px;
    padding: 1px 4px;
}

.wc-block-checkout .miele-discount-badge {
    font-size: 10px;
    padding: 1px 4px;
}

/* Відображення купону в таблиці кошика */
.miele-voucher-discount th {
    color: #c41e3a;
    font-weight: 600;
}

.miele-voucher-discount td {
    color: #c41e3a;
}

.miele-voucher-discount .miele-discount-badge {
    margin-left: 8px;
}

/* Кнопка видалення купону (×) */
.miele-remove-voucher {
    display: inline-block;
    color: #999 !important;
    text-decoration: none !important;
    margin-left: 5px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.miele-remove-voucher:hover {
    color: #c41e3a !important;
    text-decoration: none !important;
}

/* Текстове посилання для видалення купону */
.miele-remove-voucher-link {
    display: inline-block;
    margin-top: 5px;
    font-size: 0.85em;
    color: #999 !important;
    text-decoration: underline !important;
    cursor: pointer;
    transition: color 0.2s ease;
}

.miele-remove-voucher-link:hover {
    color: #c41e3a !important;
    text-decoration: underline !important;
}

/* Повідомлення про купони */
.miele-voucher-message {
    margin: 10px 0;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14px;
}

.miele-voucher-message.woocommerce-message {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.miele-voucher-message.woocommerce-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.miele-voucher-message.woocommerce-info {
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}

/* Повідомлення в контейнері .coupon-form_message */
.coupon-form_message .miele-voucher-message {
    margin: 5px 0 0 0;
}

/* Приховуємо стандартне повідомлення про помилку WooCommerce */
.coupon .coupon-error-notice {
    display: none !important;
}

/* Власна форма купонів */
.miele-custom-voucher-form {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.miele-custom-voucher-form h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.miele-voucher-form .form-row {
    margin-bottom: 10px;
}

.miele-voucher-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.miele-voucher-form input[type="text"] {
    width: 100%;
    max-width: 300px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
}

.miele-voucher-form button {
    padding: 10px 20px;
    background-color: #c41e3a;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.miele-voucher-form button:hover {
    background-color: #a01828;
}

.miele-voucher-messages {
    margin-top: 10px;
}

/* Застосований купон */
.miele-voucher-applied {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 15px;
    border-radius: 4px;
}

.miele-voucher-applied p {
    margin: 0 0 10px 0;
}

.miele-voucher-applied p:last-child {
    margin-bottom: 0;
}

.miele-voucher-applied small {
    color: #666;
    display: block;
    margin-top: 5px;
}
