/* BEE1 Back In Stock — Premium Frontend Styles */
.bee1-bis-form-wrap {
    margin: 30px 0;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1e293b;
    max-width: 500px;
}

.bee1-bis-form-header {
    margin-bottom: 25px;
    text-align: left;
}

.bee1-bis-form-title {
    margin: 0 0 8px 0 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    letter-spacing: -0.025em;
}

.bee1-bis-fomo {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    color: #64748b;
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 100px;
}

.bee1-bis-fomo .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    margin-right: 6px;
    color: #0a1f44;
}

.bee1-bis-fields-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 20px;
}

.bee1-bis-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #475569;
}

.bee1-bis-input {
    width: 100% !important;
    padding: 12px 16px !important;
    font-size: 15px !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 8px !important;
    background-color: #fff !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
}

.bee1-bis-input:focus {
    outline: none !important;
    border-color: #0a1f44 !important;
    box-shadow: 0 0 0 3px rgba(10, 31, 68, 0.1) !important;
}

.bee1-bis-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background-color: #0a1f44;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bee1-bis-submit-btn:hover {
    background-color: #06122a;
}

.bee1-bis-submit-btn:disabled {
    background-color: #94a3b8;
    cursor: not-allowed;
}

/* Success/Error Messaging */
.bee1-bis-msg {
    margin-top: 15px;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
}

.bee1-bis-msg--success {
    background-color: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.bee1-bis-msg--error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.bee1-bis-privacy-note {
    margin-top: 15px;
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bee1-bis-privacy-note .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    margin-right: 5px;
}

/* Spinner */
.bee1-bis-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    animation: bee1-spin 1s linear infinite;
}

@keyframes bee1-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}