/* ═══════════════════════════════════════════════════
   Launch Store Page – Premium CSS
   ═══════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
    --ls-primary: #6366f1;
    --ls-primary-dark: #4f46e5;
    --ls-primary-light: #818cf8;
    --ls-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --ls-gradient-2: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
    --ls-text: #1e293b;
    --ls-text-muted: #64748b;
    --ls-bg: #ffffff;
    --ls-bg-alt: #f8fafc;
    --ls-border: #e2e8f0;
    --ls-radius: 16px;
    --ls-radius-sm: 10px;
    --ls-shadow: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
    --ls-shadow-lg: 0 20px 40px rgba(0,0,0,.1);
    --ls-shadow-xl: 0 25px 50px -12px rgba(0,0,0,.15);
}

/* ══════════════════════
   HERO
   ══════════════════════ */
.ls-hero {
    position: relative;
    overflow: hidden;
    padding: 8rem 0 5rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.ls-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.ls-hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 40%, #312e81 70%, #4c1d95 100%);
}
.ls-hero__pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 30px 30px;
}
.ls-hero__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .3;
}
.ls-hero__shape--1 {
    width: 500px; height: 500px;
    background: #6366f1;
    top: -100px; right: -100px;
    animation: lsFloat 8s ease-in-out infinite;
}
.ls-hero__shape--2 {
    width: 400px; height: 400px;
    background: #a855f7;
    bottom: -80px; left: -80px;
    animation: lsFloat 10s ease-in-out infinite reverse;
}
.ls-hero__shape--3 {
    width: 300px; height: 300px;
    background: #0ea5e9;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    animation: lsFloat 12s ease-in-out infinite;
}
@keyframes lsFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.ls-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.ls-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1.25rem;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50px;
    color: #c4b5fd;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.ls-hero__title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.ls-hero__lead {
    font-size: 1.15rem;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.ls-hero__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.ls-hero__stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.ls-hero__stat {
    text-align: center;
}
.ls-hero__stat-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
}
.ls-hero__stat-label {
    font-size: .8rem;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.ls-hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.2);
}

/* ══════════════════════
   BUTTONS
   ══════════════════════ */
.ls-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .65rem 1.5rem;
    border-radius: var(--ls-radius-sm);
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .25s ease;
}
.ls-btn--primary {
    background: var(--ls-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(99,102,241,.4);
}
.ls-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99,102,241,.5);
    color: #fff;
    text-decoration: none;
}
.ls-btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.3);
}
.ls-btn--outline:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.5);
    color: #fff;
    text-decoration: none;
}
.ls-btn--lg { padding: .85rem 2rem; font-size: 1rem; }
.ls-btn--block { width: 100%; }

/* Override outline inside non-hero sections */
.ls-features .ls-btn--outline,
.ls-pricing .ls-btn--outline,
.ls-register .ls-btn--outline {
    color: var(--ls-primary);
    border-color: var(--ls-primary);
}
.ls-features .ls-btn--outline:hover,
.ls-pricing .ls-btn--outline:hover,
.ls-register .ls-btn--outline:hover {
    background: var(--ls-primary);
    color: #fff;
}

/* ══════════════════════
   SECTION HEADER
   ══════════════════════ */
.ls-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.ls-section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--ls-text);
    margin-bottom: .75rem;
}
.ls-section-subtitle {
    font-size: 1.05rem;
    color: var(--ls-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ══════════════════════
   FEATURES
   ══════════════════════ */
.ls-features {
    padding: 5rem 0;
    background: var(--ls-bg);
}
.ls-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.ls-feature-card {
    background: var(--ls-bg);
    border: 1px solid var(--ls-border);
    border-radius: var(--ls-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all .3s ease;
}
.ls-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ls-shadow-lg);
    border-color: transparent;
}
.ls-feature-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1.25rem;
    transition: all .3s ease;
}
.ls-feature-card:hover .ls-feature-card__icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1);
}
.ls-feature-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ls-text);
    margin-bottom: .5rem;
}
.ls-feature-card__desc {
    font-size: .85rem;
    color: var(--ls-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ══════════════════════
   STEPS
   ══════════════════════ */
.ls-steps {
    padding: 5rem 0;
    background: var(--ls-bg-alt);
}
.ls-steps__grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.ls-step {
    flex: 0 1 220px;
    text-align: center;
    position: relative;
}
.ls-step__number {
    position: absolute;
    top: -10px;
    right: -5px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--ls-gradient);
    color: #fff;
    font-size: .75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.ls-step__icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--ls-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: var(--ls-primary);
    transition: all .3s ease;
}
.ls-step:hover .ls-step__icon {
    background: var(--ls-gradient);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(99,102,241,.3);
}
.ls-step__title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--ls-text);
    margin-bottom: .35rem;
}
.ls-step__desc {
    font-size: .8rem;
    color: var(--ls-text-muted);
    line-height: 1.5;
    margin: 0;
}
.ls-step__connector {
    display: flex;
    align-items: center;
    padding-top: 2.5rem;
    color: var(--ls-primary);
    opacity: .4;
    font-size: 1.25rem;
}

/* ══════════════════════
   PRICING
   ══════════════════════ */
.ls-pricing {
    padding: 5rem 0;
    background: var(--ls-bg);
}
.ls-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.ls-price-card {
    background: var(--ls-bg);
    border: 1px solid var(--ls-border);
    border-radius: var(--ls-radius);
    padding: 2.5rem 2rem;
    position: relative;
    transition: all .3s ease;
}
.ls-price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ls-shadow-lg);
}
.ls-price-card--featured {
    border-color: var(--ls-primary);
    box-shadow: 0 0 0 1px var(--ls-primary), var(--ls-shadow-lg);
    transform: scale(1.04);
}
.ls-price-card--featured:hover {
    transform: scale(1.04) translateY(-6px);
}
.ls-price-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: .35rem 1.25rem;
    background: var(--ls-gradient);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    border-radius: 50px;
    white-space: nowrap;
}
.ls-price-card__header {
    text-align: center;
    margin-bottom: 1.5rem;
}
.ls-price-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--ls-primary) 10%, transparent);
    color: var(--ls-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto .75rem;
}
.ls-price-card--featured .ls-price-card__icon {
    background: var(--ls-gradient);
    color: #fff;
}
.ls-price-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ls-text);
    margin-bottom: .25rem;
}
.ls-price-card__tagline {
    font-size: .8rem;
    color: var(--ls-text-muted);
    margin: 0;
}
.ls-price-card__price {
    text-align: center;
    padding: 1.25rem 0;
    margin-bottom: 1.5rem;
    border-top: 1px solid var(--ls-border);
    border-bottom: 1px solid var(--ls-border);
}
.ls-price-card__amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ls-text);
}
.ls-price-card__period {
    font-size: .85rem;
    color: var(--ls-text-muted);
}
.ls-price-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}
.ls-price-card__features li {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 0;
    font-size: .85rem;
    color: var(--ls-text);
    border-bottom: 1px dashed var(--ls-border);
}
.ls-price-card__features li:last-child { border: none; }
.ls-price-card__features li i {
    color: #10b981;
    font-size: .75rem;
    flex-shrink: 0;
}

/* ══════════════════════
   REGISTER
   ══════════════════════ */
.ls-register {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
}
.ls-register__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.ls-register__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}
.ls-register__desc {
    font-size: 1rem;
    color: rgba(255,255,255,.7);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.ls-register__checks {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ls-register__checks li {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .5rem 0;
    color: rgba(255,255,255,.85);
    font-size: .9rem;
}
.ls-register__checks li i {
    color: #10b981;
    font-size: 1rem;
}
.ls-register__form-card {
    background: #fff;
    border-radius: var(--ls-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--ls-shadow-xl);
}
.ls-register__form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ls-text);
    text-align: center;
    margin-bottom: 1.5rem;
}

/* ── Form ── */
.ls-form-group {
    margin-bottom: 1rem;
}
.ls-form-label {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--ls-text);
    margin-bottom: .35rem;
}
.ls-form-label i {
    color: var(--ls-primary);
    font-size: .75rem;
}
.ls-form-input {
    width: 100%;
    padding: .7rem 1rem;
    border: 1.5px solid var(--ls-border);
    border-radius: var(--ls-radius-sm);
    font-size: .9rem;
    color: var(--ls-text);
    background: var(--ls-bg);
    transition: all .2s ease;
    outline: none;
}
.ls-form-input:focus {
    border-color: var(--ls-primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,.15);
}
.ls-form-input::placeholder {
    color: #94a3b8;
}

/* ── Alert ── */
.ls-alert {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1rem;
    border-radius: var(--ls-radius-sm);
    font-size: .85rem;
    margin-bottom: 1rem;
}
.ls-alert--danger {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}
.ls-alert--success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.ls-register__login-link {
    text-align: center;
    font-size: .85rem;
    color: var(--ls-text-muted);
    margin-top: 1rem;
    margin-bottom: 0;
}
.ls-register__login-link a {
    color: var(--ls-primary);
    font-weight: 600;
}

/* CTA Section */
.ls-cta-section {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    padding: 1rem 0;
}
.ls-cta-section__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: .75rem;
}
.ls-cta-section__desc {
    font-size: 1rem;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.ls-cta-section__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ══════════════════════
   RESPONSIVE
   ══════════════════════ */
@media (max-width: 1024px) {
    .ls-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ls-pricing__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .ls-price-card--featured {
        transform: none;
    }
    .ls-price-card--featured:hover {
        transform: translateY(-6px);
    }
}
@media (max-width: 768px) {
    .ls-hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }
    .ls-hero__title {
        font-size: 2rem;
    }
    .ls-features__grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .ls-step__connector { display: none; }
    .ls-steps__grid {
        gap: 1.5rem;
    }
    .ls-register__wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .ls-register__info {
        text-align: center;
    }
}
@media (max-width: 480px) {
    .ls-features__grid {
        grid-template-columns: 1fr;
    }
    .ls-hero__stats {
        gap: 1rem;
    }
    .ls-register__form-card {
        padding: 1.5rem 1.25rem;
    }
}

/* ── Trial Banner ── */
.ls-trial-banner {
    text-align: center;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    animation: trialPulse 2s ease-in-out infinite;
}
.ls-trial-banner i { font-size: 1.3rem; }
@keyframes trialPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* ══════════════════════
   TOAST NOTIFICATION
   ══════════════════════ */
.ls-toast {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    min-width: 320px;
    max-width: 480px;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}
.ls-toast--show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}
.ls-toast--success {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 1px solid #6ee7b7;
}
.ls-toast--success .ls-toast__icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}
.ls-toast--danger {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 1px solid #fca5a5;
}
.ls-toast--danger .ls-toast__icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
}
.ls-toast__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.ls-toast__content {
    flex: 1;
    min-width: 0;
}
.ls-toast__text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
}
.ls-toast__close {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 0.25rem;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: color 0.2s;
}
.ls-toast__close:hover { color: #475569; }

/* RTL toast */
.rtl .ls-toast,
[dir="rtl"] .ls-toast {
    right: auto;
    left: 1.5rem;
    transform: translateX(-120%);
}
.rtl .ls-toast--show,
[dir="rtl"] .ls-toast--show {
    transform: translateX(0);
}

@media (max-width: 480px) {
    .ls-toast {
        right: 0.75rem;
        left: 0.75rem;
        min-width: auto;
        max-width: none;
    }
    .rtl .ls-toast,
    [dir="rtl"] .ls-toast {
        right: 0.75rem;
        left: 0.75rem;
    }
}

/* ── RTL ── */
.rtl .ls-step__number { right: auto; left: -5px; }
.rtl .ls-step__connector i { transform: scaleX(-1); }

/* ═══════════════════════════════════════
   Store Login Page (/store-login)
   ═══════════════════════════════════════ */

.sl-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 5rem 0 2rem;
    background: #f8fafc;
}
.sl-page.rtl { direction: rtl; }

.sl-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* Left Panel - Info */
.sl-info-panel {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.sl-info-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(99,102,241,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.sl-info-content { position: relative; z-index: 1; }

.sl-store-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.sl-store-icon i { font-size: 2rem; color: #fff; }

.sl-info-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.sl-info-subtitle {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.sl-features-list { display: flex; flex-direction: column; gap: 1rem; }
.sl-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
    font-size: 0.95rem;
}
.sl-feature-item i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(99,102,241,0.15);
    color: #818cf8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Right Panel - Form */
.sl-form-panel {
    padding: 3rem 2.5rem;
    display: flex;
    align-items: center;
}
.sl-form-card { width: 100%; }

.sl-form-header {
    margin-bottom: 2rem;
}
.sl-form-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}
.sl-form-header p {
    font-size: 0.95rem;
    color: #64748b;
}

.sl-alert {
    padding: 0.875rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.sl-alert-danger {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.sl-form-group { margin-bottom: 1.25rem; }
.sl-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
}
.sl-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.sl-input-wrapper > i:first-child {
    position: absolute;
    left: 1rem;
    color: #94a3b8;
    font-size: 0.9rem;
    pointer-events: none;
}
.rtl .sl-input-wrapper > i:first-child {
    left: auto;
    right: 1rem;
}
.sl-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.2s;
    background: #f8fafc;
    outline: none;
}
.rtl .sl-input { padding: 0.875rem 2.75rem 0.875rem 1rem; }
.sl-input:focus {
    border-color: #6366f1;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(99,102,241,0.1);
}
.sl-eye-btn {
    position: absolute;
    right: 0.75rem;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 0.25rem;
    font-size: 0.9rem;
}
.rtl .sl-eye-btn { right: auto; left: 0.75rem; }
.sl-eye-btn:hover { color: #6366f1; }

.sl-submit-btn {
    width: 100%;
    padding: 0.95rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    margin-top: 0.5rem;
}
.sl-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99,102,241,0.4);
}
.sl-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.sl-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: slSpin 0.6s linear infinite;
}
@keyframes slSpin { to { transform: rotate(360deg); } }

.sl-form-footer {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
}
.sl-footer-link {
    font-size: 0.9rem;
    color: #64748b;
}
.sl-footer-link a {
    color: #6366f1;
    font-weight: 600;
    text-decoration: none;
    margin-inline-start: 0.25rem;
}
.sl-footer-link a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 768px) {
    .sl-container {
        grid-template-columns: 1fr;
        margin: 0 1rem;
    }
    .sl-info-panel {
        padding: 2rem 1.5rem;
    }
    .sl-info-title { font-size: 1.4rem; }
    .sl-form-panel { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
    .sl-info-panel { display: none; }
    .sl-form-panel { padding: 2rem 1.25rem; }
}

/* ═══════════════════════════════════════
   Store Register Page (/store-register)
   ═══════════════════════════════════════ */
.sr-container {
    max-width: 1050px;
}
.sr-info-panel {
    background: linear-gradient(135deg, #312e81 0%, #4c1d95 50%, #6d28d9 100%);
}
.sr-info-panel::before {
    background: radial-gradient(circle at 30% 50%, rgba(139,92,246,0.2) 0%, transparent 50%);
}
