/* =========================================
   1. SIFIRLAMA, DÆYÄ°ÅžÆNLÆR VÆ ÃœMUMÄ° STILLÆR
   ========================================= */
:root {
    --primary-orange: #ff3d00;
    --gold-color: #ffca28;
    --dark-bg: #1f2937;
    --light-bg: #f4f4f4;
    --card-bg: #e6e6e6;
    --input-bg: #f0f2f5;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --text-main: #333333;
    --text-light: #6b7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-bottom: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* --- CONTAINER (Desktop Ã¼Ã§Ã¼n) --- */
.container {
    max-width: 1275px;
    margin: 0 auto;
    padding: 0 15px;
}

/* =========================================
   2. HEADER (KOMPÃœTER)
   ========================================= */
.top-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left a {
    margin-right: 20px;
    color: var(--text-light);
    font-weight: 500;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-small {
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    border: none;
}

.btn-orange {
    background: linear-gradient(135deg, #ff6a00 0%, #ff0000 100%);
    color: white;
}

.btn-dark {
    background: var(--dark-bg);
    color: white;
}

.main-header {
    background: var(--white);
    padding: 25px 0;
    transition: 0.3s;
    position: relative;
    z-index: 1001;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.desktop-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
}

.search-box {
    flex: 1;
    max-width: 550px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    background: #f9f9f9;
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-cart-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    color: #333;
    font-size: 24px;
    margin-right: 10px;
    transition: 0.3s;
}

.header-cart-box:hover {
    color: var(--primary-orange);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: 0px;
    right: 0px;
    background: var(--primary-orange);
    color: white;
    font-size: 10px;
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
}

.balance-box {
    border: 1px dashed var(--primary-orange);
    padding: 10px 20px;
    border-radius: 6px;
    color: var(--primary-orange);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    background: #fff5f2;
    white-space: nowrap;
}

.btn-orders {
    background: var(--dark-bg);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    white-space: nowrap;
}

.navbar {
    background: var(--white);
    border-bottom: 1px solid #eee;
    height: 60px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.nav-inner {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.cat-dropdown-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 30px;
    z-index: 1002;
}

/* Kateqoriya DÃ¼ymÉ™si (Yumru) */
.cat-btn {
    background: linear-gradient(135deg, #ff6a00 0%, #ff0000 100%);
    color: white;
    height: 50px;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.dropdown-menu {
    position: absolute;
    top: 58px;
    left: 0;
    width: 200px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    max-height: 400px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.dropdown-menu::-webkit-scrollbar {
    width: 5px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0 12px 12px 0;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange);
}

.dropdown-menu li {
    width: 100%;
    border-bottom: 1px solid #f9f9f9;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 14px;
    color: #555;
    font-weight: 500;
    width: 100%;
    transition: 0.2s;
}

.dropdown-menu li a i {
    color: #999;
    width: 20px;
    text-align: center;
    transition: 0.2s;
}

.cat-dropdown-wrapper:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu li a:hover {
    background: #fff5f2;
    color: var(--primary-orange);
    padding-left: 25px;
    border-radius: 5px;
}

.dropdown-menu li a:hover i {
    color: var(--primary-orange);
}

.nav-links {
    display: flex;
    gap: 30px;
    height: 100%;
    align-items: center;
}

.nav-links li a {
    font-weight: 600;
    font-size: 15px;
    color: #444;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}

.nav-links li a:hover {
    color: #ff3d00;
    border-bottom: 2px solid #ff3d00;
}

.mobile-elements,
.mobile-bottom-nav,
.menu-overlay,
.mobile-sidebar {
    display: none;
}

/* =========================================
   3. HERO SLIDER (DESKTOP: 923x333)
   ========================================= */
.hero-section {
    /* padding: 0 0 20px 0; */
}

.hero-grid {
    display: grid;
    /* DÆQÄ°Q PÄ°KSELLÆR */
    grid-template-columns: 923px 298px;
    gap: 20px;
    height: 333px;
    margin-bottom: 30px;
}

/* Slayder hissÉ™si */
.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 5px;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.slider-wrapper:active {
    cursor: grabbing;
}

.slider-track {
    display: flex;
    height: 100%;
    width: 100%;
    will-change: transform;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    pointer-events: none;
}

/* NÃ¶qtÉ™lÉ™r (Dots) Tam Ortada */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--primary-orange);
    width: 30px;
    border-radius: 5px;
    opacity: 1;
}

/* Yan BannerlÉ™r Desktop (298x160) */
.side-banners {
    display: flex;
    flex-direction: column;
    gap: 13px;
    height: 100%;
}

.side-img-container {
    width: 100%;
    height: 160px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.side-img-container img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    transition: transform 0.4s ease;
}

.side-img-container:hover img {
    transform: scale(1.08);
}

/* =========================================
   4. KATEQORIYALAR (OYUNLAR)
   ========================================= */
.content-section {
    /* margin-top: 20px; */
    /* padding-bottom: 40px; */
    flex-grow: 1;
}

.cat-bar {
    background: linear-gradient(135deg, #ff6a00 0%, #ff0000 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cat-title {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.view-all {
    font-size: 13px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 600;
}

.cat-content {
    background: var(--light-bg);
    padding: 25px;
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.game-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 10px;
    height: 100px;
    padding: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: 1px solid transparent;
}

.game-card:hover {
    background: linear-gradient(227deg, #ffffff 0%, #a74519 100%);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 61, 0, 0.3);
    z-index: 2;
}

.game-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* =========================================
   5. XÃœSUSÄ°YYÆTLÆR (FEATURES)
   ========================================= */
.features-section {
    padding: 40px 0;
    margin-top: 20px;
    background-color: #fcfcfc;
    border-top: 1px solid #eee;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-item {
    background-color: var(--light-bg);
    padding: 30px 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon-box {
    width: 65px;
    height: 65px;
    border: 2px solid #ff6a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-icon-box i {
    font-size: 27px;
    color: #ff6a00;
    transition: transform 0.5s ease;
}

.feature-item:hover .feature-icon-box i {
    transform: rotate(360deg);
}

.feature-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ff6a00;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* =========================================
   6. FOOTER & CHAT
   ========================================= */
footer {
    background: var(--white);
    margin-top: 0px;
    padding-top: 50px;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-orange);
    padding-left: 15px;
    font-weight: 700;
    color: var(--text-main);
}

.footer-links a {
    color: #555;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
    transition: 0.2s;
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #888;
}

.socials i {
    font-size: 18px;
    margin-left: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.socials i:hover {
    color: var(--primary-orange);
    transform: rotate(360deg);
}

.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #ff6a00 0%, #ff0000 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(255, 61, 0, 0.4);
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.chat-widget:hover {
    transform: scale(1.15);
}

.chat-popup {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 320px;
    background: #f0f2f5;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 9998;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.cp-header {
    background: linear-gradient(90deg, #ff6a00, #ff0000);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.cp-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cp-icon {
    font-size: 24px;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cp-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.cp-text span {
    font-size: 12px;
    opacity: 0.9;
}

.cp-close {
    cursor: pointer;
    font-size: 20px;
    opacity: 0.8;
}

.cp-body {
    padding: 20px;
}

.cp-date {
    text-align: center;
    color: #999;
    font-size: 11px;
    margin-bottom: 15px;
}

.cp-msg {
    background: #e4e6eb;
    padding: 12px 15px;
    border-radius: 12px 12px 12px 0;
    margin-bottom: 10px;
    font-size: 13px;
    color: #333;
    line-height: 1.4;
    position: relative;
    margin-left: 10px;
}

.cp-msg::before {
    content: '\f18a';
    font-family: "Font Awesome 6 Free";
    position: absolute;
    left: -25px;
    top: 0;
    color: #ccc;
    font-size: 16px;
}

.cp-actions {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.2s;
}

.btn-whatsapp:hover {
    background: #20bd5a;
}

.cp-socials {
    display: flex;
    gap: 10px;
}

.btn-social {
    flex: 1;
    background: #e4e6eb;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: 0.2s;
}

.btn-social:hover {
    background: #d0d2d6;
}

.btn-social.insta i {
    color: #c13584;
}

.btn-social.tg i {
    color: #0088cc;
}

/* =========================================
   7. MODALLAR (QEYDÄ°YYAT & GÄ°RÄ°Åž)
   ========================================= */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    position: relative;
    animation: fadeIn 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #888;
    line-height: 1;
}

.modal-header h2 {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid transparent;
    background-color: var(--input-bg);
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    transition: 0.3s;
    display: block;
}

.form-group input:focus {
    background-color: #fff;
    border-color: var(--primary-orange);
    outline: none;
}

.btn-full {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-submit {
    background: var(--primary-orange);
    color: white;
}

.btn-submit:hover {
    opacity: 0.9;
}

.btn-google {
    background: white;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    color: #555;
}

.modal-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.modal-footer a {
    color: var(--primary-orange);
    font-weight: 600;
    cursor: pointer;
}

/* =========================================
   8. RESPONSIVE (MOBÄ°L)
   ========================================= */
@media (max-width: 992px) {

    .top-bar,
    .navbar,
    .header-actions,
    .desktop-logo {
        display: none !important;
    }

    .mobile-elements {
        display: flex !important;
    }

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

    .main-header {
        padding: 10px 0px;
        background: #f3f4f6;
        position: sticky;
        top: 0;
        z-index: 1001;
    }

    .header-inner {
        flex-direction: column;
        gap: 15px;
    }

    .mobile-top-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .mobile-left-group {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .mobile-burger {
        font-size: 26px;
        color: #333;
        cursor: pointer;
    }

    .mobile-logo-text {
        font-size: 22px;
        font-weight: 800;
        color: var(--text-main);
    }

    .mobile-logo-text span {
        color: var(--primary-orange);
    }

    .mobile-login-btn {
        width: 40px;
        height: 40px;
        background: #e5e7eb;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        cursor: pointer;
    }

    .search-box {
        width: 100%;
    }

    .search-box input {
        background: #e5e7eb;
        border: none;
        padding: 12px 15px;
    }

    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        backdrop-filter: blur(5px);
    }

    .menu-overlay.active {
        display: block;
    }

    .mobile-sidebar {
        display: flex;
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        width: 280px;
        background: #f5f5f5;
        flex-direction: column;
        padding: 0;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
        transition: 0.3s ease;
        z-index: 9999;
    }

    .mobile-sidebar.active {
        left: 0;
    }

    .sidebar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 20px;
        background: transparent;
        border-bottom: 1px solid #ddd;
    }

    .sidebar-logo {
        font-size: 20px;
        font-weight: 800;
        color: var(--text-main);
    }

    .sidebar-logo span {
        color: var(--primary-orange);
    }

    .close-sidebar {
        font-size: 20px;
        color: #666;
        cursor: pointer;
    }

    .sidebar-links {
        width: 100%;
        padding-top: 10px;
    }

    .sidebar-links li {
        width: 100%;
        padding: 0 20px;
        margin-bottom: 5px;
    }

    .sidebar-links li a {
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 15px;
        color: #555;
        padding: 12px 0;
        font-weight: 500;
    }

    .sidebar-links li a i {
        font-size: 18px;
        width: 25px;
        color: #777;
    }

    .sidebar-links li a.active-link {
        color: var(--primary-orange);
    }

    /* 5. Slider Fix (Mobile: 137px / 113px) */
    .hero-grid {
        display: flex;
        flex-direction: column;
        height: auto;
        gap: 15px;
        margin-bottom: 25px;
    }

    .slider-wrapper {
        height: 137px;
        /* Sizin istÉ™diyiniz mobil hÃ¼ndÃ¼rlÃ¼k */
        width: 100%;
        min-height: 137px;
    }

    .slide img {
        object-fit: fill !important;
    }

    .side-banners {
        display: flex;
        flex-direction: row;
        gap: 10px;
        height: 113px;
        /* Sizin istÉ™diyiniz mobil banner hÃ¼ndÃ¼rlÃ¼yÃ¼ */
        width: 100%;
    }

    .side-img-container {
        height: 100%;
        /* 113px olacaq */
        width: 50%;
    }

    .side-img-container img {
        object-fit: fill !important;
    }

    /* Mobil Grid (2 SÃ¼tun MÉ™cburi) */
    .game-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .game-card {
        height: 80px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
        padding: 0 10px;
    }

    .feature-item {
        padding: 15px 10px;
        min-height: 160px;
    }

    .feature-icon-box {
        width: 50px;
        height: 50px;
    }

    .feature-icon-box i {
        font-size: 20px;
    }

    .feature-item h3 {
        font-size: 13px;
    }

    .feature-item p {
        font-size: 11px;
        line-height: 1.3;
    }

    /* Footer & Bottom Nav */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-col h4 {
        border-left: none;
        border-bottom: 3px solid var(--primary-orange);
        display: inline-block;
        padding-bottom: 5px;
        padding-left: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    body {
        padding-bottom: 80px;
    }

    .chat-widget {
        bottom: 100px;
        right: 20px;
    }

    .chat-popup {
        bottom: 155px;
        right: 20px;
        width: 300px;
    }

    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        border-top: 1px solid #eee;
        padding: 8px 0;
        justify-content: space-between;
        align-items: center;
        z-index: 9997;
        padding-left: 15px;
        padding-right: 15px;
    }

    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 10px;
        color: #999;
        gap: 4px;
        text-align: center;
        width: 20%;
    }

    .mobile-nav-item i {
        font-size: 18px;
    }

    .mobile-nav-item.active {
        color: var(--primary-orange);
    }

    .mobile-nav-item.center-btn {
        position: relative;
        top: -20px;
    }

    .center-icon-circle {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #ff6a00 0%, #ff3d00 100%);
        border-radius: 50%;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        box-shadow: 0 4px 10px rgba(255, 188, 5, 0.4);
        border: 4px solid #fff;
    }
}