/**
 * Checkout Helper Styles
 */

.gs-checkout-helper {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    text-align: center;
}

/* Block checkout specific styling */
.gs-block-checkout-helper {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.wp-block-woocommerce-checkout .gs-checkout-helper,
.wp-block-woocommerce-checkout .gs-block-checkout-helper {
    margin: 20px 0;
    clear: both;
}

.gs-fill-button {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #0066cc;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
}

.gs-fill-button:hover {
    background: #0052a3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.3);
}

.gs-fill-button:active {
    transform: translateY(0);
}

.gs-fill-button.gs-filled {
    background: #28a745;
}

.gs-fill-button.gs-filled:hover {
    background: #218838;
}

/* Responsive */
@media (max-width: 768px) {
    .gs-checkout-helper {
        margin-bottom: 15px;
        padding: 12px;
    }
    
    .gs-fill-button {
        width: 100%;
        padding: 14px 24px;
    }
}

