/* MYroMenu Digital Menu Platform - Design System (Palette 03 - Pure Light Theme) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Palette 03 Tokens */
    --myro-coral-red: #EB3847;
    --myro-deep-blue: #0E2A4A;
    --myro-steel-blue: #407B98;
    --myro-light-turquoise: #A0D8D6;
    --myro-mint-white: #EAF4F2;

    /* PURE LIGHT THEME VARIABLES */
    --myro-bg: #EAF4F2;
    --myro-bg-card: #FFFFFF;
    --myro-bg-surface: #DBECE9;
    --myro-text-main: #0E2A4A;
    --myro-text-sub: #407B98;
    --myro-text-muted: #64748B;
    --myro-accent-red: #EB3847;
    --myro-accent-red-hover: #D02B3A;
    --myro-highlight: #A0D8D6;
    --myro-border: rgba(14, 42, 74, 0.12);
    --myro-border-glow: rgba(235, 56, 71, 0.35);
    --myro-radius-sm: 8px;
    --myro-radius-md: 16px;
    --myro-radius-lg: 24px;
    --myro-radius-full: 9999px;
    --myro-shadow: 0 10px 30px -10px rgba(14, 42, 74, 0.08);
    --myro-shadow-coral: 0 10px 30px -5px rgba(235, 56, 71, 0.3);
    --myro-font: 'Vazirmatn', 'Outfit', sans-serif;
}

body {
    font-family: var(--myro-font);
    background-color: var(--myro-bg);
    color: var(--myro-text-main);
    margin: 0;
    padding: 0;
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Glassmorphism Header */
.myro-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(234, 244, 242, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--myro-border);
    transition: all 0.3s ease;
}

.myro-navbar {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.myro-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--myro-text-main);
    font-weight: 900;
    font-size: 1.6rem;
}

.myro-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--myro-accent-red), #FF6B7A);
    border-radius: var(--myro-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--myro-shadow-coral);
    color: #FFF;
    font-size: 1.4rem;
}

.myro-nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.myro-nav-link {
    color: var(--myro-text-sub);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.myro-nav-link:hover,
.myro-nav-link.active {
    color: var(--myro-accent-red);
}

.myro-btn-coral {
    background: #EB3847;
    color: #FFFFFF !important;
    padding: 14px 28px;
    border-radius: var(--myro-radius-full);
    text-decoration: none;
    font-weight: 800 !important;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px -5px rgba(235, 56, 71, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.myro-btn-coral * {
    color: #FFFFFF !important;
}

.myro-btn-coral:hover {
    background: #C92433;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(235, 56, 71, 0.6);
}

.myro-btn-outline {
    background: #0E2A4A;
    color: #FFFFFF !important;
    border: 2px solid #0E2A4A;
    padding: 14px 28px;
    border-radius: var(--myro-radius-full);
    text-decoration: none;
    font-weight: 800 !important;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.myro-btn-outline * {
    color: #FFFFFF !important;
}

.myro-btn-outline:hover {
    background: #EB3847;
    border-color: #EB3847;
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

/* Hero Section */
.myro-hero {
    padding: 160px 24px 100px;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.myro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(235, 56, 71, 0.12);
    border: 1px solid var(--myro-border-glow);
    color: var(--myro-accent-red);
    padding: 8px 18px;
    border-radius: var(--myro-radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.myro-hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--myro-text-main);
}

.myro-hero-sub {
    font-size: 1.15rem;
    color: var(--myro-text-sub);
    margin-bottom: 36px;
    max-width: 520px;
}

.myro-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.myro-hero-mockup {
    position: relative;
    display: flex;
    justify-content: center;
}

.myro-phone-frame {
    width: 320px;
    height: 640px;
    background: var(--myro-bg-card);
    border: 8px solid #0E2A4A;
    border-radius: 44px;
    box-shadow: var(--myro-shadow), 0 0 50px rgba(235, 56, 71, 0.15);
    overflow: hidden;
    position: relative;
}

/* Feature Cards */
.myro-section {
    padding: 100px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.myro-section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* City Filter Pills & Modal Select Buttons */
.myro-city-pill {
    background: #FFFFFF;
    color: var(--myro-text-main);
    border: 1px solid var(--myro-border);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.myro-city-pill:hover,
.myro-city-pill.active {
    background: #0E2A4A;
    color: #FFFFFF !important;
    border-color: #0E2A4A;
    box-shadow: 0 4px 12px rgba(14, 42, 74, 0.2);
}

.myro-city-select-btn {
    background: #F1F5F9;
    color: #0E2A4A;
    border: 1px solid #CBD5E1;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    font-family: 'Vazirmatn', sans-serif;
}

.myro-city-select-btn:hover,
.myro-city-select-btn.active {
    background: #0E2A4A;
    color: #FFFFFF !important;
    border-color: #0E2A4A;
    box-shadow: 0 4px 12px rgba(14, 42, 74, 0.2);
}

.myro-section-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.myro-section-sub {
    color: var(--myro-text-sub);
    font-size: 1.05rem;
}

.myro-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.myro-feature-card {
    background: var(--myro-bg-card);
    border: 1px solid var(--myro-border);
    border-radius: var(--myro-radius-lg);
    padding: 36px 28px;
    transition: all 0.3s ease;
    box-shadow: var(--myro-shadow);
}

.myro-feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--myro-border-glow);
}

.myro-feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(235, 56, 71, 0.15);
    color: var(--myro-accent-red);
    border-radius: var(--myro-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
}

/* Pricing Section */
.myro-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 32px;
    align-items: stretch;
}

.myro-price-card {
    background: var(--myro-bg-card);
    border: 1px solid var(--myro-border);
    border-radius: var(--myro-radius-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--myro-shadow);
}

.myro-price-card.featured {
    border: 2px solid var(--myro-accent-red);
    box-shadow: var(--myro-shadow-coral);
    transform: scale(1.03);
}

.myro-price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--myro-text-main);
    margin: 20px 0;
}

.myro-price-tag span {
    font-size: 1rem;
    color: var(--myro-text-sub);
    font-weight: 400;
}

.myro-price-features {
    list-style: none;
    padding: 0;
    margin: 24px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1;
}

.myro-price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--myro-text-sub);
    font-size: 0.95rem;
}

.myro-price-features li i {
    color: var(--myro-accent-red);
}

/* Registration Modal */
.myro-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14, 42, 74, 0.7);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.myro-modal-overlay.active {
    display: flex;
}

.myro-modal-card {
    background: var(--myro-bg-card);
    border: 1px solid var(--myro-border-glow);
    border-radius: var(--myro-radius-lg);
    width: 100%;
    max-width: 440px;
    padding: 40px 32px;
    box-shadow: var(--myro-shadow), var(--myro-shadow-coral);
    position: relative;
    text-align: center;
}

.myro-modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    background: transparent;
    border: none;
    color: var(--myro-text-sub);
    font-size: 1.4rem;
    cursor: pointer;
}

.myro-input {
    width: 100%;
    padding: 14px 18px;
    background: var(--myro-bg-surface);
    border: 1px solid var(--myro-border);
    border-radius: var(--myro-radius-md);
    color: var(--myro-text-main);
    font-size: 1rem;
    font-family: var(--myro-font);
    box-sizing: border-box;
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.2s ease;
}

.myro-input:focus {
    border-color: var(--myro-accent-red);
}

/* Footer Design */
.myro-footer-container {
    background: var(--myro-deep-blue);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #EAF4F2;
    padding: 80px 24px 30px;
    margin-top: 100px;
    position: relative;
}

.myro-footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.3fr 1.4fr;
    gap: 40px;
}

.myro-footer-brand-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 900;
    color: #FFF;
    margin-bottom: 18px;
}

.myro-footer-desc {
    color: var(--myro-light-turquoise);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 380px;
}

.myro-footer-socials {
    display: flex;
    gap: 12px;
}

.myro-social-btn {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--myro-radius-md);
    color: var(--myro-light-turquoise);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.myro-social-btn:hover {
    background: var(--myro-accent-red);
    color: #FFF;
    border-color: var(--myro-accent-red);
    transform: translateY(-4px);
}

.myro-footer-heading {
    font-size: 1.15rem;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.myro-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 3px;
    background: var(--myro-accent-red);
    border-radius: 2px;
}

.myro-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.myro-footer-link {
    color: var(--myro-light-turquoise);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.myro-footer-link:hover {
    color: var(--myro-accent-red);
    transform: translateX(-4px);
}

.myro-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--myro-light-turquoise);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.myro-footer-contact-item i {
    color: var(--myro-accent-red);
    font-size: 1.1rem;
    margin-top: 4px;
}

.myro-footer-cta-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--myro-radius-md);
    padding: 20px;
    margin-top: 16px;
}

.myro-footer-bottom {
    max-width: 1280px;
    margin: 60px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--myro-light-turquoise);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 16px;
}

/* Digital Menu Pills */
.myro-category-pills {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 16px 20px;
    background: var(--myro-bg-card);
    border-bottom: 1px solid var(--myro-border);
}

.myro-pill {
    padding: 10px 22px;
    background: var(--myro-bg-surface);
    border: 1px solid var(--myro-border);
    border-radius: var(--myro-radius-full);
    color: var(--myro-text-main);
    white-space: nowrap;
    cursor: pointer;
    font-weight: 600;
}

.myro-pill.active {
    background: var(--myro-accent-red);
    color: #FFF;
    border-color: var(--myro-accent-red);
}

/* Mobile App Bottom Bar & Mobile Navigation Drawer */
.myro-mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(14, 42, 74, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(160, 216, 214, 0.2);
    z-index: 9999;
    padding: 0 10px;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.2);
}

.myro-mobile-bottom-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
}

.myro-mobile-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #A0D8D6;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 700;
    gap: 4px;
    transition: all 0.2s ease;
}

.myro-mobile-bottom-item i {
    font-size: 1.2rem;
}

.myro-mobile-bottom-item.active,
.myro-mobile-bottom-item:hover {
    color: #EB3847;
    transform: translateY(-2px);
}

/* Mobile Drawer Backdrop & Panel */
.myro-mobile-drawer-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.myro-mobile-drawer-backdrop.active {
    display: block;
    opacity: 1;
}

.myro-mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: #0E2A4A;
    z-index: 10001;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    color: #FFFFFF;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.myro-mobile-drawer.active {
    right: 0;
}

.myro-mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #0E2A4A;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .myro-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
    }

    .myro-hero-sub {
        margin: 0 auto 36px;
    }

    .myro-hero-actions {
        justify-content: center;
    }

    .myro-nav-menu {
        display: none;
    }

    .myro-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .myro-mobile-menu-toggle {
        display: block !important;
    }

    .myro-mobile-bottom-nav {
        display: block !important;
    }

    body {
        padding-bottom: 70px !important;
    }

    .myro-hero-title {
        font-size: 2.1rem !important;
    }

    .myro-section-title {
        font-size: 1.8rem !important;
    }

    .myro-city-picker-wrapper {
        width: 100% !important;
    }

    #myro-open-city-modal-btn {
        width: 100% !important;
        justify-content: space-between !important;
    }

    #myro-city-dropdown-menu {
        width: 100% !important;
        right: 0 !important;
        left: 0 !important;
    }
}

@media (max-width: 600px) {
    .myro-footer-grid {
        grid-template-columns: 1fr;
    }

    .myro-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   MYroMenu Authentication Modal & OTP Styles (Ultra-Premium Redesign)
   ========================================================================== */
.myro-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(14, 42, 74, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    animation: myroFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes myroFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.myro-modal-container {
    background: #FFFFFF;
    border: 1.5px solid rgba(226, 232, 240, 0.9);
    border-radius: 28px;
    width: 100%;
    max-width: 440px;
    padding: 26px 24px 24px;
    position: relative;
    box-shadow: 0 30px 70px rgba(14, 42, 74, 0.35), 0 0 40px rgba(235, 56, 71, 0.08);
    animation: myroModalPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    direction: rtl;
    font-family: 'Vazirmatn', sans-serif;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    box-sizing: border-box;
}

@keyframes myroModalPop {
    from {
        transform: scale(0.92) translateY(24px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Close Button */
.myro-modal-close-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #64748B;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 10;
}

.myro-modal-close-btn:hover {
    background: #EB3847;
    color: #FFFFFF;
    border-color: #EB3847;
    transform: rotate(90deg) scale(1.1);
}

/* Top Bar: Centered Brand */
.myro-modal-top-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid #F1F5F9;
}

.myro-modal-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.myro-brand-badge {
    width: 32px;
    height: 32px;
    background: #0E2A4A;
    border-radius: 10px;
    color: #EB3847;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(14, 42, 74, 0.2);
}

.myro-modal-brand-text {
    font-size: 1.15rem;
    font-weight: 900;
    color: #0E2A4A;
}

/* Header & Glowing Badge Icon (Centered) */
.myro-modal-header {
    text-align: center;
    margin-bottom: 22px;
}

.myro-modal-badge-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FFF5F5 0%, #EAF4F2 100%);
    border: 1.5px solid rgba(235, 56, 71, 0.25);
    border-radius: 20px;
    color: #EB3847;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 10px 25px rgba(235, 56, 71, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.myro-modal-badge-icon.pulse {
    animation: myroBadgeGlow 2s infinite ease-in-out;
}

@keyframes myroBadgeGlow {

    0%,
    100% {
        box-shadow: 0 10px 25px rgba(235, 56, 71, 0.15);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 12px 30px rgba(235, 56, 71, 0.3);
        transform: scale(1.05);
    }
}

.myro-modal-title {
    font-size: 1.35rem;
    font-weight: 900;
    color: #0E2A4A;
    margin: 0 0 6px;
    letter-spacing: -0.3px;
    text-align: center;
}

.myro-modal-subtitle {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Input Fields (11-Digit Mobile Box Component - Grouped 4 3 4 Horizontal Row) */
.myro-input-group {
    margin-bottom: 20px;
    text-align: center;
}

.myro-input-label {
    display: block;
    font-weight: 800;
    font-size: 0.9rem;
    color: #1E293B;
    margin-bottom: 12px;
    text-align: center;
}

.myro-mobile-boxes-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 16px auto 18px !important;
    direction: ltr !important;
    width: 100% !important;
}

.myro-phone-group {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 3px !important;
    flex-shrink: 0 !important;
}

.myro-phone-group-separator {
    width: 8px !important;
    height: 3px !important;
    background: #CBD5E1 !important;
    border-radius: 2px !important;
    flex-shrink: 0 !important;
}

.myro-mobile-box {
    width: 25px !important;
    height: 40px !important;
    min-width: 25px !important;
    max-width: 25px !important;
    border: 2px solid #CBD5E1;
    border-radius: 9px;
    font-size: 1.2rem;
    font-weight: 900;
    text-align: center;
    color: #0E2A4A;
    background: #F8FAFC;
    font-family: monospace;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: background-color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.25s ease, border-color 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
    display: inline-block !important;
    flex-shrink: 0 !important;
}

.myro-mobile-box:focus {
    outline: none !important;
    border-color: #EB3847 !important;
    background: #FFFFFF;
    color: #0E2A4A;
    box-shadow: 0 0 0 3.5px rgba(235, 56, 71, 0.2), 0 4px 12px rgba(235, 56, 71, 0.12) !important;
    transform: translateY(-3px) scale(1.05) !important;
}

/* Filled State: Dark Navy Background (#0E2A4A), Bold White Digit (#FFFFFF), Scale Pop Animation */
input.myro-mobile-box.has-value,
input.myro-mobile-box:not(:placeholder-shown),
.myro-mobile-box.has-value,
.myro-mobile-box:not(:placeholder-shown) {
    background: #0E2A4A !important;
    border-color: #0E2A4A !important;
    color: #FFFFFF !important;
    font-weight: 900 !important;
    box-shadow: 0 4px 12px rgba(14, 42, 74, 0.25) !important;
    animation: myroDigitPop 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

input.myro-mobile-box.has-value:focus,
input.myro-mobile-box:not(:placeholder-shown):focus,
.myro-mobile-box.has-value:focus,
.myro-mobile-box:not(:placeholder-shown):focus {
    background: #0E2A4A !important;
    color: #FFFFFF !important;
    border-color: #EB3847 !important;
    box-shadow: 0 0 0 3.5px rgba(235, 56, 71, 0.3), 0 6px 14px rgba(14, 42, 74, 0.3) !important;
}

@keyframes myroDigitPop {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

/* ==========================================================================
   MYROMENU ULTRA-PREMIUM USER DASHBOARD STYLES
   ========================================================================== */
.myro-dashboard-wrapper {
    background: #EAF4F2;
    min-height: 88vh;
    padding: 35px 20px 60px;
    font-family: 'Vazirmatn', sans-serif;
}

.myro-dashboard-container {
    max-width: 1240px;
    margin: 0 auto;
}

/* Header Banner Card */
.myro-dash-header-card {
    background: linear-gradient(135deg, #0E2A4A 0%, #1A3D66 100%);
    border-radius: 24px;
    padding: 32px 36px;
    color: #FFFFFF;
    box-shadow: 0 14px 35px rgba(14, 42, 74, 0.18);
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}

.myro-dash-header-overlay {
    position: absolute;
    left: -60px;
    top: -60px;
    width: 220px;
    height: 220px;
    background: rgba(160, 216, 214, 0.12);
    border-radius: 50%;
    filter: blur(45px);
    pointer-events: none;
}

.myro-dash-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.myro-dash-user-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.myro-dash-avatar-badge {
    width: 64px;
    height: 64px;
    background: rgba(235, 56, 71, 0.18);
    border: 2px solid rgba(235, 56, 71, 0.4);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EB3847;
}

.myro-dash-plan-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(235, 56, 71, 0.2);
    border: 1px solid rgba(235, 56, 71, 0.4);
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 800;
    color: #EB3847;
    margin-bottom: 8px;
}

.myro-dash-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: #FFFFFF;
    margin: 0 0 6px 0;
}

.myro-dash-subtitle {
    margin: 0;
    color: #A0D8D6;
    font-size: 0.95rem;
}

.myro-dash-phone {
    color: #FFFFFF;
    font-family: monospace;
    font-size: 1.05rem;
}

.myro-dash-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.myro-btn-glow {
    box-shadow: 0 6px 20px rgba(235, 56, 71, 0.4);
}

.myro-btn-dark-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 14px;
    border: none;
    text-decoration: none;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.myro-btn-dark-ghost:hover {
    background: rgba(235, 56, 71, 0.3);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Dashboard Nav Tabs */
.myro-dash-nav-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    padding: 8px;
    border-radius: 18px;
    border: 1px solid rgba(14, 42, 74, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    margin-bottom: 28px;
    overflow-x: auto;
}

.myro-dash-tab-btn {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px;
    border: none;
    background: transparent;
    border-radius: 14px;
    font-size: 0.98rem;
    font-weight: 800;
    color: #64748B;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.myro-dash-tab-btn:hover {
    color: #0E2A4A;
    background: #F8FAFC;
}

.myro-dash-tab-btn.active {
    background: #0E2A4A;
    color: #FFFFFF;
    box-shadow: 0 6px 18px rgba(14, 42, 74, 0.2);
}

.myro-tab-badge {
    background: rgba(235, 56, 71, 0.2);
    color: #EB3847;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 800;
}

.myro-dash-tab-btn.active .myro-tab-badge {
    background: #EB3847;
    color: #FFFFFF;
}

/* Tab Contents */
.myro-dash-tab-content {
    display: none;
}

.myro-dash-tab-content.active {
    display: block;
    animation: myroFadeIn 0.3s ease-in-out;
}

@keyframes myroFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Metric Cards Grid */
.myro-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

.myro-metric-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(14, 42, 74, 0.08);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s ease;
}

.myro-metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.myro-metric-card.coral .myro-metric-icon {
    background: rgba(235, 56, 71, 0.12);
    color: #EB3847;
}

.myro-metric-card.navy .myro-metric-icon {
    background: rgba(14, 42, 74, 0.1);
    color: #0E2A4A;
}

.myro-metric-card.teal .myro-metric-icon {
    background: rgba(64, 123, 152, 0.12);
    color: #407B98;
}

.myro-metric-card.amber .myro-metric-icon {
    background: rgba(245, 158, 11, 0.12);
    color: #F59E0B;
}

.myro-metric-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    flex-shrink: 0;
}

.myro-metric-details {
    display: flex;
    flex-direction: column;
}

.myro-metric-label {
    color: #64748B;
    font-size: 0.85rem;
    font-weight: 700;
}

.myro-metric-value {
    color: #0E2A4A;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 2px 0;
}

.myro-metric-trend.positive {
    color: #10B981;
    font-size: 0.8rem;
    font-weight: 800;
}

.myro-metric-sub {
    color: #94A3B8;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Dash Card Container */
.myro-dash-card {
    background: #FFFFFF;
    border-radius: 22px;
    padding: 30px;
    border: 1px solid rgba(14, 42, 74, 0.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 28px;
}

.myro-dash-row-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.flex-2 {
    flex: 2;
    min-width: 320px;
}

.flex-1 {
    flex: 1;
    min-width: 280px;
}

.myro-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid #EAF4F2;
}

.myro-card-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: #0E2A4A;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.myro-card-subtitle {
    margin: 4px 0 0 0;
    color: #64748B;
    font-size: 0.88rem;
}

/* Dash Table */
.myro-table-responsive {
    overflow-x: auto;
}

.myro-dash-table {
    width: 100%;
    border-collapse: collapse;
    text-align: right;
    font-size: 0.92rem;
}

.myro-dash-table th {
    background: #F8FAFC;
    color: #475569;
    font-weight: 800;
    padding: 14px 16px;
    border-bottom: 2px solid #E2E8F0;
}

.myro-dash-table td {
    padding: 16px;
    border-bottom: 1px solid #F1F5F9;
    color: #1E293B;
}

.myro-status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
}

.myro-status-badge.success {
    background: rgba(16, 185, 129, 0.12);
    color: #10B981;
}

.myro-status-badge.warning {
    background: rgba(245, 158, 11, 0.12);
    color: #D97706;
}

/* QR Box */
.myro-qr-preview-box {
    text-align: center;
    padding: 20px;
    background: #F8FAFC;
    border-radius: 18px;
    border: 1px dashed #CBD5E1;
}

.myro-qr-frame {
    width: 160px;
    height: 160px;
    background: #FFFFFF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.myro-qr-link {
    display: block;
    font-weight: 900;
    color: #0E2A4A;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.myro-qr-desc {
    color: #64748B;
    font-size: 0.85rem;
    margin: 0 0 16px 0;
}

/* Category Filter Chips */
.myro-cat-filter-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 24px;
}

.myro-cat-chip {
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    color: #475569;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.myro-cat-chip:hover {
    background: #E2E8F0;
    color: #0E2A4A;
}

.myro-cat-chip.active {
    background: #EB3847;
    color: #FFFFFF;
    border-color: #EB3847;
    box-shadow: 0 4px 12px rgba(235, 56, 71, 0.25);
}

/* Products Admin Grid */
.myro-products-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

.myro-prod-admin-card {
    background: #FFFFFF;
    border-radius: 18px;
    border: 1px solid #E2E8F0;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.myro-prod-admin-card:hover {
    border-color: #EB3847;
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.myro-prod-img-wrapper {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.myro-prod-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.myro-prod-cat-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(14, 42, 74, 0.85);
    backdrop-filter: blur(4px);
    color: #FFFFFF;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 12px;
}

.myro-prod-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.myro-prod-title {
    font-size: 1.05rem;
    font-weight: 900;
    color: #0E2A4A;
    margin: 0 0 6px 0;
}

.myro-prod-desc {
    font-size: 0.82rem;
    color: #64748B;
    margin: 0 0 14px 0;
    line-height: 1.4;
    height: 38px;
    overflow: hidden;
}

.myro-price-edit-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F8FAFC;
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    margin-bottom: 14px;
}

.myro-price-edit-group label {
    font-size: 0.8rem;
    font-weight: 800;
    color: #475569;
}

.myro-price-input {
    width: 100px;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    padding: 4px 8px;
    font-weight: 900;
    color: #0E2A4A;
    text-align: center;
    font-size: 0.95rem;
}

.myro-prod-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px dashed #E2E8F0;
}

.myro-btn-icon-only {
    background: #F1F5F9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
}

.myro-btn-icon-only:hover {
    background: #EB3847;
    color: #FFFFFF;
}

/* Save Changes Bar */
.myro-save-changes-bar {
    background: #0E2A4A;
    color: #FFFFFF;
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-weight: 800;
}

.myro-menu-admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

/* Payment Badges */
.myro-pay-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 800;
}

.myro-pay-badge.online {
    background: rgba(16, 185, 129, 0.12);
    color: #10B981;
}

.myro-pay-badge.pos {
    background: rgba(14, 42, 74, 0.1);
    color: #0E2A4A;
}

.myro-pay-badge.cash {
    background: rgba(245, 158, 11, 0.12);
    color: #D97706;
}

.myro-btn-sm-ghost {
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 800;
    color: #0E2A4A;
    cursor: pointer;
    transition: all 0.2s ease;
}

.myro-btn-sm-ghost:hover {
    background: #0E2A4A;
    color: #FFFFFF;
}

.myro-filter-period-btns {
    display: flex;
    gap: 6px;
}

.myro-period-btn {
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    color: #475569;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.myro-period-btn.active,
.myro-period-btn:hover {
    background: #0E2A4A;
    color: #FFFFFF;
    border-color: #0E2A4A;
}

/* Toggle Switch */
.myro-toggle-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.myro-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.myro-slider {
    position: relative;
    width: 38px;
    height: 22px;
    background-color: #CBD5E1;
    transition: .3s;
    border-radius: 22px;
}

.myro-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

.myro-toggle-switch input:checked+.myro-slider {
    background-color: #10B981;
}

.myro-toggle-switch input:checked+.myro-slider:before {
    transform: translateX(16px);
}

.myro-toggle-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: #10B981;
}

.myro-text-danger {
    color: #EB3847 !important;
}

/* Settings Form */
.myro-form-row-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 18px;
}

.myro-form-control-dash {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0E2A4A;
    background: #F8FAFC;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.myro-form-control-dash:focus {
    outline: none;
    border-color: #EB3847;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(235, 56, 71, 0.15);
}

.myro-divider {
    border: 0;
    height: 1px;
    background: #EAF4F2;
    margin: 28px 0;
}

.myro-section-subheading {
    font-size: 1.1rem;
    font-weight: 900;
    color: #0E2A4A;
    margin: 0 0 18px 0;
}

.myro-form-actions-right {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

/* 5-Digit OTP Boxes Component (Vibrant Coral/Pink Theme) */
.myro-otp-boxes-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    margin: 16px auto 18px !important;
    direction: ltr !important;
    width: 100% !important;
}

.myro-otp-box {
    width: 44px !important;
    height: 50px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    border: 2px solid #CBD5E1;
    border-radius: 12px;
    font-size: 1.4rem;
    font-weight: 900;
    text-align: center;
    color: #0E2A4A;
    background: #F8FAFC;
    font-family: monospace;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: background-color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.25s ease, border-color 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
    display: inline-block !important;
    flex-shrink: 0 !important;
}

.myro-otp-box:focus {
    outline: none !important;
    border-color: #EB3847 !important;
    background: #FFFFFF;
    color: #0E2A4A;
    box-shadow: 0 0 0 4px rgba(235, 56, 71, 0.2), 0 4px 12px rgba(235, 56, 71, 0.12) !important;
    transform: translateY(-3px) scale(1.05) !important;
}

/* Filled State: Vibrant Coral Pink Background (#EB3847), Bold White Digit (#FFFFFF), Scale Pop Animation */
input.myro-otp-box.has-value,
.myro-otp-box.has-value {
    background: #EB3847 !important;
    background-color: #EB3847 !important;
    border-color: #EB3847 !important;
    color: #FFFFFF !important;
    font-weight: 900 !important;
    box-shadow: 0 6px 16px rgba(235, 56, 71, 0.35) !important;
    animation: myroDigitPop 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

input.myro-otp-box.has-value:focus,
.myro-otp-box.has-value:focus {
    background: #EB3847 !important;
    color: #FFFFFF !important;
    border-color: #D42B3A !important;
    box-shadow: 0 0 0 4px rgba(235, 56, 71, 0.35), 0 8px 18px rgba(235, 56, 71, 0.4) !important;
}

.myro-mobile-box::placeholder {
    color: #CBD5E1;
    font-weight: 600;
    opacity: 0.6;
}

.myro-input-hint {
    display: block;
    color: #64748B;
    font-size: 0.8rem;
    margin-top: 8px;
    font-weight: 500;
    text-align: center;
}

.myro-form-control:focus {
    outline: none;
    border-color: #EB3847;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(235, 56, 71, 0.12), 0 4px 12px rgba(235, 56, 71, 0.08);
}

.myro-input-icon {
    position: absolute;
    right: 16px;
    color: #94A3B8;
    font-size: 1.1rem;
    pointer-events: none;
}

.myro-input-hint {
    display: block;
    color: #64748B;
    font-size: 0.78rem;
    margin-top: 6px;
    font-weight: 500;
}

/* OTP Code Box */
.myro-otp-digits-wrapper {
    margin: 18px 0;
}

.myro-otp-control {
    width: 100%;
    height: 60px;
    border: 2.5px solid #CBD5E1;
    border-radius: 18px;
    font-size: 1.9rem;
    font-weight: 900;
    letter-spacing: 16px;
    text-align: center;
    color: #0E2A4A;
    background: #F8FAFC;
    direction: ltr;
    font-family: monospace;
    transition: all 0.25s ease;
}

.myro-otp-control:focus {
    outline: none;
    border-color: #EB3847;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(235, 56, 71, 0.15), 0 6px 18px rgba(235, 56, 71, 0.1);
}

.myro-highlight-phone {
    color: #EB3847;
    font-family: monospace;
    font-size: 1.1rem;
    background: #FFF5F5;
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid rgba(235, 56, 71, 0.2);
}

/* Timer Display */
.myro-timer-container {
    background: #EAF4F2;
    border: 1px solid #A0D8D6;
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #0E2A4A;
    font-weight: 800;
    margin-bottom: 20px;
}

.myro-timer-icon {
    color: #EB3847;
    font-size: 1.1rem;
}

#myro-timer-countdown {
    font-family: monospace;
    font-size: 1.15rem;
    font-weight: 900;
    color: #EB3847;
    direction: ltr;
}

/* Buttons */
.myro-btn-block {
    width: 100%;
    height: 52px;
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(235, 56, 71, 0.25);
}

.myro-btn-block:hover {
    box-shadow: 0 10px 25px rgba(235, 56, 71, 0.35);
    transform: translateY(-2px);
}

.myro-auth-actions-row {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.myro-btn-secondary {
    flex: 1;
    height: 44px;
    background: #F1F5F9;
    color: #0E2A4A;
    border: 1px solid #CBD5E1;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Vazirmatn', sans-serif;
}

.myro-btn-secondary:hover:not(:disabled) {
    background: #0E2A4A;
    color: #FFFFFF;
    border-color: #0E2A4A;
}

.myro-btn-disabled,
.myro-btn-secondary:disabled {
    opacity: 0.45;
    cursor: not-allowed !important;
    background: #E2E8F0 !important;
    color: #94A3B8 !important;
    border-color: #CBD5E1 !important;
}

.myro-btn-ghost {
    flex: 1;
    height: 44px;
    background: transparent;
    color: #64748B;
    border: 1.5px dashed #CBD5E1;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Vazirmatn', sans-serif;
}

.myro-btn-ghost:hover {
    background: #FFF5F5;
    color: #EB3847;
    border-color: #EB3847;
}

/* Footer Security Text */
.myro-modal-footer-security {
    margin-top: 22px;
    padding-top: 14px;
    border-top: 1px solid #F1F5F9;
    text-align: center;
    font-size: 0.78rem;
    color: #94A3B8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
}


.myro-alert-danger {
    background: #FEF2F2;
    border: 1px solid #FCA5A5;
    color: #991B1B;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

/* ==========================================================================
   MYroMenu SVG Icons System (Enhanced Size & Dynamic Color/Hover Response)
   ========================================================================== */
.myro-icon {
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    vertical-align: -0.2em;
    stroke: currentColor !important;
    fill: none;
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.25s ease, fill 0.25s ease, color 0.25s ease;
}

.myro-icon path,
.myro-icon circle,
.myro-icon rect,
.myro-icon line,
.myro-icon polygon {
    stroke: currentColor !important;
    transition: stroke 0.25s ease, fill 0.25s ease;
}

/* Sizing Utilities (Prominent, High-Impact Visuals) */
.myro-icon-xs {
    width: 0.9em;
    height: 0.9em;
}

.myro-icon-sm {
    width: 1.15em;
    height: 1.15em;
}

.myro-icon-md {
    width: 1.5em;
    height: 1.5em;
}

.myro-icon-lg {
    width: 1.85em;
    height: 1.85em;
}

.myro-icon-xl {
    width: 2.4em;
    height: 2.4em;
}

.myro-icon-2xl {
    width: 3.2em;
    height: 3.2em;
}

/* Social & Filled Icons Adjustment */
.myro-icon[class*="myro-icon-instagram"],
.myro-icon[class*="myro-icon-telegram"],
.myro-icon[class*="myro-icon-whatsapp"],
.myro-icon[class*="myro-icon-linkedin"],
.myro-icon[class*="myro-icon-google"],
.myro-icon[class*="myro-icon-github"],
.myro-icon[class*="myro-icon-twitter"],
.myro-icon[class*="myro-icon-facebook"],
.myro-icon[class*="myro-icon-tiktok"] {
    stroke: none !important;
    fill: currentColor !important;
}

.myro-icon[class*="myro-icon-instagram"] path,
.myro-icon[class*="myro-icon-telegram"] path,
.myro-icon[class*="myro-icon-whatsapp"] path,
.myro-icon[class*="myro-icon-linkedin"] path,
.myro-icon[class*="myro-icon-google"] path,
.myro-icon[class*="myro-icon-github"] path,
.myro-icon[class*="myro-icon-twitter"] path,
.myro-icon[class*="myro-icon-facebook"] path,
.myro-icon[class*="myro-icon-tiktok"] path {
    stroke: none !important;
    fill: currentColor !important;
}

/* Hover Response & Micro-Interactions: Icon color and scale dynamically change on hover */
a:hover .myro-icon,
button:hover .myro-icon,
.myro-btn-coral:hover .myro-icon,
.myro-btn-outline:hover .myro-icon,
.myro-social-btn:hover .myro-icon,
.myro-nav-link:hover .myro-icon,
.myro-footer-link:hover .myro-icon,
.myro-city-select-btn:hover .myro-icon,
.myro-pill:hover .myro-icon,
.myro-partner-card:hover .myro-icon,
.myro-feature-card:hover .myro-icon {
    stroke: currentColor !important;
    transform: scale(1.18);
}

.myro-social-btn:hover .myro-icon[class*="myro-icon-instagram"],
.myro-social-btn:hover .myro-icon[class*="myro-icon-telegram"],
.myro-social-btn:hover .myro-icon[class*="myro-icon-whatsapp"],
.myro-social-btn:hover .myro-icon[class*="myro-icon-linkedin"] {
    fill: currentColor !important;
    stroke: none !important;
    transform: scale(1.22);
}

/* ==========================================================================
   MYroMenu Comprehensive Mobile & Responsive Layout Enhancements
   ========================================================================== */

.myro-mobile-menu-toggle {
    display: none;
    background: #0E2A4A;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(14, 42, 74, 0.15);
    transition: all 0.2s ease;
}

.myro-mobile-menu-toggle * {
    color: #FFFFFF !important;
}

.myro-mobile-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(14, 42, 74, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.myro-mobile-drawer-backdrop.open {
    opacity: 1 !important;
    visibility: visible !important;
}

.myro-mobile-drawer {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #0E2A4A;
    z-index: 999999;
    padding: 28px 24px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    direction: rtl;
    box-sizing: border-box;
}

.myro-mobile-drawer.open {
    right: 0 !important;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .myro-nav-menu {
        gap: 20px;
    }

    .myro-hero {
        padding: 130px 20px 80px;
        gap: 40px;
    }

    .myro-hero-title {
        font-size: 2.6rem;
    }

    .myro-phone-frame {
        width: 290px;
        height: 580px;
    }
}

@media (max-width: 991px) {
    .myro-nav-menu {
        display: none !important;
    }

    .myro-mobile-menu-toggle {
        display: inline-flex !important;
    }

    .myro-hero {
        grid-template-columns: 1fr !important;
        text-align: center;
        padding: 120px 20px 60px;
        gap: 40px;
    }

    .myro-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .myro-hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .myro-hero-actions {
        justify-content: center;
    }

    .myro-hero-mockup {
        margin-top: 10px;
    }

    .myro-section {
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    .myro-navbar {
        padding: 10px 14px !important;
    }

    .myro-desktop-auth-btn {
        display: inline-flex !important;
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
        border-radius: 12px !important;
    }

    .myro-mobile-menu-toggle {
        display: none !important;
    }

    .myro-logo img {
        height: 38px !important;
    }

    .myro-logo span {
        font-size: 1.35rem !important;
    }

    .myro-btn-coral,
    .myro-btn-outline {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .myro-hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .myro-hero-sub {
        font-size: 0.95rem;
    }

    .myro-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .myro-hero-actions a {
        width: 100%;
        box-sizing: border-box;
    }

    .myro-phone-frame {
        width: 260px;
        height: 520px;
        border-width: 6px;
        border-radius: 36px;
    }

    /* Modal / Auth Popups Responsive Fixes */
    .myro-modal-backdrop {
        padding: 12px 12px 85px !important;
        align-items: center !important;
    }

    .myro-modal-container,
    .myro-modal-body,
    .myro-auth-card {
        width: 96% !important;
        max-width: 420px !important;
        margin: 0 auto !important;
        padding: 18px 16px 20px !important;
        max-height: calc(100vh - 105px) !important;
        overflow-y: auto !important;
        border-radius: 22px !important;
    }

    .myro-modal-badge-icon {
        width: 46px !important;
        height: 46px !important;
        margin: 0 auto 10px !important;
        border-radius: 14px !important;
    }

    .myro-modal-top-bar {
        margin-bottom: 12px !important;
    }

    .myro-modal-header {
        margin-bottom: 12px !important;
    }

    .myro-modal-title {
        font-size: 1.15rem !important;
        margin-bottom: 4px !important;
    }

    .myro-modal-subtitle {
        font-size: 0.8rem !important;
    }

    /* Mobile Box 11-digit Inputs Container */
    .myro-mobile-box-container {
        gap: 4px !important;
    }

    .myro-mobile-box {
        width: 28px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
    }

    /* Responsive Tables */
    .table-responsive {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .myro-navbar {
        padding: 10px 12px;
    }

    .myro-hero-title {
        font-size: 1.7rem;
    }

    .myro-hero-sub {
        font-size: 0.9rem;
    }

    .myro-btn-coral span,
    .myro-btn-outline span {
        font-size: 0.82rem;
    }

    .myro-phone-frame {
        width: 230px;
        height: 460px;
    }
}

/* ==========================================================================
   Mobile Bottom Nav — Floating Pill + Curved Notch
   Dark navy (#0E2A4A), icon-only, coral gradient active bubble
   ========================================================================== */

/* Hide on desktop */
.myro-mbnav {
    display: none !important;
}

@media (max-width: 768px) {
    .myro-mbnav {
        display: block !important;
        position: fixed !important;
        bottom: 12px !important;
        left: 14px !important;
        right: 14px !important;
        z-index: 999990 !important;
        direction: rtl;
        pointer-events: auto;
        height: 64px !important;
        overflow: visible !important;
    }

    body {
        padding-bottom: 85px !important;
    }
}

/* Pill wrapper */
.myro-mbnav-pill {
    position: relative;
    width: 100%;
    height: 64px;
    overflow: visible;
}

/* SVG background — the dark pill shape with notch */
.myro-mbnav-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    filter: drop-shadow(0 6px 20px rgba(14, 42, 74, 0.55));
    overflow: visible;
    display: block;
}

.myro-mbnav-path {
    transition: d 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Navigation items row — sits on top of SVG bg */
.myro-mbnav-items {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    display: flex !important;
    align-items: center !important;
    justify-content: space-around !important;
    padding: 0 16px;
    box-sizing: border-box;
    z-index: 3;
}

/* Single tab item */
.myro-mbnav-tab {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 1 0%;
    position: relative;
    cursor: pointer;
    text-decoration: none !important;
    -webkit-tap-highlight-color: transparent;
    height: 64px;
    max-width: 72px;
}

/* Icon bubble — the circle that holds the SVG icon */
.myro-mbnav-bubble {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
    overflow: hidden;
    flex-shrink: 0;
}

/* SVG icon inside bubble — FORCE small size */
.myro-mbnav-bubble svg {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    stroke: rgba(255, 255, 255, 0.7) !important;
    fill: none !important;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    display: block;
}

/* ---- Active tab: floating gradient circle above the bar ---- */
.myro-mbnav-tab.active .myro-mbnav-bubble {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
    background: linear-gradient(135deg, #EB3847 0%, #FF5263 100%) !important;
    transform: translateY(-18px);
    box-shadow:
        0 8px 24px rgba(235, 56, 71, 0.5),
        0 0 0 4px #0E2A4A !important;
}

.myro-mbnav-tab.active .myro-mbnav-bubble svg {
    stroke: #FFFFFF !important;
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
}

/* Hover/touch on inactive tabs */

/* ==========================================================================
   Sleek Mobile Phone Input Component (Registration / Login Modal)
   ========================================================================== */
.myro-phone-input-wrapper {
    position: relative;
    display: flex !important;
    align-items: center !important;
    background: #F8FAFC;
    border: 2px solid #CBD5E1;
    border-radius: 16px;
    padding: 5px 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    direction: ltr !important;
    margin: 18px 0 14px;
    box-sizing: border-box;
    width: 100%;
}

.myro-phone-input-wrapper:focus-within {
    border-color: #EB3847;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(235, 56, 71, 0.12), 0 4px 16px rgba(14, 42, 74, 0.08);
}

.myro-phone-icon-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px;
    height: 42px;
    background: rgba(14, 42, 74, 0.08);
    color: #0E2A4A;
    border-radius: 12px;
    flex-shrink: 0;
    margin-right: 4px;
}

.myro-phone-icon-badge svg {
    width: 20px;
    height: 20px;
    stroke: #0E2A4A !important;
}

.myro-phone-input {
    flex: 1 1 0%;
    border: none !important;
    background: transparent !important;
    outline: none !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    letter-spacing: 2.5px !important;
    color: #0E2A4A !important;
    padding: 8px 42px 8px 0 !important;
    height: 44px !important;
    box-shadow: none !important;
    font-family: 'Vazirmatn', monospace, sans-serif !important;
    direction: ltr !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.myro-phone-input::placeholder {
    color: #94A3B8;
    letter-spacing: 1.5px;
    font-weight: 500;
    opacity: 0.7;
}

/* ==========================================================================
   Centered Modal Brand Header (Logo Icon alongside Brand Text)
   ========================================================================== */
.myro-modal-top-bar {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 20px !important;
    width: 100% !important;
}

.myro-modal-brand {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0px !important;
    direction: rtl !important;
}

.myro-modal-logo-img {
    height: 48px !important;
    width: auto !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
    margin-left: -4px !important;
}

.myro-modal-brand-text {
    font-size: 1.35rem !important;
    font-weight: 900 !important;
    color: #0E2A4A !important;
    font-family: 'Vazirmatn', sans-serif !important;
    letter-spacing: -0.02em !important;
    line-height: 1 !important;
}

/* ==========================================================================
   OTP Morphing Rectangle & Shake Animation Controller
   ========================================================================== */
.myro-otp-boxes-wrapper {
    position: relative !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 16px auto 18px !important;
    width: 100% !important;
    height: 52px !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-sizing: border-box !important;
}

.myro-otp-box {
    width: 44px !important;
    height: 50px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    display: inline-block !important;
    text-align: center !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    border-radius: 12px !important;
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 2px solid #CBD5E1 !important;
    background: #FFFFFF !important;
    color: #0E2A4A !important;
}

.myro-otp-box.has-value {
    background: #EB3847 !important;
    color: #FFFFFF !important;
    border-color: #EB3847 !important;
    transform: scale(1.04) !important;
}

/* Status Overlay Pill Container */
.myro-otp-status-overlay {
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 16px !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
    font-family: 'Vazirmatn', sans-serif !important;
    direction: rtl !important;
    opacity: 0 !important;
    transform: scale(0.85) !important;
    pointer-events: none !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 10 !important;
}

/* --- Morphing Success State (Green Rectangle) --- */
.myro-otp-boxes-wrapper.is-success .myro-otp-box {
    opacity: 0 !important;
    transform: scale(0.5) !important;
}

.myro-otp-boxes-wrapper.is-success .myro-otp-status-overlay {
    opacity: 1 !important;
    transform: scale(1) !important;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35) !important;
}

/* --- Morphing Error State (Red Rectangle + Shake) --- */
.myro-otp-boxes-wrapper.is-error .myro-otp-box {
    opacity: 0 !important;
    transform: scale(0.5) !important;
}

.myro-otp-boxes-wrapper.is-error .myro-otp-status-overlay {
    opacity: 1 !important;
    transform: scale(1) !important;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%) !important;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.35) !important;
    animation: myroOtpShake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both !important;
}

/* Horizontal Shake Keyframes */
@keyframes myroOtpShake {
    10%, 90% { transform: translate3d(-3px, 0, 0) scale(1); }
    20%, 80% { transform: translate3d(5px, 0, 0) scale(1); }
    30%, 50%, 70% { transform: translate3d(-7px, 0, 0) scale(1); }
    40%, 60% { transform: translate3d(7px, 0, 0) scale(1); }
}

/* ==========================================================================
   Registration Wizard Mobile Responsive Layout (page-register.php)
   ========================================================================== */
.myro-reg-wizard-container {
    padding: 40px 16px 100px;
    box-sizing: border-box;
    width: 100%;
}

.myro-wiz-title-banner {
    background: linear-gradient(135deg, #0E2A4A 0%, #1E3A8A 100%);
    color: #FFF;
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 10px 25px rgba(14,42,74,0.15);
    text-align: center;
}

.myro-wiz-steps-bar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    background: #FFF;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid #E2E8F0;
    margin-bottom: 24px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.03);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.myro-wiz-steps-bar::-webkit-scrollbar {
    display: none;
}

.myro-wiz-step {
    flex: 1 0 auto;
    min-width: 110px;
    text-align: center;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    user-select: none;
}

.myro-wiz-main-card {
    background: #FFF;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    padding: 32px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.myro-wiz-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

@media (max-width: 768px) {
    .myro-reg-wizard-container {
        padding: 16px 10px 110px !important;
    }

    .myro-wiz-title-banner {
        padding: 18px 14px !important;
        border-radius: 16px !important;
        margin-bottom: 16px !important;
    }

    .myro-wiz-title-banner h1 {
        font-size: 1.25rem !important;
        margin-bottom: 6px !important;
    }

    .myro-wiz-steps-bar {
        padding: 8px !important;
        border-radius: 14px !important;
        margin-bottom: 16px !important;
        gap: 6px !important;
    }

    .myro-wiz-step {
        min-width: 95px !important;
        padding: 8px 10px !important;
        font-size: 0.78rem !important;
        border-radius: 10px !important;
    }

    .myro-wiz-main-card {
        padding: 18px 14px 22px !important;
        border-radius: 16px !important;
    }

    .myro-wiz-actions-row {
        flex-direction: column-reverse !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .myro-wiz-actions-row button,
    .myro-wiz-actions-row a {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 12px 16px !important;
    }

    .myro-physical-bank-card {
        padding: 18px 16px !important;
        border-radius: 16px !important;
    }

    .myro-bank-card-number {
        font-size: 1.25rem !important;
        letter-spacing: 1px !important;
    }
}

/* Payment Tabs Styling & Mobile Overflow Protection */
.myro-pay-tabs-wrapper {
    display: flex !important;
    gap: 10px !important;
    margin-bottom: 24px !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.myro-pay-tab-btn {
    flex: 1 1 0% !important;
    padding: 12px 14px !important;
    border-radius: 12px !important;
    border: 2px solid #E2E8F0 !important;
    background: #F8FAFC !important;
    color: #64748B !important;
    font-weight: 800 !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    position: relative !important;
    text-align: center !important;
    box-sizing: border-box !important;
    transition: all 0.2s ease !important;
}

.myro-pay-tab-btn.active {
    border-color: #0E2A4A !important;
    background: #0E2A4A !important;
    color: #FFFFFF !important;
}

.myro-soon-badge {
    position: absolute !important;
    top: -8px !important;
    left: 8px !important;
    background: #F59E0B !important;
    color: #FFFFFF !important;
    font-size: 0.7rem !important;
    font-weight: 900 !important;
    padding: 2px 6px !important;
    border-radius: 8px !important;
    line-height: 1 !important;
}

.myro-bank-card-wrapper {
    width: 100% !important;
    max-width: 500px !important;
    margin: 0 auto 24px !important;
    box-sizing: border-box !important;
    perspective: 1000px !important;
}

/* Global & Wizard Mobile Viewport Overflow Protection */
body,
.myro-reg-wizard-container,
.myro-wiz-main-card {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
}

@media (max-width: 600px) {
    .myro-pay-tabs-wrapper {
        flex-direction: column !important;
        gap: 8px !important;
    }

    .myro-pay-tab-btn {
        width: 100% !important;
        flex: auto !important;
    }

    .myro-bank-card-wrapper {
        max-width: 100% !important;
    }
}