/* =========================================================
   YALLA3RB — PERFECT PANEL THEME
   FULL STYLE
   ========================================================= */

:root {
    --y3-bg: #03050d;
    --y3-bg-2: #070b1f;
    --y3-card: #080d20;
    --y3-card-2: #0b1128;
    --y3-border: #172b57;
    --y3-border-light: #203d73;

    --y3-blue: #1237ff;
    --y3-blue-2: #176bff;
    --y3-cyan: #19d9ff;
    --y3-purple: #8b2cff;
    --y3-magenta: #d92cff;

    --y3-white: #f5f7ff;
    --y3-text: #dce3f7;
    --y3-muted: #8f9ab8;

    --y3-header: 74px;
    --y3-bottom: 76px;
}


/* =========================================================
   GLOBAL
   ========================================================= */

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body.yalla3rb-body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 85% -10%,
            rgba(25, 217, 255, .09),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 20%,
            rgba(139, 44, 255, .07),
            transparent 28%
        ),
        var(--y3-bg);

    color: var(--y3-text);

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Tahoma,
        Arial,
        sans-serif;
}

.yalla3rb-body * {
    box-sizing: border-box;
}

.yalla3rb-body a {
    text-decoration: none;
}

.yalla3rb-body button,
.yalla3rb-body input,
.yalla3rb-body select,
.yalla3rb-body textarea {
    font-family: inherit;
}


/* =========================================================
   HIDE ORIGINAL PERFECT PANEL NAVBAR
   ========================================================= */

.yalla3rb-body > .navbar {
    display: none !important;
}


/* =========================================================
   HEADER
   ========================================================= */

.y3-header {
    position: sticky;
    top: 0;

    z-index: 900;

    height: var(--y3-header);

    background: rgba(3, 5, 13, .94);

    border-bottom: 1px solid rgba(25, 217, 255, .09);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.y3-header-inner {
    width: min(1380px, calc(100% - 40px));

    height: 100%;

    margin: auto;

    display: flex;
    align-items: center;

    gap: 28px;
}


/* =========================================================
   LOGO
   ========================================================= */

.y3-logo {
    flex: 0 0 auto;

    min-width: 150px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--y3-white);

    font-size: 20px;
    font-weight: 800;
}

.y3-logo img {
    display: block;

    width: auto;
    height: auto;

    max-width: 150px;
    max-height: 46px;
}

.y3-logo span {
    color: var(--y3-white);
}


/* =========================================================
   DESKTOP NAV
   ========================================================= */

.y3-desktop-nav {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 4px;
}

.y3-nav-link {
    position: relative;

    min-height: 42px;

    padding: 0 15px;

    display: flex;
    align-items: center;

    gap: 8px;

    border-radius: 11px;

    color: var(--y3-muted);

    font-size: 14px;
    font-weight: 600;

    transition: .2s ease;
}

.y3-nav-link i {
    font-size: 14px;
}

.y3-nav-link:hover {
    color: var(--y3-white);

    background: rgba(23, 107, 255, .08);
}

.y3-nav-link.active {
    color: var(--y3-cyan);

    background:
        linear-gradient(
            135deg,
            rgba(18, 55, 255, .16),
            rgba(25, 217, 255, .06)
        );
}

.y3-nav-link.active::after {
    content: "";

    position: absolute;

    right: 14px;
    left: 14px;
    bottom: 0;

    height: 2px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--y3-blue),
            var(--y3-cyan)
        );
}


/* =========================================================
   BALANCE
   ========================================================= */

.y3-balance {
    flex: 0 0 auto;

    min-width: 130px;

    padding: 8px 13px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;

    border: 1px solid var(--y3-border);

    border-radius: 12px;

    background: rgba(8, 13, 32, .8);

    transition: .2s ease;
}

.y3-balance:hover {
    border-color: rgba(25, 217, 255, .35);
}

.y3-balance-label {
    color: var(--y3-muted);

    font-size: 11px;
}

.y3-balance strong {
    color: var(--y3-cyan);

    font-size: 15px;
    font-weight: 800;
}


/* =========================================================
   MENU BUTTON
   ========================================================= */

.y3-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 1px solid var(--y3-border);

    border-radius: 12px;

    background: var(--y3-card);

    cursor: pointer;
}

.y3-menu-button span {
    display: block;

    width: 19px;
    height: 2px;

    margin: 4px auto;

    border-radius: 10px;

    background: var(--y3-white);
}


/* =========================================================
   MAIN
   ========================================================= */

.y3-main {
    width: min(1380px, calc(100% - 40px));

    min-height: calc(100vh - var(--y3-header));

    margin: 0 auto;

    padding: 30px 0 60px;
}

.y3-main .container,
.y3-main .container-fluid {
    width: 100%;
    max-width: 100%;

    padding-left: 0;
    padding-right: 0;
}

.y3-main .row {
    margin-left: 0;
    margin-right: 0;
}

.y3-main [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}


/* =========================================================
   DRAWER
   ========================================================= */

.y3-drawer-overlay {
    position: fixed;

    inset: 0;

    z-index: 1000;

    background: rgba(0, 0, 0, .65);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .25s ease,
        visibility .25s ease;

    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.y3-drawer {
    position: fixed;

    top: 0;
    right: 0;

    z-index: 1100;

    width: min(340px, 88vw);
    height: 100vh;

    overflow-y: auto;

    background:
        linear-gradient(
            180deg,
            #070b1f 0%,
            #03050d 100%
        );

    border-left: 1px solid rgba(25, 217, 255, .13);

    transform: translateX(105%);

    transition:
        transform .3s cubic-bezier(.4, 0, .2, 1);

    box-shadow:
        -20px 0 70px rgba(0, 0, 0, .5);
}

.y3-drawer.open {
    transform: translateX(0);
}

.y3-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

body.y3-drawer-open {
    overflow: hidden;
}


/* =========================================================
   DRAWER HEADER
   ========================================================= */

.y3-drawer-header {
    min-height: 84px;

    padding: 18px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(255,255,255,.06);
}

.y3-user-box {
    display: flex;
    align-items: center;

    gap: 12px;
}

.y3-user-avatar {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    color: white;

    font-size: 17px;
    font-weight: 800;

    background:
        linear-gradient(
            135deg,
            var(--y3-blue),
            var(--y3-purple)
        );

    box-shadow:
        0 0 25px rgba(23,107,255,.25);
}

.y3-user-info {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.y3-user-info strong {
    max-width: 170px;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    color: var(--y3-white);

    font-size: 14px;
}

.y3-user-info span {
    color: var(--y3-cyan);

    font-size: 12px;
    font-weight: 700;
}

.y3-drawer-close {
    width: 38px;
    height: 38px;

    padding: 0;

    border: 1px solid var(--y3-border);

    border-radius: 11px;

    background: rgba(255,255,255,.03);

    color: var(--y3-muted);

    font-size: 25px;
    line-height: 1;

    cursor: pointer;
}

.y3-drawer-close:hover {
    color: white;

    border-color: var(--y3-cyan);
}


/* =========================================================
   DRAWER BALANCE
   ========================================================= */

.y3-drawer-balance {
    margin: 18px;

    padding: 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: 1px solid rgba(25,217,255,.16);

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(18,55,255,.12),
            rgba(139,44,255,.08)
        );
}

.y3-drawer-balance div {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.y3-drawer-balance div span {
    color: var(--y3-muted);

    font-size: 11px;
}

.y3-drawer-balance strong {
    color: var(--y3-cyan);

    font-size: 16px;
}

.y3-drawer-balance-arrow {
    color: var(--y3-cyan) !important;

    font-size: 20px !important;
}


/* =========================================================
   DRAWER MENU
   ========================================================= */

.y3-drawer-section {
    padding: 0 14px 18px;
}

.y3-drawer-title {
    padding: 7px 7px 10px;

    color: #66718f;

    font-size: 11px;
    font-weight: 700;
}

.y3-drawer-menu {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.y3-drawer-link {
    min-height: 48px;

    padding: 0 11px;

    display: flex;
    align-items: center;

    gap: 11px;

    border-radius: 12px;

    color: var(--y3-muted);

    transition: .2s ease;
}

.y3-drawer-link:hover {
    color: var(--y3-white);

    background: rgba(255,255,255,.035);
}

.y3-drawer-link.active {
    color: var(--y3-cyan);

    background:
        linear-gradient(
            90deg,
            rgba(18,55,255,.17),
            rgba(25,217,255,.05)
        );
}

.y3-drawer-icon {
    width: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: inherit;

    font-size: 14px;
}

.y3-drawer-text {
    flex: 1;

    font-size: 13px;
    font-weight: 600;
}

.y3-drawer-arrow {
    color: #4c5876;

    font-size: 20px;
}

.y3-account-section {
    padding-top: 4px;

    border-top: 1px solid rgba(255,255,255,.05);
}


/* =========================================================
   BOTTOM NAV
   ========================================================= */

.y3-bottom-nav {
    display: none;
}


/* =========================================================
   GUEST
   ========================================================= */

.y3-guest-header .y3-header-inner {
    justify-content: space-between;
}

.y3-guest-actions {
    display: flex;
    align-items: center;

    gap: 10px;
}

.y3-language {
    padding: 8px 11px;

    border: 1px solid var(--y3-border);

    border-radius: 10px;

    color: var(--y3-muted);

    font-size: 12px;
}

.y3-login-link {
    min-height: 40px;

    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    color: white;

    font-size: 13px;
    font-weight: 700;

    background:
        linear-gradient(
            135deg,
            var(--y3-blue),
            var(--y3-purple)
        );
}


/* =========================================================
   PERFECT PANEL BASE
   ========================================================= */

.y3-main .well,
.y3-main .panel,
.y3-main .card {
    background: var(--y3-card);

    border: 1px solid var(--y3-border);

    border-radius: 16px;

    box-shadow: none;
}

.y3-main .panel-heading,
.y3-main .panel-footer {
    background: transparent;

    border-color: rgba(255,255,255,.06);
}

.y3-main label {
    margin-bottom: 8px;

    color: #aeb8d1;

    font-size: 13px;
    font-weight: 600;
}


/* =========================================================
   PERFECT PANEL FORMS
   ========================================================= */

.y3-main .form-control {
    height: 48px;

    background: #060b1c;

    border: 1px solid #193563;

    border-radius: 12px;

    color: var(--y3-white);

    box-shadow: none;

    transition: .2s ease;
}

.y3-main .form-control:focus {
    border-color: var(--y3-cyan);

    box-shadow:
        0 0 0 3px rgba(25,217,255,.08);

    outline: none;
}

.y3-main textarea.form-control {
    height: auto;
    min-height: 110px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.y3-main .btn-primary {
    min-height: 48px;

    border: 0;

    border-radius: 12px;

    color: white;

    font-weight: 700;

    background:
        linear-gradient(
            135deg,
            var(--y3-blue),
            var(--y3-purple)
        );

    box-shadow:
        0 8px 25px rgba(18,55,255,.18);

    transition: .2s ease;
}

.y3-main .btn-primary:hover {
    transform: translateY(-1px);

    box-shadow:
        0 12px 32px rgba(18,55,255,.28);
}


/* =========================================================
   NEW ORDER
   ========================================================= */

.y3-order-container {
    width: 100%;
    max-width: 820px;

    margin: 0 auto;
}

.y3-order-card {
    padding: 24px;

    background: #070b1f;

    border: 1px solid #172b57;

    border-radius: 18px;
}

.y3-order-field {
    margin-bottom: 18px;
}

.y3-field-label {
    display: block;

    margin-bottom: 8px;

    color: #cbd4ec;

    font-size: 13px;
    font-weight: 700;
}

.y3-field-label i {
    margin-left: 6px;

    color: var(--y3-cyan);
}

.y3-select-box {
    position: relative;
}


/* =========================================================
   SEARCH
   ========================================================= */

.y3-search-field {
    padding-bottom: 18px;

    margin-bottom: 20px;

    border-bottom: 1px solid rgba(255,255,255,.06);
}

.y3-search-box .input-wrapper {
    position: relative;
}

.y3-search-box .form-control {
    padding-right: 43px;
}

.y3-search-icon {
    position: absolute;

    top: 50%;
    right: 15px;

    z-index: 2;

    transform: translateY(-50%);

    color: var(--y3-cyan);
}


/* =========================================================
   SELECT2
   ========================================================= */

.select2-container {
    width: 100% !important;
}

.select2-container--default
.select2-selection--single {
    height: 52px !important;

    display: flex !important;
    align-items: center !important;

    padding: 0 14px !important;

    background: #050918 !important;

    border: 1px solid #193563 !important;

    border-radius: 13px !important;

    box-shadow: none !important;
}

.select2-container--default
.select2-selection--single
.select2-selection__rendered {
    width: 100% !important;

    padding: 0 !important;

    color: #eef2ff !important;

    font-size: 13px !important;
    font-weight: 600 !important;

    line-height: 50px !important;

    text-align: right !important;
}

.select2-container--default
.select2-selection--single
.select2-selection__arrow {
    top: 50% !important;

    right: 12px !important;

    transform: translateY(-50%) !important;
}


/* =========================================================
   DROPDOWN
   ========================================================= */

.select2-dropdown {
    margin-top: 6px !important;

    overflow: hidden !important;

    background: #070b1f !important;

    border: 1px solid #193563 !important;

    border-radius: 14px !important;

    box-shadow:
        0 18px 45px rgba(0,0,0,.55) !important;
}

.select2-search--dropdown {
    padding: 10px !important;

    background: #070b1f !important;

    border-bottom: 1px solid rgba(255,255,255,.06);
}

.select2-search--dropdown
.select2-search__field {
    width: 100% !important;

    height: 42px !important;

    padding: 0 12px !important;

    background: #050918 !important;

    border: 1px solid #193563 !important;

    border-radius: 9px !important;

    color: #fff !important;

    outline: none !important;
}


/* =========================================================
   SERVICES LIST
   ========================================================= */

.select2-results {
    padding: 0 !important;
}

.select2-results__options {
    max-height: 330px !important;

    overflow-y: auto !important;
}

.select2-results__option {
    display: block !important;

    width: 100% !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 13px 16px !important;

    background: #070b1f !important;
    color: #cfd7eb !important;

    border: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.065) !important;
    border-radius: 0 !important;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Tahoma,
        Arial,
        sans-serif !important;

    font-size: 13px !important;
    font-weight: 500 !important;

    line-height: 1.6 !important;
    text-align: right !important;
    white-space: normal !important;

    opacity: 1 !important;
    box-shadow: none !important;
    cursor: pointer !important;
}

.select2-results__option:last-child {
    border-bottom: 0 !important;
}

.select2-results__option--highlighted {
    background:
        linear-gradient(
            90deg,
            rgba(18,55,255,.20),
            rgba(25,217,255,.07)
        ) !important;

    color: #fff !important;
}

.select2-results__option[aria-selected="true"] {
    background: rgba(25,217,255,.07) !important;

    color: var(--y3-cyan) !important;

    font-weight: 700 !important;
}

.select2-results__option[aria-selected="true"].select2-results__option--highlighted {
    background:
        linear-gradient(
            90deg,
            rgba(18,55,255,.28),
            rgba(25,217,255,.10)
        ) !important;

    color: #fff !important;
}


/* =========================================================
   DYNAMIC PERFECT PANEL FIELDS
   ========================================================= */

#fields {
    margin-top: 4px;
}

#fields .form-group {
    margin-bottom: 18px;
}

#fields .control-label {
    display: block;

    margin-bottom: 8px;

    color: #cbd4ec;

    font-size: 13px;
    font-weight: 700;
}

#fields .form-control {
    width: 100%;

    min-height: 48px;

    background: #050918;

    border: 1px solid #193563;

    border-radius: 12px;

    color: #f5f7ff;

    box-shadow: none;
}


/* =========================================================
   SERVICE DESCRIPTION
   ========================================================= */

#service_description {
    margin-bottom: 18px;

    padding: 15px;

    background: #050918;

    border: 1px solid #172b57;

    border-radius: 13px;
}

#service_description .panel-body {
    padding: 0;

    border: 0 !important;

    color: #aeb8d1;

    line-height: 1.8;
}


/* =========================================================
   CHARGE
   ========================================================= */

.y3-charge-box {
    min-height: 62px;

    margin-top: 20px;
    margin-bottom: 18px;

    padding: 0 17px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background:
        linear-gradient(
            90deg,
            rgba(18,55,255,.09),
            rgba(25,217,255,.035)
        );

    border: 1px solid rgba(25,217,255,.14);

    border-radius: 13px;
}

.y3-charge-box span {
    color: #929db9;

    font-size: 13px;
    font-weight: 600;
}

.y3-charge-box span i {
    margin-left: 6px;

    color: var(--y3-cyan);
}

.y3-charge-box strong {
    color: var(--y3-cyan);

    font-size: 17px;
    font-weight: 800;
}


/* =========================================================
   TERMS
   ========================================================= */

.y3-terms {
    margin-bottom: 18px;
}

.y3-terms label {
    display: flex;
    align-items: flex-start;

    gap: 8px;

    color: #8f9ab8;

    font-size: 12px;
}

.y3-terms input {
    margin-top: 2px;
}

.y3-terms a {
    color: var(--y3-cyan);
}


/* =========================================================
   SUBMIT
   ========================================================= */

.y3-submit-order {
    width: 100%;

    min-height: 52px;

    border: 0 !important;

    border-radius: 13px !important;

    color: #fff !important;

    font-size: 14px;

    font-weight: 800;

    background:
        linear-gradient(
            135deg,
            var(--y3-blue),
            var(--y3-purple)
        ) !important;

    box-shadow:
        0 10px 30px rgba(18,55,255,.18);
}


/* =========================================================
   EXTRA CONTENT
   ========================================================= */

.y3-extra-content {
    margin-top: 18px;

    padding: 18px;

    background: #070b1f;

    border: 1px solid #172b57;

    border-radius: 15px;

    color: #929db9;
}

.y3-extra-body {
    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   ALERTS
   ========================================================= */

.y3-alert {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 13px;

    margin-bottom: 18px;

    padding: 16px;

    background: #080d20;

    border: 1px solid #172b57;

    border-radius: 14px;
}

.y3-alert-icon {
    color: var(--y3-cyan);

    font-size: 20px;
}

.y3-alert-danger .y3-alert-icon {
    color: #ff5277;
}

.y3-alert-content {
    flex: 1;

    color: #cbd4ec;

    font-size: 13px;

    line-height: 1.7;
}

.y3-alert-content strong {
    display: block;

    margin-bottom: 10px;

    color: #fff;
}

.y3-alert-close {
    padding: 0;

    border: 0;

    background: none;

    color: #68748f;

    font-size: 22px;

    cursor: pointer;
}

.y3-success-details {
    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 8px 20px;
}

.y3-success-details div {
    display: flex;

    justify-content: space-between;

    gap: 10px;

    padding-bottom: 7px;

    border-bottom: 1px solid rgba(255,255,255,.05);
}

.y3-success-details span {
    color: #7e89a5;
}

.y3-success-details b {
    color: #dce3f7;

    text-align: left;
}


/* =========================================================
   TABLES
   ========================================================= */

.y3-main .table {
    color: var(--y3-text);
}

.y3-main .table > thead > tr > th {
    color: var(--y3-muted);

    border-bottom-color: var(--y3-border);

    font-size: 12px;
}

.y3-main .table > tbody > tr > td {
    border-top-color: rgba(255,255,255,.05);

    vertical-align: middle;
}


/* =========================================================
   NOTIFICATIONS
   ========================================================= */

#notify-wrapper {
    position: fixed;

    top: 90px;
    right: 20px;

    z-index: 2000;

    max-width: min(420px, calc(100% - 40px));
}


/* =========================================================
   SCROLLBARS
   ========================================================= */

.y3-drawer::-webkit-scrollbar,
.select2-results__options::-webkit-scrollbar {
    width: 4px;
}

.y3-drawer::-webkit-scrollbar-track,
.select2-results__options::-webkit-scrollbar-track {
    background: transparent;
}

.y3-drawer::-webkit-scrollbar-thumb,
.select2-results__options::-webkit-scrollbar-thumb {
    background: #193563;

    border-radius: 10px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    :root {
        --y3-header: 62px;
        --y3-bottom: 72px;
    }


    /* HEADER */

    .y3-header {
        height: var(--y3-header);
    }

    .y3-header-inner {
        width: calc(100% - 24px);

        gap: 10px;

        justify-content: space-between;
    }

    .y3-menu-button {
        display: block;
    }

    .y3-desktop-nav {
        display: none;
    }

    .y3-logo {
        position: absolute;

        left: 50%;

        min-width: 0;

        transform: translateX(-50%);
    }

    .y3-logo img {
        max-width: 125px;
        max-height: 36px;
    }

    .y3-logo span {
        font-size: 17px;
    }

    .y3-balance {
        min-width: auto;

        padding: 6px 9px;

        border-radius: 10px;
    }

    .y3-balance-label {
        font-size: 9px;
    }

    .y3-balance strong {
        font-size: 12px;
    }


    /* MAIN */

    .y3-main {
        width: 100%;

        padding:
            16px
            16px
            calc(var(--y3-bottom) + 25px);
    }

    .y3-main [class*="col-"] {
        width: 100%;

        padding-left: 0;
        padding-right: 0;
    }


    /* DRAWER */

    .y3-drawer {
        width: min(330px, 88vw);
    }


    /* BOTTOM NAV */

    .y3-bottom-nav {
        position: fixed;

        right: 0;
        bottom: 0;
        left: 0;

        z-index: 950;

        height: var(--y3-bottom);

        padding:
            7px
            7px
            calc(7px + env(safe-area-inset-bottom));

        display: grid;

        grid-template-columns: repeat(5,1fr);

        background: rgba(4,7,17,.97);

        border-top: 1px solid rgba(25,217,255,.1);

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .y3-bottom-item {
        position: relative;

        min-width: 0;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 4px;

        color: #727e9c;

        font-size: 9px;

        font-weight: 600;
    }

    .y3-bottom-icon {
        position: relative;

        width: 29px;
        height: 29px;

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 14px;
    }

    .y3-bottom-item:hover,
    .y3-bottom-item:focus {
        color: var(--y3-cyan);
    }

    .y3-bottom-order {
        color: var(--y3-white);
    }

    .y3-order-circle {
        width: 43px;
        height: 43px;

        margin-top: -20px;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 4px solid var(--y3-bg);

        border-radius: 50%;

        color: white;

        font-size: 18px;

        background:
            linear-gradient(
                135deg,
                var(--y3-blue),
                var(--y3-purple)
            );

        box-shadow:
            0 0 25px rgba(18,55,255,.35);
    }

    .y3-ticket-badge {
        position: absolute;

        top: -3px;
        right: -5px;

        min-width: 15px;
        height: 15px;

        padding: 0 4px;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 2px solid var(--y3-bg);

        border-radius: 20px;

        color: white;

        font-size: 8px;

        background: #ff3b68;
    }


    /* ORDER */

    .y3-order-container {
        max-width: none;
    }

    .y3-order-card {
        padding: 15px;

        border-radius: 15px;
    }

    .y3-order-field {
        margin-bottom: 15px;
    }

    .y3-order-card .form-control {
        height: 50px;

        font-size: 12px;
    }


    /* SELECT */

    .select2-container--default
    .select2-selection--single {
        height: 50px !important;
    }

    .select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
        font-size: 12px !important;

        line-height: 48px !important;
    }

    .select2-results__options {
        max-height: 300px !important;
    }
    .select2-results__option {
        padding: 14px 15px !important;
        font-size: 12px !important;
        line-height: 1.7 !important;
    }


    /* CHARGE */

    .y3-charge-box {
        min-height: 58px;

        padding: 0 13px;
    }


    /* ALERT */

    #notify-wrapper {
        top: 72px;

        right: 12px;

        max-width: calc(100% - 24px);
    }

    .y3-success-details {
        grid-template-columns: 1fr;
    }


    /* GUEST */

    .y3-language {
        display: none;
    }

    .y3-login-link {
        min-height: 36px;

        padding: 0 13px;

        font-size: 11px;
    }

    .guest-user .y3-main {
        padding-bottom: 30px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .y3-header-inner {
        width: calc(100% - 18px);
    }

    .y3-logo img {
        max-width: 105px;
    }

    .y3-balance {
        padding: 5px 7px;
    }

    .y3-bottom-item {
        font-size: 8px;
    }

    .y3-bottom-icon {
        font-size: 13px;
    }

    .y3-order-circle {
        width: 40px;
        height: 40px;
    }
}


/* =========================================================
   RTL
   ========================================================= */

html[dir="rtl"] .y3-drawer {
    right: 0;
    left: auto;

    transform: translateX(105%);

    border-left: 1px solid rgba(25,217,255,.13);
    border-right: 0;
}

html[dir="rtl"] .y3-drawer.open {
    transform: translateX(0);
}

html[dir="rtl"] .y3-nav-link.active::after {
    right: 14px;
    left: 14px;
}


/* =========================================================
   SELECTION
   ========================================================= */

.yalla3rb-body ::selection {
    color: white;

    background: var(--y3-blue);
}


/* =========================================================
   DESKTOP DRAWER HIDDEN
   ========================================================= */

@media (min-width: 768px) {

    .y3-drawer,
    .y3-drawer-overlay {
        display: none !important;
    }

}

/* =========================================================
   YALLA3RB — FINAL SERVICE DROPDOWN FIX
   ========================================================= */

.select2-container--open {
    z-index: 99999 !important;
}

.select2-container--default .select2-dropdown {
    background: #070b1f !important;
    border: 1px solid #193563 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
}

.select2-container--default .select2-results {
    background: #070b1f !important;
    padding: 0 !important;
}

.select2-container--default .select2-results__options {
    background: #070b1f !important;
    padding: 0 !important;
    margin: 0 !important;
}

.select2-container--default
.select2-results__option {
    display: block !important;

    width: 100% !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 13px 16px !important;

    background: #070b1f !important;
    color: #cfd7eb !important;

    border: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.065) !important;
    border-radius: 0 !important;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Tahoma,
        Arial,
        sans-serif !important;

    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;

    text-align: right !important;
    white-space: normal !important;

    opacity: 1 !important;
    box-shadow: none !important;
    cursor: pointer !important;
}

.select2-container--default
.select2-results__option:last-child {
    border-bottom: 0 !important;
}

.select2-container--default
.select2-results__option--highlighted[aria-selected] {
    background: #101d3d !important;
    color: #ffffff !important;
}

.select2-container--default
.select2-results__option[aria-selected="true"] {
    background: #0b1530 !important;
    color: #19d9ff !important;
    font-weight: 700 !important;
}

.select2-container--default
.select2-results__option--highlighted[aria-selected="true"] {
    background: #122b5b !important;
    color: #ffffff !important;
}

.select2-container--default
.select2-search--dropdown {
    padding: 10px !important;
    background: #070b1f !important;
    border-bottom: 1px solid rgba(255,255,255,.07) !important;
}

.select2-container--default
.select2-search--dropdown
.select2-search__field {
    width: 100% !important;
    height: 42px !important;
    padding: 0 12px !important;
    background: #050918 !important;
    border: 1px solid #193563 !important;
    border-radius: 9px !important;
    color: #ffffff !important;
    font-size: 13px !important;
    outline: none !important;
}

.select2-container--default
.select2-search--dropdown
.select2-search__field:focus {
    border-color: #19d9ff !important;
    box-shadow: 0 0 0 2px rgba(25,217,255,.08) !important;
}

.select2-container--default
.select2-results__options::-webkit-scrollbar {
    width: 5px !important;
}

.select2-container--default
.select2-results__options::-webkit-scrollbar-track {
    background: #050918 !important;
}

.select2-container--default
.select2-results__options::-webkit-scrollbar-thumb {
    background: #193563 !important;
    border-radius: 10px !important;
}

.select2-container--default .select2-results__option,
.select2-container--default .select2-results__option * {
    color: #dce3f7 !important;
}

.select2-container--default
.select2-results__option--highlighted,
.select2-container--default
.select2-results__option--highlighted * {
    color: #ffffff !important;
}

.select2-container--default
.select2-results__option[aria-selected="true"],
.select2-container--default
.select2-results__option[aria-selected="true"] * {
    color: #19d9ff !important;
}

.select2-container--default
.select2-results__option--highlighted[aria-selected="true"],
.select2-container--default
.select2-results__option--highlighted[aria-selected="true"] * {
    color: #ffffff !important;
}


/* =========================================================
   YALLA3RB — COST FIX
   #charge remains the original Perfect Panel INPUT.
   ========================================================= */

.y3-charge-box {
    min-height: 62px !important;

    margin-top: 20px !important;
    margin-bottom: 18px !important;

    padding: 0 17px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    gap: 15px !important;

    background:
        linear-gradient(
            90deg,
            rgba(18,55,255,.09),
            rgba(25,217,255,.035)
        ) !important;

    border: 1px solid rgba(25,217,255,.14) !important;
    border-radius: 13px !important;
}

.y3-charge-box > span {
    flex: 0 0 auto !important;
    margin: 0 !important;
    color: #929db9 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

.y3-charge-box > span i {
    margin-left: 6px !important;
    color: var(--y3-cyan) !important;
}

.y3-charge-box #charge {
    flex: 0 1 auto !important;

    width: auto !important;
    max-width: 55% !important;

    height: 38px !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;

    color: var(--y3-cyan) !important;

    font-size: 17px !important;
    font-weight: 800 !important;
    line-height: 38px !important;

    text-align: left !important;

    box-shadow: none !important;
    outline: none !important;
}

@media (max-width: 767px) {

    .select2-container--default
    .select2-results__option {
        padding: 14px 15px !important;
        font-size: 12px !important;
        line-height: 1.7 !important;
    }

    .select2-container--default
    .select2-results__options {
        max-height: 310px !important;
    }

    .y3-charge-box {
        min-height: 58px !important;
        padding: 0 13px !important;
    }

    .y3-charge-box #charge {
        max-width: 55% !important;
        height: 36px !important;
        font-size: 16px !important;
        line-height: 36px !important;
    }
}

/* ==========================================
   YALLA3RB — COMPACT DRAWER MENU
   Foollo-inspired density / Yalla3RB styling
========================================== */

.y3-drawer {
    padding-bottom: 18px !important;
}

.y3-drawer-header {
    padding: 16px 18px !important;
    min-height: 68px !important;
}

.y3-drawer-section {
    margin-top: 12px !important;
}

.y3-drawer-title {
    margin: 0 16px 7px !important;
    font-size: 10px !important;
    line-height: 1.3 !important;
    letter-spacing: .3px !important;
}

.y3-drawer-menu {
    gap: 2px !important;
}

.y3-drawer-link {
    min-height: 43px !important;
    height: 43px !important;
    margin: 0 9px !important;
    padding: 0 12px !important;
    border-radius: 9px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.y3-drawer-icon {
    width: 30px !important;
    min-width: 30px !important;
    height: 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    line-height: 1 !important;
}

.y3-drawer-text {
    flex: 1 !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
}

.y3-drawer-arrow {
    font-size: 18px !important;
    line-height: 1 !important;
    opacity: .45 !important;
    margin-right: 1px !important;
}

.y3-drawer-balance {
    margin: 10px 12px 14px !important;
    padding: 12px 13px !important;
    min-height: 58px !important;
    border-radius: 11px !important;
}

.y3-account-section {
    margin-top: 14px !important;
    padding-top: 12px !important;
}

.y3-account-section .y3-drawer-menu {
    padding-bottom: 2px !important;
}

@media (max-width: 767px) {
    .y3-drawer {
        width: min(86vw, 340px) !important;
    }

    .y3-drawer-link {
        min-height: 42px !important;
        height: 42px !important;
        margin-left: 8px !important;
        margin-right: 8px !important;
    }
}

/* =========================================================
   YALLA3RB — DRAWER REFERENCE MATCH
   Dense Foollo-style mobile drawer, Yalla3RB colors
========================================================= */

@media (min-width: 768px) {
    .y3-drawer {
        width: 420px !important;
        max-width: 45vw !important;
    }
}

@media (min-width: 600px) and (max-width: 767px) {
    .y3-drawer {
        width: 56vw !important;
        max-width: 560px !important;
    }
}

@media (max-width: 599px) {
    .y3-drawer {
        width: 82vw !important;
        max-width: 340px !important;
    }
}

.y3-drawer {
    top: 0 !important;
    right: 0 !important;
    height: 100dvh !important;
    padding: 0 0 14px !important;
    overflow-x: hidden !important;
    background: #070812 !important;
    border-left: 1px solid rgba(25,217,255,.10) !important;
    box-shadow: -18px 0 55px rgba(0,0,0,.45) !important;
}

.y3-drawer-header {
    min-height: 78px !important;
    padding: 16px 18px 12px !important;
    border-bottom: 1px solid rgba(255,255,255,.09) !important;
}

.y3-user-box {
    gap: 11px !important;
    flex-direction: row !important;
}

.y3-user-avatar {
    width: 48px !important;
    height: 48px !important;
    flex-basis: 48px !important;
    border-radius: 50% !important;
    font-size: 17px !important;
}

.y3-user-info {
    gap: 2px !important;
    text-align: right !important;
}

.y3-user-info strong {
    font-size: 15px !important;
}

.y3-user-info span {
    font-size: 12px !important;
}

.y3-drawer-close {
    width: 32px !important;
    height: 32px !important;
    border: 0 !important;
    background: transparent !important;
    font-size: 25px !important;
    opacity: .55 !important;
}

/* Three compact shortcut icons */
.y3-drawer-quick {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    direction: rtl !important;
    padding: 13px 34px 12px !important;
    margin: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.09) !important;
}

.y3-drawer-quick a {
    width: 42px !important;
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #19d9ff !important;
    background: transparent !important;
    border: 0 !important;
    font-size: 18px !important;
    text-decoration: none !important;
    transition: .18s ease !important;
}

.y3-drawer-quick a:hover {
    color: #fff !important;
    transform: translateY(-1px) !important;
}

/* Balance becomes compact */
.y3-drawer-balance {
    margin: 12px 15px 10px !important;
    padding: 11px 13px !important;
    min-height: 50px !important;
    border-radius: 10px !important;
}

.y3-drawer-balance div {
    gap: 2px !important;
}

.y3-drawer-balance div span {
    font-size: 10px !important;
}

.y3-drawer-balance strong {
    font-size: 14px !important;
}

/* Menu */
.y3-drawer-section {
    margin-top: 8px !important;
}

.y3-drawer-title {
    display: none !important;
}

.y3-drawer-menu {
    gap: 0 !important;
}

.y3-drawer-link {
    min-height: 49px !important;
    height: 49px !important;
    margin: 0 !important;
    padding: 0 22px 0 20px !important;
    border-radius: 0 !important;
    gap: 13px !important;
    color: #f0f2f8 !important;
    background: transparent !important;
    direction: rtl !important;
}

.y3-drawer-link:hover {
    background: rgba(25,217,255,.055) !important;
}

.y3-drawer-link.active {
    margin: 2px 0 !important;
    border-radius: 28px 0 0 28px !important;
    color: #fff !important;
    background: linear-gradient(
        90deg,
        rgba(25,217,255,.04),
        rgba(25,217,255,.13)
    ) !important;
    box-shadow: inset -3px 0 0 #19d9ff !important;
}

.y3-drawer-icon {
    width: 29px !important;
    min-width: 29px !important;
    height: 29px !important;
    font-size: 17px !important;
    color: #dce2ee !important;
}

.y3-drawer-link.active .y3-drawer-icon {
    color: #19d9ff !important;
}

.y3-drawer-text {
    flex: 1 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    text-align: right !important;
}

.y3-drawer-arrow {
    display: none !important;
}

.y3-account-section {
    margin-top: 8px !important;
    padding-top: 8px !important;
    border-top: 1px solid rgba(255,255,255,.08) !important;
}

@media (max-width: 599px) {
    .y3-drawer-header {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .y3-drawer-quick {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    .y3-drawer-link {
        min-height: 47px !important;
        height: 47px !important;
        padding-right: 17px !important;
        padding-left: 15px !important;
    }

    .y3-drawer-text {
        font-size: 13px !important;
    }
}


/* =========================================================
   YALLA3RB — FOOLLO REFERENCE SPACING / ICONS
========================================================= */

.y3-drawer-quick {
    height: 112px !important;
    padding: 0 48px !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
}

.y3-drawer-quick a {
    width: 44px !important;
    height: 44px !important;
    font-size: 18px !important;
}

.y3-drawer-section {
    margin-top: 0 !important;
}

.y3-drawer-menu {
    gap: 0 !important;
    padding: 8px 0 12px !important;
}

.y3-drawer-link,
.y3-drawer-link.active {
    min-height: 72px !important;
    height: 72px !important;
    margin: 0 !important;
    padding: 0 28px 0 22px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

.y3-drawer-link.active {
    background: linear-gradient(90deg, rgba(25,217,255,.025), rgba(25,217,255,.12)) !important;
    box-shadow: inset -4px 0 0 #19d9ff !important;
}

.y3-drawer-icon {
    width: 32px !important;
    min-width: 32px !important;
    height: 32px !important;
    font-size: 19px !important;
}

.y3-drawer-text {
    font-size: 15px !important;
    font-weight: 500 !important;
}

.y3-account-section {
    margin-top: 4px !important;
    padding-top: 10px !important;
}

.y3-account-section .y3-drawer-menu {
    padding-top: 4px !important;
}

@media (max-width: 599px) {
    .y3-drawer {
        width: 82vw !important;
        max-width: 340px !important;
    }

    .y3-drawer-header {
        min-height: 78px !important;
    }

    .y3-drawer-quick {
        height: 106px !important;
        padding: 0 38px !important;
    }

    .y3-drawer-link,
    .y3-drawer-link.active {
        min-height: 70px !important;
        height: 70px !important;
        padding-right: 22px !important;
        padding-left: 16px !important;
    }

    .y3-drawer-text {
        font-size: 14px !important;
    }
}

/* ==========================================
   YALLA3RB — NARROW DRAWER WIDTH
   Reference: Foollo mobile drawer
========================================== */

@media (max-width: 599px) {
    .y3-drawer {
        width: 57vw !important;
        max-width: 285px !important;
        min-width: 250px !important;
    }

    .y3-drawer-header {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .y3-drawer-quick {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .y3-drawer-link {
        padding-right: 13px !important;
        padding-left: 11px !important;
        gap: 9px !important;
    }

    .y3-drawer-text {
        font-size: 12.5px !important;
    }

    .y3-drawer-icon {
        width: 26px !important;
        min-width: 26px !important;
        font-size: 15px !important;
    }

    .y3-drawer-balance {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }
}

@media (min-width: 600px) and (max-width: 767px) {
    .y3-drawer {
        width: 57vw !important;
        max-width: 420px !important;
    }
}

/* ==========================================
   YALLA3RB — HEADER WALLET + NEON TEXT LOGO
========================================== */

.y3-header-wallet {
    display: flex !important;
    align-items: center !important;
    gap: 7px !important;
    direction: ltr !important;
    flex-shrink: 0 !important;
}

.y3-header-wallet .y3-balance {
    min-width: 132px !important;
    width: auto !important;
    height: 42px !important;
    padding: 0 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    flex-direction: row !important;
    border-radius: 10px !important;
    white-space: nowrap !important;
}

.y3-header-wallet .y3-balance-label {
    font-size: 10px !important;
    opacity: .72 !important;
}

.y3-header-wallet .y3-balance strong {
    font-size: 13px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.y3-add-funds {
    height: 42px !important;
    min-width: 52px !important;
    padding: 0 11px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    border-radius: 10px !important;
    color: #fff !important;
    text-decoration: none !important;
    background: linear-gradient(135deg, #1237ff, #8b2cff) !important;
    border: 1px solid rgba(25,217,255,.28) !important;
    box-shadow: 0 0 16px rgba(25,217,255,.10) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    transition: .18s ease !important;
}

.y3-add-funds i {
    font-size: 11px !important;
}

.y3-add-funds:hover {
    color: #fff !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 0 20px rgba(25,217,255,.22) !important;
}

/* Centered text logo */
.y3-text-logo {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    letter-spacing: -.6px !important;
    line-height: 1 !important;
    direction: ltr !important;
    text-shadow:
        0 0 7px rgba(25,217,255,.60),
        0 0 18px rgba(139,44,255,.42) !important;
}

.y3-logo-yalla {
    color: #19d9ff !important;
}

.y3-logo-3rb {
    color: #d92cff !important;
}

@media (max-width: 767px) {
    .y3-header-wallet {
        gap: 5px !important;
    }

    .y3-header-wallet .y3-balance {
        min-width: 104px !important;
        height: 38px !important;
        padding: 0 9px !important;
        gap: 5px !important;
        border-radius: 9px !important;
    }

    .y3-header-wallet .y3-balance-label {
        font-size: 9px !important;
    }

    .y3-header-wallet .y3-balance strong {
        font-size: 11px !important;
    }

    .y3-add-funds {
        height: 38px !important;
        min-width: 40px !important;
        padding: 0 9px !important;
        border-radius: 9px !important;
    }

    .y3-add-funds span {
        display: none !important;
    }

    .y3-add-funds i {
        font-size: 12px !important;
    }

    .y3-text-logo {
        font-size: 19px !important;
    }
}

/* ==========================================
   YALLA3RB — HEADER FINAL POLISH
========================================== */

/* Use bold typography in the header */
.y3-header,
.y3-header * {
    font-family: inherit !important;
}

.y3-balance {
    font-weight: 700 !important;
}

.y3-balance-label {
    font-size: 12px !important;
    font-weight: 800 !important;
    color: #f5f7ff !important;
}

.y3-balance strong {
    font-weight: 800 !important;
}

/* Unified balance rectangle */
.y3-header-wallet {
    display: flex !important;
    align-items: center !important;
}

.y3-header-wallet .y3-balance {
    min-width: 164px !important;
    height: 44px !important;
    padding: 0 7px 0 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    border-radius: 11px !important;
    white-space: nowrap !important;
}

.y3-balance-plus {
    width: 31px !important;
    height: 31px !important;
    min-width: 31px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    color: #fff !important;
    background: linear-gradient(135deg, #1237ff, #19d9ff) !important;
    box-shadow: 0 0 13px rgba(25,217,255,.22) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

.y3-balance-plus i {
    font-weight: 900 !important;
}

/* Bigger centered Yalla3RB, all electric blue neon */
.y3-text-logo {
    font-size: 27px !important;
    font-weight: 900 !important;
    letter-spacing: -.9px !important;
    color: #19d9ff !important;
    text-shadow:
        0 0 6px rgba(25,217,255,.90),
        0 0 14px rgba(25,217,255,.70),
        0 0 28px rgba(23,107,255,.55) !important;
}

.y3-logo-yalla,
.y3-logo-3rb {
    color: #19d9ff !important;
    font-weight: 900 !important;
}

/* Make common header labels strongly bold */
.y3-header .y3-balance-label,
.y3-header .y3-balance strong {
    font-weight: 800 !important;
}

@media (max-width: 767px) {
    .y3-header-wallet .y3-balance {
        min-width: 130px !important;
        width: auto !important;
        height: 39px !important;
        padding: 0 6px 0 10px !important;
        gap: 6px !important;
        border-radius: 9px !important;
    }

    .y3-balance-label {
        font-size: 11px !important;
    }

    .y3-header-wallet .y3-balance strong {
        font-size: 11px !important;
    }

    .y3-balance-plus {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        border-radius: 7px !important;
        font-size: 12px !important;
    }

    .y3-text-logo {
        font-size: 23px !important;
    }
}

/* ==========================================
   YALLA3RB — BALANCE + ARABIC NEON LOGO
========================================== */

/* Bigger bold balance label */
.y3-header-wallet .y3-balance-label {
    font-size: 14px !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    line-height: 1 !important;
}

.y3-header-wallet .y3-balance strong {
    font-size: 13px !important;
    font-weight: 900 !important;
}

/* Plus stays INSIDE the balance rectangle */
.y3-header-wallet .y3-balance {
    min-width: 176px !important;
    height: 46px !important;
    padding: 0 7px 0 15px !important;
    gap: 10px !important;
    justify-content: center !important;
}

.y3-balance-plus {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    margin-right: 0 !important;
    border-radius: 8px !important;
    background: linear-gradient(135deg, #1237ff, #19d9ff) !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    box-shadow:
        0 0 9px rgba(25,217,255,.35),
        inset 0 0 7px rgba(255,255,255,.08) !important;
}

/* Arabic neon logo */
.y3-text-logo {
    direction: rtl !important;
    font-size: 31px !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    gap: 7px !important;
    color: #fff !important;
    text-shadow: none !important;
}

.y3-logo-yalla {
    color: #19d9ff !important;
    font-weight: 900 !important;
    text-shadow:
        0 0 5px rgba(25,217,255,.95),
        0 0 12px rgba(25,217,255,.75),
        0 0 25px rgba(25,217,255,.45) !important;
}

.y3-logo-3rb {
    color: #8b2cff !important;
    font-weight: 900 !important;
    text-shadow:
        0 0 5px rgba(139,44,255,.95),
        0 0 12px rgba(139,44,255,.75),
        0 0 25px rgba(217,44,255,.42) !important;
}

@media (max-width: 767px) {
    .y3-header-wallet .y3-balance {
        min-width: 140px !important;
        height: 40px !important;
        padding: 0 6px 0 10px !important;
        gap: 7px !important;
    }

    .y3-header-wallet .y3-balance-label {
        font-size: 12px !important;
    }

    .y3-header-wallet .y3-balance strong {
        font-size: 11px !important;
    }

    .y3-balance-plus {
        width: 29px !important;
        height: 29px !important;
        min-width: 29px !important;
        font-size: 12px !important;
    }

    .y3-text-logo {
        font-size: 26px !important;
        gap: 5px !important;
    }
}

/* ==========================================
   YALLA3RB — MOBILE INPUT ZOOM FIX
========================================== */

@media (max-width: 767px) {
    input,
    textarea,
    select,
    .form-control,
    .select2-search__field {
        font-size: 16px !important;
    }
}

/* =========================================================
   YALLA3RB — HEADER EXACT REFERENCE
   Balance card + Add Funds card / Center logo / Right menu
========================================================= */

.y3-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 900 !important;
    width: 100% !important;
    height: 78px !important;
    background: rgba(3,5,13,.97) !important;
    border-bottom: 1px solid rgba(25,217,255,.10) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
}

.y3-header-inner {
    position: relative !important;
    width: 100% !important;
    height: 78px !important;
    max-width: 1500px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    direction: ltr !important;
}

/* ------------------------------------------
   LEFT — TWO SEPARATE REFERENCE CARDS
------------------------------------------ */

.y3-header-wallet {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex: 0 0 auto !important;
    direction: ltr !important;
}

/* Balance */
.y3-balance-card {
    height: 48px !important;
    min-width: 150px !important;
    padding: 0 13px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    border: 1px solid rgba(25,217,255,.48) !important;
    border-radius: 10px !important;
    background: rgba(5,9,27,.88) !important;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow:
        0 0 12px rgba(25,217,255,.08),
        inset 0 0 10px rgba(25,217,255,.025) !important;
}

.y3-wallet-icon {
    width: 28px !important;
    min-width: 28px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #19d9ff !important;
    font-size: 18px !important;
}

.y3-wallet-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 1px !important;
    line-height: 1 !important;
}

.y3-wallet-label {
    font-size: 10px !important;
    font-weight: 900 !important;
    color: #19d9ff !important;
}

.y3-wallet-info strong {
    font-size: 15px !important;
    font-weight: 900 !important;
    color: #19d9ff !important;
    white-space: nowrap !important;
}

/* Add funds — separate card */
.y3-add-funds-card {
    height: 48px !important;
    min-width: 142px !important;
    padding: 0 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    border: 1px solid rgba(25,217,255,.48) !important;
    border-radius: 10px !important;
    background: rgba(5,9,27,.88) !important;
    color: #19d9ff !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    box-shadow:
        0 0 12px rgba(25,217,255,.08),
        inset 0 0 10px rgba(25,217,255,.025) !important;
}

.y3-add-funds-plus {
    width: 22px !important;
    height: 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid #19d9ff !important;
    border-radius: 50% !important;
    color: #19d9ff !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    box-shadow: 0 0 8px rgba(25,217,255,.25) !important;
}

.y3-balance-card:hover,
.y3-add-funds-card:hover {
    border-color: #19d9ff !important;
    box-shadow: 0 0 18px rgba(25,217,255,.14) !important;
}

/* ------------------------------------------
   CENTER — LARGE IMAGE LOGO
------------------------------------------ */

.y3-image-logo {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%,-50%) !important;
    z-index: 5 !important;
    height: 68px !important;
    width: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.y3-image-logo img {
    display: block !important;
    width: auto !important;
    height: 68px !important;
    max-width: 320px !important;
    object-fit: contain !important;
}

/* ------------------------------------------
   RIGHT — CLEAN HAMBURGER
------------------------------------------ */

.y3-header-menu {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex: 0 0 auto !important;
    direction: rtl !important;
    z-index: 10 !important;
}

.y3-menu-button {
    position: relative !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    border: 1px solid rgba(25,217,255,.45) !important;
    border-radius: 10px !important;
    background: rgba(5,9,27,.90) !important;
    box-shadow: 0 0 14px rgba(25,217,255,.07) !important;
    cursor: pointer !important;
}

.y3-menu-button span {
    width: 22px !important;
    height: 2px !important;
    border-radius: 3px !important;
    background: #dceeff !important;
    box-shadow: 0 0 5px rgba(25,217,255,.25) !important;
    transition: .2s ease !important;
}

.y3-menu-button:hover {
    border-color: #19d9ff !important;
    box-shadow: 0 0 20px rgba(25,217,255,.15) !important;
}

.y3-menu-button:hover span {
    background: #19d9ff !important;
}

/* Mobile */
@media (max-width: 767px) {

    .y3-header,
    .y3-header-inner {
        height: 64px !important;
    }

    .y3-header-inner {
        padding: 0 9px !important;
    }

    .y3-header-wallet {
        gap: 5px !important;
    }

    .y3-balance-card {
        height: 39px !important;
        min-width: 105px !important;
        padding: 0 7px !important;
        gap: 5px !important;
        border-radius: 8px !important;
    }

    .y3-wallet-icon {
        width: 23px !important;
        min-width: 23px !important;
        font-size: 15px !important;
    }

    .y3-wallet-label {
        font-size: 8px !important;
    }

    .y3-wallet-info strong {
        font-size: 11px !important;
    }

    .y3-add-funds-card {
        height: 39px !important;
        min-width: 101px !important;
        padding: 0 7px !important;
        gap: 6px !important;
        border-radius: 8px !important;
        font-size: 10px !important;
    }

    .y3-add-funds-plus {
        width: 20px !important;
        height: 20px !important;
        font-size: 9px !important;
    }

    .y3-image-logo {
        height: 49px !important;
    }

    .y3-image-logo img {
        height: 49px !important;
        max-width: 175px !important;
    }

    .y3-menu-button {
        width: 39px !important;
        height: 39px !important;
        min-width: 39px !important;
        gap: 5px !important;
        border-radius: 9px !important;
    }

    .y3-menu-button span {
        width: 19px !important;
        height: 2px !important;
    }
}


/* =========================================================
   YALLA3RB — HEADER FINAL
   Header only. Do not affect drawer or other theme sections.
========================================================= */

.y3-header {
    position: relative !important;
    z-index: 1000 !important;
    width: 100% !important;
}

.y3-header-inner {
    position: relative !important;
    min-height: 72px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    direction: ltr !important;
    padding: 10px 16px !important;
}

/* Balance + Add Funds */
.y3-header-wallet {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex: 0 0 auto !important;
    direction: ltr !important;
}

.y3-balance-card,
.y3-add-funds-card {
    box-sizing: border-box !important;
    height: 46px !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.y3-balance-card {
    width: 145px !important;
    padding: 0 12px !important;
    gap: 9px !important;
    direction: ltr !important;
}

.y3-wallet-icon {
    width: 30px !important;
    height: 30px !important;
    flex: 0 0 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.y3-wallet-icon i {
    font-size: 18px !important;
}

.y3-wallet-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    line-height: 1.1 !important;
    min-width: 0 !important;
}

.y3-wallet-label {
    font-size: 11px !important;
    line-height: 14px !important;
}

.y3-wallet-info strong {
    font-size: 13px !important;
    line-height: 16px !important;
}

.y3-add-funds-card {
    width: 130px !important;
    padding: 0 10px !important;
    gap: 9px !important;
    direction: rtl !important;
}

.y3-add-funds-card span {
    font-size: 12px !important;
    font-weight: 700 !important;
}

.y3-add-funds-plus {
    width: 29px !important;
    height: 29px !important;
    flex: 0 0 29px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
}

/* Center logo */
.y3-logo {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

.y3-image-logo img {
    display: block !important;
    width: auto !important;
    height: 62px !important;
    max-width: 190px !important;
    object-fit: contain !important;
}

/* Right menu */
.y3-header-menu {
    margin-left: auto !important;
    flex: 0 0 auto !important;
    z-index: 3 !important;
}

.y3-menu-button {
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    background: transparent !important;
    box-shadow: none !important;
    cursor: pointer !important;
}

.y3-menu-button span {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    border-radius: 10px !important;
    background: #f5f7ff !important;
    margin: 0 !important;
    transition: transform .2s ease, opacity .2s ease !important;
}

@media (max-width: 767px) {
    .y3-header-inner {
        min-height: 62px !important;
        padding: 8px 9px !important;
    }

    .y3-header-wallet {
        gap: 5px !important;
    }

    .y3-balance-card,
    .y3-add-funds-card {
        height: 36px !important;
        border-radius: 8px !important;
    }

    .y3-balance-card {
        width: 94px !important;
        padding: 0 7px !important;
        gap: 5px !important;
    }

    .y3-wallet-icon {
        width: 24px !important;
        height: 24px !important;
        flex-basis: 24px !important;
    }

    .y3-wallet-icon i {
        font-size: 15px !important;
    }

    .y3-wallet-label {
        font-size: 9px !important;
        line-height: 10px !important;
    }

    .y3-wallet-info strong {
        font-size: 10px !important;
        line-height: 12px !important;
    }

    .y3-add-funds-card {
        width: 94px !important;
        padding: 0 6px !important;
        gap: 5px !important;
    }

    .y3-add-funds-card span {
        font-size: 9px !important;
    }

    .y3-add-funds-plus {
        width: 23px !important;
        height: 23px !important;
        flex-basis: 23px !important;
        font-size: 16px !important;
    }

    .y3-image-logo img {
        height: 48px !important;
        max-width: 150px !important;
    }

    .y3-menu-button {
        width: 38px !important;
        height: 38px !important;
        gap: 4px !important;
    }

    .y3-menu-button span {
        width: 20px !important;
        height: 2px !important;
    }
}

/* Prevent iOS Safari automatic zoom when typing */
@media (max-width: 767px) {
    input,
    textarea,
    select,
    .form-control,
    .select2-search__field {
        font-size: 16px !important;
    }
}


/* =========================================================
   YALLA3RB HEADER — SINGLE BALANCE CARD
   Final header rules only. No separate "إضافة رصيد" card.
========================================================= */

.y3-header-wallet {
    display: flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

.y3-balance-card {
    box-sizing: border-box !important;
    width: 178px !important;
    min-width: 178px !important;
    height: 52px !important;
    padding: 0 10px 0 13px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    border-radius: 11px !important;
    text-decoration: none !important;
    direction: ltr !important;
    white-space: nowrap !important;
}

.y3-wallet-icon {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    flex: 0 0 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.y3-wallet-icon i {
    font-size: 18px !important;
}

.y3-wallet-info {
    min-width: 0 !important;
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    line-height: 1.05 !important;
    direction: rtl !important;
}

.y3-wallet-label {
    font-size: 12px !important;
    line-height: 15px !important;
    font-weight: 600 !important;
}

.y3-wallet-info strong {
    display: block !important;
    font-size: 17px !important;
    line-height: 20px !important;
    font-weight: 800 !important;
    letter-spacing: .1px !important;
    direction: ltr !important;
}

.y3-balance-plus {
    width: 35px !important;
    height: 35px !important;
    min-width: 35px !important;
    flex: 0 0 35px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    line-height: 1 !important;
}

.y3-balance-plus i {
    margin: 0 !important;
}

@media (max-width: 767px) {

    .y3-header-inner {
        min-height: 64px !important;
        padding: 8px 10px !important;
    }

    .y3-balance-card {
        width: 151px !important;
        min-width: 151px !important;
        height: 48px !important;
        padding: 0 8px 0 10px !important;
        gap: 8px !important;
        border-radius: 10px !important;
    }

    .y3-wallet-icon {
        width: 29px !important;
        height: 29px !important;
        min-width: 29px !important;
        flex-basis: 29px !important;
    }

    .y3-wallet-icon i {
        font-size: 17px !important;
    }

    .y3-wallet-label {
        font-size: 11px !important;
        line-height: 13px !important;
    }

    .y3-wallet-info strong {
        font-size: 16px !important;
        line-height: 19px !important;
    }

    .y3-balance-plus {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        flex-basis: 32px !important;
        font-size: 19px !important;
    }

    .y3-image-logo img {
        height: 48px !important;
        max-width: 150px !important;
    }

    .y3-menu-button {
        width: 38px !important;
        height: 38px !important;
    }
}

.y3-add-funds-card {
    display: none !important;
}
/* ===== HEADER BALANCE — FINAL SIZE ===== */

.y3-balance-card {
    width: 145px !important;
    min-width: 145px !important;
    height: 46px !important;
    padding: 0 7px 0 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 6px !important;
    border-radius: 9px !important;
    overflow: hidden !important;
}

/* إلغاء أي أيقونة/خطوط قديمة */
.y3-balance-card::before,
.y3-balance-card::after,
.y3-balance-card .y3-wallet-icon {
    display: none !important;
    content: none !important;
}

/* الرصيد */
.y3-balance-card .y3-wallet-info {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
}

.y3-balance-card .y3-wallet-label {
    font-size: 11px !important;
    line-height: 13px !important;
}

.y3-balance-card .y3-wallet-info strong {
    font-size: 17px !important;
    line-height: 19px !important;
    font-weight: 800 !important;
}

/* علامة + داخل نفس المستطيل */
.y3-balance-card .y3-balance-plus {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 31px !important;
    height: 31px !important;
    min-width: 31px !important;
    border-radius: 50% !important;
    font-size: 0 !important;
}

.y3-balance-card .y3-balance-plus i {
    display: none !important;
}

.y3-balance-card .y3-balance-plus::after {
    content: "+" !important;
    font-family: Arial, sans-serif !important;
    font-size: 25px !important;
    font-weight: 400 !important;
    line-height: 31px !important;
}

/* اللوجو */
.y3-image-logo img {
    height: 48px !important;
    width: auto !important;
    max-width: 145px !important;
}

/* المنيو */
.y3-menu-button {
    width: 38px !important;
    height: 38px !important;
}

/* موبايل */
@media (max-width: 767px) {
    .y3-header-inner {
        min-height: 62px !important;
        padding: 7px 10px !important;
    }

    .y3-balance-card {
        width: 145px !important;
        min-width: 145px !important;
        height: 44px !important;
    }
}
#select-category-container .select2-results__option .select2-selection__text {
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.5 !important;
}

@media (max-width: 767px) {
    #select-category-container .select2-results__option .select2-selection__text {
        font-size: 15px !important;
        font-weight: 800 !important;
    }
}


/* =========================================================
   YALLA3RB — ACTUAL SERVICE NAME
   Perfect Panel Vue Service Dropdown
========================================================= */

#y3-service-select-container
.select2-results__option
.select2-selection__text,

.select2-container--default
.select2-results__option
.select2-selection__text {
    font-size: 16px !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    color: #f5f7ff !important;
}

/* اسم الخدمة نفسه داخل القائمة */
.select2-selection__text {
    font-size: 16px !important;
    font-weight: 800 !important;
}

/* الموبايل */
@media (max-width: 767px) {

    #y3-service-select-container
    .select2-results__option
    .select2-selection__text,

    .select2-container--default
    .select2-results__option
    .select2-selection__text {
        font-size: 15px !important;
        font-weight: 800 !important;
        line-height: 1.3 !important;
    }
}
/* =========================================================
   YALLA3RB — CATEGORY SELECTED TEXT
========================================================= */

#orderform-category + .select2-container
.select2-selection__rendered {
    font-size: 16px !important;
    font-weight: 800 !important;
    line-height: 50px !important;
    color: #f5f7ff !important;
}

@media (max-width: 767px) {
    #orderform-category + .select2-container
    .select2-selection__rendered {
        font-size: 15px !important;
        font-weight: 800 !important;
        line-height: 48px !important;
    }
}
/* ==========================================
   YALLA3RB — CATEGORY DROPDOWN ITEMS
========================================== */

#select2-orderform-category-results .select2-results__option {
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
}

#select2-orderform-category-results .select2-results__option * {
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
}

@media (max-width: 767px) {

    #select2-orderform-category-results .select2-results__option {
        font-size: 15px !important;
        font-weight: 800 !important;
        line-height: 1.4 !important;
    }

    #select2-orderform-category-results .select2-results__option * {
        font-size: 15px !important;
        font-weight: 800 !important;
    }
}
