/* ============================================
   OROPTICA LANDING PAGE
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1e293b;
    background: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== NAVBAR ===== */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    background: transparent;
}

.landing-nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    color: #1e293b;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo .material-symbols-outlined {
    color: #fff;
    font-size: 1.375rem;
}

.nav-brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1.25rem;
    background: #1e293b;
    color: #ffffff;
    border: none;
    border-radius: 9px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-login-btn .material-symbols-outlined {
    font-size: 1.125rem;
}

.nav-login-btn:hover {
    background: #0f172a;
    transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 2rem 4rem;
    overflow: hidden;
    background: #fafbfd;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    top: -150px;
    right: -100px;
}

.hero-shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    top: 40%;
    left: 30%;
}

.hero-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.12);
}

.hero-badge .material-symbols-outlined {
    font-size: 1rem;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.035em;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.hero-highlight {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-cta {
    margin-bottom: 2.5rem;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.btn-primary .material-symbols-outlined {
    font-size: 1.25rem;
    transition: transform 0.2s ease;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35);
}

.btn-primary:hover .material-symbols-outlined {
    transform: translateX(3px);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    border-radius: 12px;
}

.btn-white {
    background: #ffffff;
    color: #1e293b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: #f8fafc;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Hero stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.hero-stat-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: #e2e8f0;
}

/* ===== LANGUAGE SELECTOR ===== */
.nav-lang-selector {
    position: relative;
}

.nav-lang-select {
    padding: 0.4rem 1.75rem 0.4rem 0.625rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #475569;
    background: #ffffff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    transition: border-color 0.15s;
    min-width: 120px;
    font-family: inherit;
}

.nav-lang-select:hover,
.nav-lang-select:focus {
    outline: none;
    border-color: #94a3b8;
}

/* Hero visual (mock client card) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-card-main {
    width: 100%;
    max-width: 440px;
    overflow: hidden;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
}

.hero-card-dots {
    display: flex;
    gap: 0.375rem;
}

.hero-card-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
}

.hero-card-dots span:first-child { background: #fca5a5; }
.hero-card-dots span:nth-child(2) { background: #fcd34d; }
.hero-card-dots span:last-child { background: #86efac; }

.hero-card-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
}

.hero-card-body {
    padding: 1.25rem;
}

/* Mock client info */
.mock-client-info {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.mock-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-avatar .material-symbols-outlined {
    color: #ffffff;
    font-size: 1.375rem;
}

.mock-client-details {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.mock-client-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
}

.mock-client-id {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Mock prescription */
.mock-prescription {
    margin-bottom: 1rem;
}

.mock-prescription-title {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.625rem;
}

.mock-prescription-title .material-symbols-outlined {
    font-size: 1.125rem;
    color: #3b82f6;
}

.mock-rx-table {
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
    overflow: hidden;
}

.mock-rx-header,
.mock-rx-row {
    display: grid;
    grid-template-columns: 36px repeat(4, 1fr);
    gap: 0;
    text-align: center;
    font-size: 0.75rem;
}

.mock-rx-header {
    background: #eef2ff;
    padding: 0.5rem 0.75rem;
    font-weight: 700;
    color: #475569;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mock-rx-row {
    padding: 0.5rem 0.75rem;
    color: #334155;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    border-top: 1px solid #f1f5f9;
}

.mock-rx-eye {
    font-weight: 700;
    color: #3b82f6;
}

/* Mock order status */
.mock-order-status {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mock-order-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.625rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #475569;
}

.mock-order-row span:nth-child(2) {
    flex: 1;
}

.mock-order-icon-done {
    color: #10b981 !important;
    font-size: 1.125rem !important;
}

.mock-order-icon-progress {
    color: #f59e0b !important;
    font-size: 1.125rem !important;
}

.mock-status-badge {
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.1875rem 0.5rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.mock-status-done {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.mock-status-progress {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

/* Floating cards */
.hero-card-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    white-space: nowrap;
    animation: float 3s ease-in-out infinite;
}

.hero-card-float .material-symbols-outlined {
    font-size: 1.125rem;
}

.hero-card-float-1 {
    top: 0;
    right: -30px;
    animation-delay: 0s;
}

.hero-card-float-1 .material-symbols-outlined {
    color: #10b981;
}

.hero-card-float-2 {
    bottom: 30px;
    left: -20px;
    animation-delay: 1.5s;
}

.hero-card-float-2 .material-symbols-outlined {
    color: #3b82f6;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===== FEATURES ===== */
.features {
    padding: 6rem 2rem;
    background: #ffffff;
}

.features-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-badge {
    display: inline-block;
    padding: 0.3125rem 0.75rem;
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: #64748b;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    padding: 1.75rem;
    border-radius: 14px;
    border: 1px solid #f1f5f9;
    background: #fafbfd;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(1) { transition-delay: 0s; }
.feature-card:nth-child(2) { transition-delay: 0.08s; }
.feature-card:nth-child(3) { transition-delay: 0.16s; }
.feature-card:nth-child(4) { transition-delay: 0.24s; }
.feature-card:nth-child(5) { transition-delay: 0.32s; }
.feature-card:nth-child(6) { transition-delay: 0.40s; }

.feature-card:hover {
    border-color: #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--accent) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-icon .material-symbols-outlined {
    color: var(--accent);
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.feature-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.cta-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.cta-subtitle {
    font-size: 1.0625rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.landing-footer {
    padding: 2rem;
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand .nav-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.footer-brand .nav-logo .material-symbols-outlined {
    font-size: 1.125rem;
}

.footer-brand .nav-brand-text {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-copy {
    font-size: 0.8125rem;
    color: #64748b;
}

/* ===== ROLE MODAL ===== */
.role-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.role-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.role-modal {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
    transform: translateY(16px) scale(0.97);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.role-modal-overlay.active .role-modal {
    transform: translateY(0) scale(1);
}

.role-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.role-modal-close:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.role-modal-close .material-symbols-outlined {
    font-size: 1.25rem;
}

.role-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.role-modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.role-modal-icon .material-symbols-outlined {
    color: #ffffff;
    font-size: 1.75rem;
}

.role-modal-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 0.375rem;
}

.role-modal-subtitle {
    font-size: 0.9375rem;
    color: #64748b;
}

.role-modal-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.role-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    border-radius: 14px;
    border: 1.5px solid #e2e8f0;
    background: #ffffff;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    cursor: pointer;
}

.role-option:hover {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.03);
    box-shadow: 0 2px 12px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.role-option-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--accent) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.role-option-icon .material-symbols-outlined {
    color: var(--accent);
    font-size: 1.375rem;
}

.role-option-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.role-option-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
}

.role-option-desc {
    font-size: 0.8125rem;
    color: #94a3b8;
}

.role-option-arrow {
    color: #cbd5e1;
    font-size: 1.25rem;
    transition: all 0.2s ease;
}

.role-option:hover .role-option-arrow {
    color: #3b82f6;
    transform: translateX(2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        display: flex;
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 440px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .landing-nav {
        padding: 0 1.25rem;
        height: 64px;
    }

    .hero {
        padding: 6rem 1.25rem 3rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-title br {
        display: none;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-stat-number {
        font-size: 1.125rem;
    }

    .hero-card-float {
        display: none;
    }

    .nav-lang-select {
        min-width: 100px;
        font-size: 0.75rem;
        padding: 0.375rem 1.5rem 0.375rem 0.5rem;
    }

    .features {
        padding: 4rem 1.25rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.9375rem;
    }

    .cta-section {
        padding: 3.5rem 1.25rem;
    }

    .cta-title {
        font-size: 1.625rem;
    }

    .footer-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .role-modal {
        padding: 2rem 1.5rem;
        margin: 1rem;
        width: calc(100% - 2rem);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .nav-brand-text {
        font-size: 1.125rem;
    }

    .nav-login-btn {
        padding: 0.4375rem 1rem;
        font-size: 0.8125rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .nav-lang-select {
        min-width: 90px;
    }
}

/* ===== RTL SUPPORT ===== */
[dir="rtl"] .hero-content {
    text-align: right;
}

[dir="rtl"] .hero-badge {
    flex-direction: row-reverse;
}

[dir="rtl"] .btn-primary {
    flex-direction: row-reverse;
}

[dir="rtl"] .btn-primary:hover .material-symbols-outlined {
    transform: translateX(-3px);
}

[dir="rtl"] .hero-stats {
    direction: ltr;
}

[dir="rtl"] .mock-rx-eye {
    direction: ltr;
}

[dir="rtl"] .mock-rx-table {
    direction: ltr;
}

[dir="rtl"] .role-option {
    flex-direction: row-reverse;
}

[dir="rtl"] .role-option-text {
    text-align: right;
}

[dir="rtl"] .role-option-arrow {
    transform: scaleX(-1);
}

[dir="rtl"] .role-option:hover .role-option-arrow {
    transform: scaleX(-1) translateX(2px);
}

[dir="rtl"] .feature-card {
    text-align: right;
}

[dir="rtl"] .nav-lang-selector {
    direction: ltr;
}
