/* =====================================================
   WP Manager: Account Funnel Widget CSS (Aura Standard)
   ===================================================== */

.wpm-funnel-wrap {
    font-family: 'Inter', sans-serif;
    max-width: 520px;
    margin: 0 auto;
}

/* Progress Dots */
.wpm-step-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.wpm-step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.1);
    color: #666;
    transition: 0.3s cubic-bezier(0.4,0,0.2,1);
    cursor: default;
}

.wpm-step-dot.active {
    background: #ff2d55;
    border-color: #ff2d55;
    color: #fff;
    box-shadow: 0 4px 14px rgba(255,45,85,0.4);
    transform: scale(1.12);
}

.wpm-step-dot.done {
    background: #00f278;
    border-color: #00f278;
    color: #000;
}

/* Card */
.wpm-funnel-card {
    background: rgba(20,20,22,0.95);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.wpm-funnel-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    text-align: center;
}

.wpm-funnel-subtitle {
    color: #888;
    text-align: center;
    font-size: 14px;
    margin: 0 0 32px;
    line-height: 1.6;
}

/* Step Header */
.wpm-step-label {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px;
}
.wpm-step-label span { color: #555; font-weight: 400; }
.wpm-step-info { color: #888; font-size: 13px; margin: -10px 0 20px; line-height: 1.6; }

/* Form Fields */
.wpm-field { margin-bottom: 14px; }
.wpm-field input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 13px 16px;
    color: #e1e1e6;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
    transition: 0.2s;
}
.wpm-field input:focus {
    outline: none;
    border-color: #ff2d55;
    box-shadow: 0 0 0 3px rgba(255,45,85,0.12);
}

.wpm-country-row { display: flex; gap: 10px; }
.wpm-country-row .wpm-country-select {
    width: 130px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 13px 10px;
    color: #e1e1e6;
    font-size: 13px;
}
.wpm-country-row .wpm-phone-input { flex: 1; }

/* OTP Row */
.wpm-otp-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}
.wpm-otp-row input {
    width: 50px;
    height: 58px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff;
    outline: none;
    transition: 0.2s;
}
.wpm-otp-row input:focus  { border-color: #ff2d55; box-shadow: 0 0 0 3px rgba(255,45,85,0.12); }
.wpm-otp-row input.filled { border-color: #00f2ff; color: #00f2ff; }

/* Primary Button */
.wpm-funnel-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff2d55, #ff6b35);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.4,0,0.2,1);
    margin-top: 6px;
    letter-spacing: 0.3px;
}
.wpm-funnel-btn:hover    { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,45,85,0.35); }
.wpm-funnel-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }

/* Resend Row */
.wpm-resend-row { text-align: center; color: #555; font-size: 13px; margin-top: 14px; }
.wpm-resend-link { color: #ff2d55; cursor: pointer; display: none; }

/* Payment */
.wpm-payment-amount { text-align: center; font-size: 38px; font-weight: 800; color: #fff; margin: 10px 0 24px; }
.wpm-payment-amount span { font-size: 14px; color: #666; font-weight: 400; display: block; margin-top: -2px; }
.wpm-payment-note { text-align: center; color: #555; font-size: 12px; margin-top: 12px; }

/* TOS */
.wpm-tos-label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    margin-bottom: 20px;
    cursor: pointer;
}
.wpm-tos-label input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; transform: scale(1.3); accent-color: #ff2d55; }
.wpm-tos-label span { color: #aaa; font-size: 13px; line-height: 1.6; }

/* Success State */
.wpm-funnel-success { text-align: center; padding: 20px 0; }
.wpm-success-icon   { font-size: 60px; display: block; margin-bottom: 16px; animation: wpm-bounce 0.5s ease; }
.wpm-funnel-success h3 { color: #fff; font-size: 24px; margin: 0 0 8px; }
.wpm-funnel-success p  { color: #666; font-size: 14px; }

@keyframes wpm-bounce {
    0%,100% { transform: scale(1); }
    50%      { transform: scale(1.2); }
}

/* Step slide animation */
.wpm-funnel-step { animation: wpm-step-in 0.35s cubic-bezier(0.4,0,0.2,1); }
@keyframes wpm-step-in { from { opacity:0; transform: translateX(20px); } to { opacity:1; transform: translateX(0); } }
