/* Minimalist Elite Styles - Clean & Integrated */
:root {
    --wlo-accent: #10b981;
    --wlo-border: #e5e7eb;
    --wlo-bg-soft: #f9fafb;
    --wlo-text: #1f2937;
    --wlo-site-gold: #b8915e; /* Matching your theme color */
}

/* Slim Field Wrapper */
.wlo-field-wrapper {
    margin: 15px 0;
    padding: 0;
    border: none;
    box-shadow: none;
}

.wlo-phone-input-group {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.wlo-phone-input-group input {
    border-radius: 8px !important;
    border: 1px solid var(--wlo-border) !important;
    padding: 10px 15px !important;
    font-size: 15px !important;
    background: #fff !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.wlo-phone-input-group input:focus {
    border-color: var(--wlo-accent) !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
    outline: none !important;
}

/* Minimalist Button */
#wlo_send_otp_btn, .wlo-btn-premium, #wlo_checkout_send_otp {
    background: linear-gradient(135deg, #128C7E, #25D366) !important; /* WhatsApp Green Gradient */
    color: #fff !important;
    border-radius: 8px !important;
    padding: 0 20px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    text-transform: uppercase;
    height: 42px;
    border: none !important;
    box-shadow: 0 4px 6px -1px rgba(37, 211, 102, 0.2), 0 2px 4px -1px rgba(37, 211, 102, 0.1) !important;
    transition: all 0.3s ease;
}

#wlo_send_otp_btn:hover, .wlo-btn-premium:hover, #wlo_checkout_send_otp:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 8px -1px rgba(37, 211, 102, 0.3), 0 4px 6px -1px rgba(37, 211, 102, 0.2) !important;
    opacity: 0.95;
}

/* Clean OTP Section - Upgraded */
.wlo-otp-wrap, .wlo-checkout-otp-field {
    background: #ffffff;
    border: 2px solid #f1f5f9;
    padding: 30px;
    border-radius: 20px;
    margin-top: 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    text-align: center;
    animation: wloSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes wloSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.wlo-otp-title {
    font-weight: 800;
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 5px;
    display: block;
}

.wlo-otp-desc {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 20px;
    display: block;
}

.wlo-otp-input, #wlo_checkout_otp {
    letter-spacing: 12px !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    border-radius: 12px !important;
    border: 2px solid #e2e8f0 !important;
    padding: 15px !important;
    text-align: center !important;
    margin: 15px 0 !important;
    width: 100% !important;
    max-width: 240px !important;
    background: #f8fafc !important;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.wlo-otp-input:focus, #wlo_checkout_otp:focus {
    border-color: var(--wlo-accent) !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1) !important;
}

.wlo-resend-link {
    display: block;
    margin-top: 15px;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
}

#wlo_timer_val {
    color: var(--wlo-accent);
}

/* Elegant Verified Badge */
.wlo-badge.ok {
    background: #dcfce7;
    color: #15803d;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    margin: 10px 0;
}

/* Checkout Minimal Box */
.wlo-premium-checkout-box {
    border-top: 1px solid var(--wlo-border);
    padding-top: 20px;
    margin-top: 20px;
}

.wlo-box-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.wlo-box-header .dashicons {
    color: var(--wlo-accent);
    font-size: 20px;
}

.wlo-box-header h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

/* Spinner */
.wlo-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: wloSpin 0.8s linear infinite;
    display: none;
}
@keyframes wloSpin { to { transform: rotate(360deg); } }
.loading .btn-text { display: none; }
.loading .wlo-spinner { display: block; }

/* Checkout Integration */
.wlo-minimal-checkout-section {
    background: #fff;
    border: 1px solid var(--wlo-border);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}
