/**
 * Checkout Page Styles
 */

/* Place Order Button - Match site button styles */
.wc-block-components-checkout-place-order-button {
    display: inline-block;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    text-decoration: none;
    font-weight: 600 !important;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 1rem !important;
    line-height: 1 !important;
    border: 2px solid transparent !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    
    /* Primary button colors */
    background: #3246FF !important;
    color: white !important;
    border-color: #3246FF !important;
}

.wc-block-components-checkout-place-order-button:hover {
    background: #2739e6 !important;
    border-color: #2739e6 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(50, 70, 255, 0.3);
}

.wc-block-components-checkout-place-order-button:active {
    transform: translateY(0);
}

/* Pickup Point Dropdown - Make it highly visible */
.mp-wc-pickup-point-shipping-block {
    margin-top: 16px !important;
    margin-bottom: 0 !important;
    padding: 20px !important;
    background: #f8f9ff !important;
    border: 2px solid #3246FF !important;
    border-radius: 8px !important;
    animation: slideInAndPulse 0.5s ease-out !important;
    box-shadow: 0 4px 12px rgba(50, 70, 255, 0.15) !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Highlight animation for pickup point dropdown */
@keyframes slideInAndPulse {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    70% {
        border-color: #3246FF;
        box-shadow: 0 4px 20px rgba(50, 70, 255, 0.3);
    }
    100% {
        border-color: #3246FF;
        box-shadow: 0 4px 12px rgba(50, 70, 255, 0.15);
    }
}

/* Style the select dropdown inside */
.mp-wc-pickup-point-shipping-block select {
    width: 100% !important;
    padding: 12px !important;
    border: 2px solid #3246FF !important;
    border-radius: 6px !important;
    font-size: 15px !important;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    background: white !important;
    cursor: pointer !important;
}

/* Label styling */
.mp-wc-pickup-point-shipping-block label {
    font-weight: 600 !important;
    color: #3246FF !important;
    margin-bottom: 8px !important;
    display: block !important;
    font-size: 14px !important;
}
