/* ========================================
   LIGHT CHECKOUT PAGE IMPROVEMENTS
   Subtle enhancements without changing overall design
   ======================================== */

/* Coupon Form Styling */
.coupon-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px dashed #690BBA !important;
    border-radius: 10px !important;
    box-shadow: 0 3px 10px rgba(105, 11, 186, 0.1) !important;
    margin-bottom: 20px;
}

.coupon-card .card-body {
    padding: 20px !important;
}

.coupon-card h6 {
    color: #690BBA;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
}

.coupon-card #coupon_code {
    border: 2px solid #e0e0e0;
    border-radius: 6px 0 0 6px;
    padding: 12px 15px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.coupon-card #coupon_code:focus {
    border-color: #690BBA;
    outline: none;
    box-shadow: none;
}

.coupon-card #apply_coupon {
    background: linear-gradient(135deg, #690BBA 0%, #550A95 100%);
    border: none;
    border-radius: 0 6px 6px 0;
    padding: 12px 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.coupon-card #apply_coupon:hover {
    background: linear-gradient(135deg, #550A95 0%, #690BBA 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(105, 11, 186, 0.3);
}

.coupon-card #remove_coupon {
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 15px;
    transition: all 0.3s ease;
}

.coupon-card #remove_coupon:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(220, 53, 69, 0.3);
}

.coupon-card #applied-coupon {
    margin-bottom: 0;
    border-radius: 8px;
    font-size: 14px;
}

.coupon-card #coupon-message {
    margin-bottom: 10px;
}

.coupon-card #coupon-message .alert {
    border-radius: 6px;
    padding: 10px 15px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
}

/* Form Improvements */
.checkout-shipping .form-control {
    border-radius: 6px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    transition: border-color 0.2s ease;
}

.checkout-shipping .form-control:focus {
    border-color: #690BBA;
    outline: none;
    box-shadow: 0 0 0 2px rgba(105, 11, 186, 0.1);
}

.checkout-shipping .form-group label {
    font-weight: 500;
    margin-bottom: 6px;
    color: #333;
}

/* Card Improvements */
.checkout-shipping .card,
.cart_details .card {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.checkout-shipping .card-header,
.cart_details .card-header {
    border-radius: 8px 8px 0 0;
    padding: 18px 20px;
}

.checkout-shipping .card-body {
    padding: 25px;
}

/* Payment Method Improvements */
.payment-methods .form-check {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 10px;
    transition: all 0.2s ease;
}

.payment-methods .form-check:hover {
    border-color: #690BBA;
    background-color: #f9f9f9;
}

.payment-methods .form-check-input:checked ~ .form-check-label {
    font-weight: 600;
    color: #690BBA;
}

/* Order Button Improvements */
.order_place {
    border-radius: 6px;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.order_place:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(105, 11, 186, 0.2);
}

/* Table Improvements */
.cart_table {
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.cart_table thead th {
    padding: 15px 10px;
    font-weight: 600;
    font-size: 13px;
}

.cart_table tbody td {
    padding: 18px 10px;
    vertical-align: middle;
}

.cart_table tbody td img {
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

/* Quantity Controls */
.vcart-qty .quantity {
    border-radius: 6px;
}

.vcart-qty .quantity button {
    border-radius: 4px;
    transition: all 0.2s ease;
}

.vcart-qty .quantity button:hover {
    opacity: 0.8;
}

/* Remove Button */
.cart_remove {
    transition: all 0.2s ease;
}

.cart_remove:hover {
    transform: scale(1.1);
}

/* Table Footer */
.cart_table tfoot th,
.cart_table tfoot td {
    padding: 14px 10px;
}

.cart_table tfoot tr:last-child {
    font-weight: 700;
}

/* Section Spacing */
.chheckout-section {
    padding: 30px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .checkout-shipping .card-body {
        padding: 20px;
    }

    .cart_table thead th,
    .cart_table tbody td {
        padding: 12px 8px;
        font-size: 13px;
    }
}
