/* Instant Checkout Frontend Styles */

.ic-buy-now-btn {
    width: 100%;
    margin-top: 10px;
    background-color: #e88d14 !important;
    color: #fff !important;
    text-align: center;
    position: relative;
    padding: 15px 20px !important;
    font-size: 1.1em !important;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.ic-buy-now-btn:hover {
    background-color: #c0720a !important;
}

.ic-buy-now-btn:disabled {
    background-color: #ccc !important;
    cursor: not-allowed;
}

/* Modal Background */
.ic-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

/* Modal Content */
.ic-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Close Button */
.ic-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.ic-close:hover,
.ic-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* Form Styling */
.ic-checkout-form-container h3 {
    margin-top: 0;
    margin-bottom: 5px;
}

.ic-form-subtext {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9em;
}

.ic-form-fields .ic-form-group {
    margin-bottom: 15px;
}

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

.ic-form-fields input,
.ic-form-fields textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.ic-form-fields textarea {
    min-height: 80px;
}

.ic-form-actions {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.ic-form-actions button {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
}

.ic-form-messages {
    margin-top: 15px;
}

.ic-form-messages.ic-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    padding: 10px;
    border-radius: 4px;
}

.ic-form-messages.ic-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    padding: 10px;
    border-radius: 4px;
}

.ic-form-post-text {
    margin-top: 15px;
    font-size: 0.85em;
    color: #888;
    text-align: center;
}

.ic-inline-wrapper {
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    margin-top: 20px;
    clear: both;
    width: 100%;
    display: block;
}

.ic-spinner {
    height: 20px;
    width: 20px;
    border: 3px solid rgba(0,0,0,0.2);
    border-top-color: #333;
    border-radius: 50%;
    animation: ic-spin 1s infinite linear;
    display: inline-block;
    margin-left: 10px;
}

@keyframes ic-spin {
    100% { transform: rotate(360deg); }
}
