/* ==========================================================
   Ventu OTP Login — Frontend  v2.1 (Modern / Premium)
   ========================================================== */

:root {
    --votp-primary:      #008080; /* Medical Teal */
    --votp-primary-rgb:  0, 128, 128;
    --votp-secondary:    #48c9b0; /* Mint */
    --votp-overlay-bg:   rgba(0, 0, 0, 0.4);
    --votp-canvas-w:     400px;
    --votp-body-bg:      #f0f7f7; /* Very light clinical teal tint */
    --votp-surface:      #ffffff;
    --votp-text:         #0f172a;
    --votp-text-secondary: #475569;
    --votp-border:       #e2e8f0;
    --votp-input-bg:     #ffffff;
    --votp-error:        #ef4444;
    --votp-radius-sm:    8px;
    --votp-radius-md:    12px;
    --votp-radius-lg:    16px;
    --votp-shadow-sm:    0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
}

.votp-overlay {
    position: fixed; inset: 0;
    background: var(--votp-overlay-bg);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99998;
    opacity: 0; visibility: hidden;
    transition: opacity var(--votp-transition), visibility var(--votp-transition);
}
.votp-overlay.is-visible { opacity: 1; visibility: visible; }

.votp-canvas {
    position: fixed; top: 0; bottom: 0;
    width: var(--votp-canvas-w); max-width: 100vw;
    background: var(--votp-body-bg);
    z-index: 99999;
    display: flex; flex-direction: column;
    overflow-y: auto; overflow-x: hidden;
    font-family: var(--votp-font);
    -webkit-font-smoothing: antialiased;
    transition: transform var(--votp-transition);
}
.votp-canvas * { box-sizing: border-box; }
.votp-canvas--right { right: 0; transform: translateX(100%); box-shadow: -12px 0 60px rgba(0,0,0,0.15); }
.votp-canvas--left  { left:  0; transform: translateX(-100%); box-shadow: 12px 0 60px rgba(0,0,0,0.15); }
.votp-canvas.is-open { transform: translateX(0); }
body.votp-body-lock { overflow: hidden; }

/* Close */
.votp-close-btn {
    position: absolute; top: 16px; right: 16px; z-index: 10;
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; padding: 0;
    transition: background 0.2s, transform 0.25s;
}
.votp-close-btn:hover { background: rgba(255,255,255,0.3); transform: scale(1.08) rotate(90deg); }
.votp-close-btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

.votp-zone { padding: 0; }
.votp-zone img { display: block; width: 100%; height: auto; }

/* Header */
.votp-header {
    position: relative;
    padding: 44px 28px 40px;
    flex-shrink: 0; overflow: hidden;
}
.votp-header::before {
    content: '';
    position: absolute; top: -40%; right: -8%;
    width: 260px; height: 260px; border-radius: 50%;
    background: rgba(255,255,255,0.07); pointer-events: none;
}
.votp-header::after {
    content: '';
    position: absolute; bottom: -30%; left: -5%;
    width: 180px; height: 180px; border-radius: 50%;
    background: rgba(255,255,255,0.05); pointer-events: none;
}
.votp-header__inner { display: flex; align-items: flex-start; position: relative; z-index: 1; }
.votp-header__illustration { position: absolute; right: 22px; top: 50%; transform: translateY(-50%); opacity: 0.9; }
.votp-header__text { flex: 1; }
.votp-header__badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px; padding: 4px 12px; margin-bottom: 12px;
    font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,0.95);
    letter-spacing: 0.3px;
}
.votp-header__badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #4ade80; animation: votp-pulse 2s infinite;
}
@keyframes votp-pulse { 0%,100% { opacity:1; } 50% { opacity:0.6; } }
.votp-header__title {
    font-size: 30px; font-weight: 800; color: #fff;
    margin: 0 0 4px; line-height: 1.15; letter-spacing: -0.6px;
}
.votp-header__sub {
    font-size: 15px; font-weight: 400;
    color: rgba(255,255,255,0.75); margin: 0;
}

/* Body */
.votp-body {
    flex: 1; padding: 24px 24px 36px;
    display: flex; flex-direction: column;
}

/* Steps */
.votp-step { display: flex; flex-direction: column; gap: 16px; }
.votp-step--hidden { display: none !important; }

/* Tabs */
.votp-method-tabs {
    display: flex;
    background: var(--votp-surface);
    border-radius: var(--votp-radius-md);
    padding: 4px; gap: 4px;
    box-shadow: var(--votp-shadow-sm);
    border: 1px solid var(--votp-border);
}
.votp-tab {
    flex: 1; padding: 10px 8px;
    font-size: 13.5px; font-weight: 600;
    color: var(--votp-text-secondary);
    background: none; border: none;
    border-radius: 8px; cursor: pointer;
    font-family: var(--votp-font);
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
    text-align: center;
}
.votp-tab--active {
    color: var(--votp-primary);
    background: rgba(var(--votp-primary-rgb), 0.08);
    box-shadow: 0 1px 4px rgba(var(--votp-primary-rgb), 0.12);
}
.votp-tab:hover:not(.votp-tab--active) { color: var(--votp-text); background: #f3f4f6; }
.votp-tab:focus-visible { outline: 2px solid var(--votp-primary); outline-offset: -2px; }

/* Panels */
.votp-panel { display: flex; flex-direction: column; gap: 10px; }
.votp-panel--hidden { display: none; }

/* Label */
.votp-field-label {
    font-size: 12.5px; font-weight: 600;
    color: var(--votp-text-secondary); margin: 0;
    text-transform: uppercase; letter-spacing: 0.5px;
}

/* Phone wrap */
.votp-phone-wrap {
    display: flex; align-items: stretch;
    border: 1.5px solid var(--votp-border);
    border-radius: var(--votp-radius-md);
    overflow: visible;
    background: var(--votp-input-bg);
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
}
.votp-phone-wrap:focus-within {
    border-color: var(--votp-primary);
    box-shadow: 0 0 0 3.5px rgba(var(--votp-primary-rgb), 0.1);
}

/* Country picker */
.votp-country-wrap {
    position: relative; flex-shrink: 0;
    border-right: 1.5px solid var(--votp-border);
    border-radius: var(--votp-radius-md) 0 0 var(--votp-radius-md);
}
.votp-country-btn {
    display: flex; align-items: center; gap: 6px;
    padding: 0 10px 0 14px;
    height: 100%; min-height: 52px;
    background: transparent; border: none;
    cursor: pointer; white-space: nowrap;
    border-radius: var(--votp-radius-md) 0 0 var(--votp-radius-md);
    transition: background 0.15s; font-family: var(--votp-font);
}
.votp-country-btn:hover { background: #f9fafb; }
.votp-country-btn:focus-visible { outline: 2px solid var(--votp-primary); outline-offset: -2px; }
.votp-country-flag { font-size: 20px; line-height: 1; display: inline-block; }
.votp-country-code { font-size: 13.5px; font-weight: 700; color: var(--votp-text); }
.votp-chevron { color: var(--votp-text-secondary); transition: transform 0.2s; flex-shrink: 0; }
.votp-country-btn[aria-expanded="true"] .votp-chevron { transform: rotate(180deg); }

/* Dropdown */
.votp-country-dropdown {
    position: absolute;
    top: calc(100% + 6px); left: -1.5px;
    width: 265px;
    background: #fff;
    border: 1.5px solid var(--votp-border);
    border-radius: var(--votp-radius-md);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
    z-index: 100001;
    display: none; flex-direction: column; overflow: hidden;
}
.votp-country-dropdown.is-open {
    display: flex; animation: votp-dropdown-in 0.18s ease;
}
@keyframes votp-dropdown-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.votp-country-search-wrap {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 12px; border-bottom: 1px solid var(--votp-border); flex-shrink: 0;
}
.votp-search-icon { flex-shrink: 0; color: #9ca3af; }
.votp-country-search {
    flex: 1; border: none; outline: none;
    font-size: 13.5px; font-family: var(--votp-font);
    color: var(--votp-text); background: transparent; padding: 0;
}
.votp-country-search::placeholder { color: #c4c9d4; }
.votp-country-list {
    list-style: none; margin: 0; padding: 4px 0;
    overflow-y: auto; max-height: 220px;
}
.votp-country-list::-webkit-scrollbar { width: 4px; }
.votp-country-list::-webkit-scrollbar-track { background: transparent; }
.votp-country-list::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 2px; }
.votp-country-option {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 14px; cursor: pointer;
    transition: background 0.12s; font-size: 13.5px;
}
.votp-country-option:hover { background: #f3f4f6; }
.votp-country-option.is-selected { background: rgba(var(--votp-primary-rgb), 0.06); }
.votp-opt-flag { font-size: 18px; flex-shrink: 0; line-height: 1; }
.votp-opt-name { flex: 1; color: var(--votp-text); font-weight: 500; }
.votp-opt-code { font-weight: 700; color: var(--votp-text-secondary); font-size: 12.5px; }
.votp-country-option.is-selected .votp-opt-name,
.votp-country-option.is-selected .votp-opt-code { color: var(--votp-primary); }

.votp-country-static {
    padding: 0 14px; font-size: 15px; font-weight: 700; color: var(--votp-text);
    display: flex; align-items: center;
    border-right: 1.5px solid var(--votp-border);
    white-space: nowrap; min-height: 52px;
}

/* Inputs */
.votp-input {
    width: 100%; padding: 14px 16px;
    font-size: 15px; font-family: var(--votp-font);
    color: var(--votp-text); background: var(--votp-input-bg);
    border: 1.5px solid var(--votp-border);
    border-radius: var(--votp-radius-md);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none; font-weight: 500;
}
.votp-input::placeholder { color: #c4c9d4; font-weight: 400; }
.votp-input:focus {
    border-color: var(--votp-primary);
    box-shadow: 0 0 0 3.5px rgba(var(--votp-primary-rgb), 0.1);
}
.votp-phone-wrap .votp-input {
    border: none;
    border-radius: 0 var(--votp-radius-md) var(--votp-radius-md) 0;
    box-shadow: none; flex: 1; min-height: 52px;
}
.votp-phone-wrap .votp-input:focus { box-shadow: none; }

/* CTA Button */
.votp-cta-btn {
    width: 100%; padding: 16px 20px;
    border: none; border-radius: var(--votp-radius-md);
    font-size: 15.5px; font-weight: 700; font-family: var(--votp-font);
    color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    position: relative; letter-spacing: 0.2px;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(var(--votp-primary-rgb), 0.35);
}
.votp-cta-btn:hover:not(:disabled) {
    opacity: 0.93; transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(var(--votp-primary-rgb), 0.4);
}
.votp-cta-btn:active:not(:disabled) { transform: translateY(0); }
.votp-cta-btn:disabled { opacity: 0.55; cursor: not-allowed; box-shadow: none; }
.votp-cta-btn__spinner {
    display: none; width: 18px; height: 18px;
    border: 2.5px solid rgba(255,255,255,0.3);
    border-top-color: #fff; border-radius: 50%;
    animation: votp-spin 0.7s linear infinite; flex-shrink: 0;
}
.votp-cta-btn.is-loading .votp-cta-btn__label { opacity: 0.7; }
.votp-cta-btn.is-loading .votp-cta-btn__spinner { display: block; }
@keyframes votp-spin { to { transform: rotate(360deg); } }

/* Error */
.votp-error-msg {
    display: none; font-size: 13px;
    color: var(--votp-error);
    background: rgba(239, 68, 68, 0.06);
    border-left: 3px solid var(--votp-error);
    padding: 10px 14px;
    border-radius: 0 var(--votp-radius-sm) var(--votp-radius-sm) 0;
    line-height: 1.5; font-weight: 500;
}
.votp-error-msg.is-visible { display: block; }

/* Policy */
.votp-policy {
    font-size: 12px; color: #9ca3af;
    line-height: 1.7; text-align: center; margin: 0;
}
.votp-policy a { color: #6b7280; text-decoration: underline; text-underline-offset: 2px; }
.votp-policy a:hover { color: var(--votp-primary); }

/* Sent notice */
.votp-sent-notice {
    display: flex; align-items: center; gap: 12px;
    font-size: 13.5px; color: var(--votp-text);
    background: rgba(var(--votp-primary-rgb), 0.05);
    border: 1px solid rgba(var(--votp-primary-rgb), 0.12);
    border-radius: var(--votp-radius-md);
    padding: 14px 16px; line-height: 1.5;
}
.votp-sent-icon { flex-shrink: 0; }
.votp-edit-link {
    background: none; border: none;
    font-size: 13px; font-weight: 600; color: var(--votp-primary);
    cursor: pointer; padding: 0; font-family: var(--votp-font);
    text-decoration: underline; text-underline-offset: 2px;
    align-self: flex-start; margin-top: -6px;
}
.votp-edit-link:hover { opacity: 0.7; }

/* OTP boxes (Sidebar) */
.votp-otp-row { 
    display: flex; 
    gap: 8px; 
    justify-content: center; 
    margin: 20px 0;
}
.votp-otp-box {
    width: 50px; height: 60px;
    font-size: 24px; font-weight: 700;
    text-align: center;
    border: 1.5px solid var(--votp-border);
    border-radius: 12px;
    background: var(--votp-surface);
    color: var(--votp-primary); 
    outline: none;
    transition: all 0.2s ease;
}
.votp-otp-box:focus {
    border-color: var(--votp-primary); background: #fff;
    box-shadow: 0 0 0 3.5px rgba(var(--votp-primary-rgb), 0.12);
    transform: scale(1.04);
}
.votp-otp-box.is-filled {
    border-color: var(--votp-primary);
    background: rgba(var(--votp-primary-rgb), 0.05);
}
.votp-otp-box.is-shake { animation: votp-shake 0.4s ease; }
@keyframes votp-shake {
    0%,100% { transform: translateX(0); }
    20%,60%  { transform: translateX(-5px); }
    40%,80%  { transform: translateX(5px); }
}

/* Resend */
.votp-resend-row {
    display: flex; align-items: center; justify-content: center;
    gap: 6px; font-size: 13px; color: var(--votp-text-secondary); margin: 0;
}
#votp-resend-text { font-weight: 500; }
.votp-resend-btn {
    background: none; border: none;
    font-size: 13px; font-weight: 700; color: var(--votp-primary);
    cursor: pointer; padding: 0; font-family: var(--votp-font);
    text-decoration: underline; text-underline-offset: 2px;
}
.votp-resend-btn:disabled { color: #c4c9d4; text-decoration: none; cursor: not-allowed; }

/* Success */
.votp-success {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 14px;
    padding: 40px 0; flex: 1; justify-content: center;
}
.votp-success__check {
    line-height: 0;
    animation: votp-pop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes votp-pop {
    from { opacity: 0; transform: scale(0.5); }
    to   { opacity: 1; transform: scale(1); }
}
.votp-success__title { font-size: 26px; font-weight: 800; color: var(--votp-text); margin: 0; letter-spacing: -0.4px; }
.votp-success__msg   { font-size: 14px; color: var(--votp-text-secondary); margin: 0; }
.votp-progress-bar {
    width: 100%; max-width: 200px; height: 3px;
    background: var(--votp-border); border-radius: 999px;
    overflow: hidden; margin-top: 8px;
}
.votp-progress-bar__fill {
    height: 100%; border-radius: 999px; width: 0; transition: width 2.2s linear;
}

/* Trigger */
.votp-trigger-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 22px;
    border: 1.5px solid var(--votp-primary);
    border-radius: var(--votp-radius-md);
    background: transparent;
    font-size: 14px; font-weight: 700; font-family: var(--votp-font);
    cursor: pointer; color: var(--votp-primary);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.votp-trigger-btn:hover {
    background: var(--votp-primary); color: #fff;
    box-shadow: 0 4px 14px rgba(var(--votp-primary-rgb), 0.3);
}
.votp-el-btn {
    display: inline-flex; align-items: center; gap: 8px;
    border: none; background: transparent; cursor: pointer;
    font-family: var(--votp-font); font-size: 14px; font-weight: 600;
    color: inherit; text-decoration: none;
    padding: 8px 18px; border-radius: var(--votp-radius-sm);
    transition: opacity 0.2s; line-height: 1;
}
.votp-el-btn:hover { opacity: 0.8; }

.votp-canvas::-webkit-scrollbar       { width: 4px; }
.votp-canvas::-webkit-scrollbar-track { background: transparent; }
.votp-canvas::-webkit-scrollbar-thumb { background: #e5e7eb; border-radius: 2px; }

@media (max-width: 480px) {
    .votp-canvas { width: 100vw !important; }
    .votp-header { padding: 38px 20px 34px; }
    .votp-body   { padding: 20px 18px 30px; }
    .votp-otp-box { width: calc(25% - 8px); height: 56px; font-size: 22px; }
    .votp-country-dropdown { width: 240px; }
}
.votp-canvas :focus-visible { outline: 2px solid var(--votp-primary); outline-offset: 2px; }

/* ==========================================================
   PREMIUM MY ACCOUNT STYLES
   ========================================================== */
/* ==========================================================
   PAGE ISOLATION (Hiding theme clutter on Login)
   ========================================================== */
.votp-is-pharmacy-login .page-title-section,
.votp-is-pharmacy-login .entry-header,
.votp-is-pharmacy-login .breadcrumb-section,
.votp-is-pharmacy-login .sidebar,
.votp-is-pharmacy-login .woocommerce-breadcrumb,
.votp-is-pharmacy-login .page-heading,
.votp-is-pharmacy-login .title-section,
.votp-is-pharmacy-login .breadcrumbs {
    display: none !important;
}

.votp-is-pharmacy-login .entry-content,
.votp-is-pharmacy-login .container,
.votp-is-pharmacy-login .content-area,
.votp-is-pharmacy-login .main-content,
.votp-is-pharmacy-login .site-main,
.votp-is-pharmacy-login .et-container,
.votp-is-pharmacy-login article {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}
.votp-premium-wrapper {
    position: relative; padding: 40px 20px;
    background: transparent; min-height: 80vh;
    display: flex; justify-content: center; align-items: center;
    font-family: var(--votp-font);
    z-index: 10;
    box-sizing: border-box;
}

/* Neutralize wpautop and theme noise aggressively */
.votp-premium-wrapper *,
.votp-premium-wrapper *::before,
.votp-premium-wrapper *::after {
    box-sizing: border-box;
}
.votp-premium-wrapper p:empty,
.votp-premium-wrapper br {
    display: none !important;
}
.votp-premium-wrapper p,
.votp-premium-wrapper h1,
.votp-premium-wrapper h2,
.votp-premium-wrapper h3,
.votp-premium-wrapper label {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.4 !important;
    text-transform: none !important;
}

/* Remove animated blobs */
.votp-bg-blob { display: none !important; }

@keyframes votpFloat {
    0%   { transform: translate(0,0) rotate(0deg) scale(1); }
    50%  { transform: translate(120px, 90px) rotate(10deg) scale(1.1); }
    100% { transform: translate(-60px, 50px) rotate(-5deg) scale(1); }
}

.votp-card-step { display: none; width: 100%; transition: all var(--votp-transition); }
.votp-card-step.is-active { display: block; animation: votpFadeIn 0.5s ease both; }

.votp-card {
    position: relative; z-index: 5;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    width: 100%; max-width: 500px;
    border-radius: 48px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 50px 120px rgba(0, 80, 80, 0.07),
        0 20px 40px rgba(0,0,0,0.03),
        inset 0 0 0 1px rgba(255,255,255,1);
    padding: 70px 60px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.votp-card:hover { transform: translateY(-12px); box-shadow: 0 60px 140px rgba(0,0,0,0.15); }

.votp-card-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(var(--votp-primary-rgb), 0.1), rgba(var(--votp-primary-rgb), 0.05));
    color: var(--votp-primary); border-radius: 100px;
    font-size: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1.2px;
    margin-bottom: 28px; border: 1px solid rgba(var(--votp-primary-rgb), 0.1);
}

.votp-card-title {
    font-size: 32px; font-weight: 900; color: #0f172a;
    margin: 0 0 12px 0; line-height: 1.1; letter-spacing: -1px;
}
.votp-card-sub { font-size: 15px; color: #6b7280; margin-bottom: 35px; line-height: 1.5; }
.votp-card-header { margin-bottom: 40px !important; }
.votp-field-group { margin-bottom: 10px !important; text-align: left; }

.votp-label {
    display: block; font-size: 13.5px; font-weight: 600;
    color: #374151; margin-bottom: 10px; text-align: left;
}

.votp-input-wrap { position: relative; }
.votp-input-field {
    width: 100%; height: 58px; padding: 0 20px;
    border-radius: 18px; border: 2px solid #f3f4f6;
    background: #f9fafb; font-size: 16px; font-weight: 500;
    transition: all 0.3s; color: #111827;
}
.votp-input-field:focus {
    border-color: var(--votp-primary); background: #fff;
    box-shadow: 0 10px 20px rgba(var(--votp-primary-rgb), 0.08);
    outline: none;
}

.votp-main-btn {
    width: 100%; height: 58px; border-radius: 18px;
    background: var(--votp-primary); color: #fff;
    border: none; font-size: 16px; font-weight: 700;
    cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 25px; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 24px rgba(var(--votp-primary-rgb), 0.25);
}
.votp-main-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 18px 32px rgba(var(--votp-primary-rgb), 0.35);
}
.votp-main-btn:active { transform: translateY(0); }
.votp-main-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* In-Page OTP Grid */
.votp-otp-grid { display: flex; gap: 12px; justify-content: center; margin-bottom: 30px; }
.votp-otp-square {
    width: 62px; height: 62px; border-radius: 16px;
    border: 2px solid #f3f4f6; background: #f9fafb;
    text-align: center; font-size: 26px; font-weight: 800;
    color: #111827; transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.votp-otp-square:focus {
    border-color: var(--votp-primary); background: #fff;
    box-shadow: 0 10px 20px rgba(var(--votp-primary-rgb), 0.12);
    outline: none; transform: translateY(-4px) scale(1.08);
}

.votp-inline-error {
    color: #ef4444; font-size: 13.5px; font-weight: 600;
    margin-top: 12px; opacity: 0; transform: translateY(-5px);
    transition: all 0.3s; pointer-events: none;
    background: rgba(239, 68, 68, 0.08); padding: 10px 14px;
    border-radius: 10px; border-left: 3px solid #ef4444;
}
.votp-inline-error:not(:empty) { opacity: 1; transform: translateY(0); display: block; }

.votp-card-footer {
    margin-top: 45px; padding-top: 30px;
    border-top: 1px solid #f3f4f6; display: flex; justify-content: center;
}
.votp-footer-lock {
    display: flex; align-items: center; gap: 8px;
    color: #9ca3af; font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.5px;
}

.votp-back-link {
    background: none; border: none; color: #9ca3af;
    font-size: 13px; font-weight: 700; cursor: pointer;
    margin-bottom: 20px; padding: 0; transition: color 0.2s;
}
.votp-back-link:hover { color: var(--votp-primary); }

.votp-text-link {
    background: none; border: none; color: var(--votp-primary);
    font-size: 14px; font-weight: 700; cursor: pointer;
    padding: 0; transition: opacity 0.2s;
}
.votp-text-link:disabled { color: #d1d5db; cursor: default; }

.votp-resend-timer-wrap {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; margin-top: 10px;
}

.votp-success-center { text-align: center; padding: 30px 0; }
.votp-success-icon-wrap { margin-bottom: 30px; }
.votp-progress-line { height: 5px; background: #f3f4f6; border-radius: 10px; margin-top: 40px; overflow: hidden; }
.votp-progress-line-fill { height: 100%; background: var(--votp-primary); width: 0; transition: width 2.5s cubic-bezier(0.1, 0, 0.1, 1); }

/* Success Animation Checkmark */
.votp-check { width: 90px; height: 90px; border-radius: 50%; display: block; stroke-width: 2.5; stroke: var(--votp-primary); stroke-miterlimit: 10; margin: 0 auto; box-shadow: inset 0px 0px 0px var(--votp-primary); animation: votpFill .4s ease-in-out .4s forwards, votpScale .3s ease-in-out .9s both; }
.votp-check-circle { stroke-dasharray: 166; stroke-dashoffset: 166; stroke-width: 2.5; stroke-miterlimit: 10; stroke: var(--votp-primary); fill: none; animation: votpStroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards; }
.votp-check-mark { transform-origin: 50% 50%; stroke-dasharray: 48; stroke-dashoffset: 48; animation: votpStroke 0.35s cubic-bezier(0.65, 0, 0.45, 1) 0.85s forwards; }

@keyframes votpStroke { 100% { stroke-dashoffset: 0; } }
@keyframes votpFill { 100% { box-shadow: inset 0px 0px 0px 50px rgba(var(--votp-primary-rgb), 0.05); } }
@keyframes votpScale { 0%, 100% { transform: none; } 50% { transform: scale3d(1.15, 1.15, 1); } }

/* Button Spinner Premium */
.votp-btn-loader {
    display: none; width: 22px; height: 22px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: #fff; border-radius: 50%;
    animation: votp-spin 0.8s linear infinite; position: absolute;
}
.votp-main-btn.is-loading .votp-btn-text { opacity: 0; }
.votp-main-btn.is-loading .votp-btn-loader { display: block; }

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

/* Mobile refinements for Premium Section */
@media (max-width: 600px) {
    .votp-premium-wrapper { padding: 40px 15px; min-height: auto; }
    .votp-card { padding: 40px 25px; border-radius: 30px; }
    .votp-card-title { font-size: 26px; }
    .votp-otp-square { width: 50px; height: 50px; font-size: 20px; border-radius: 12px; }
    .votp-otp-grid { gap: 8px; }
    .votp-bg-blob { width: 300px; height: 300px; filter: blur(80px); }
}
