/* ============================================
   MODERN NAVBAR - Complete Redesign
   Best UX Practices
   ============================================ */

/* Reset and Base */
.main-header {
    position: relative;
    z-index: 1000;
}

#navbar {
    background: #ffffff;
    padding: 0;
    height: 100px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

#navbar.sticky,
.navbar.sticky {
    border-bottom: none !important;
}

#navbar .container,
#navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
#navbar .navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    height: 45px;
    width: auto;
    flex-shrink: 0;
}

#navbar .navbar-brand img {
    height: 40px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.navbar-logo-light {
    display: none !important;
}

.navbar-logo-dark {
    display: block !important;
    height: 90px !important;
    max-width: 210px !important;
    width: auto !important;
    object-fit: contain;
}

/* Center Navigation */
.navbar-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin: 0 30px;
}

/* Categories Dropdown */
.nav-categories-dropdown {
    position: relative;
}

.nav-categories-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #012021;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-categories-btn:hover {
    background: #4da89a;
    color: #fff;
}

.nav-categories-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 280px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-categories-dropdown.active .nav-categories-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-category-item {
    position: relative;
}

.nav-category-item > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    color: #333;
    font-size: 14px;
    transition: all 0.2s ease;
}

.nav-category-item > a:hover {
    background: rgba(77, 168, 154, 0.1);
    color: #4da89a;
}

.nav-category-item > a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.nav-category-item > a span {
    flex: 1;
}

.nav-subcategory-menu {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 240px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.nav-category-item:hover .nav-subcategory-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav-subcategory-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 6px;
    color: #333;
    font-size: 13px;
    transition: all 0.2s ease;
}

.nav-subcategory-menu a:hover {
    background: rgba(77, 168, 154, 0.1);
    color: #4da89a;
}

.nav-subcategory-menu a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Search Form */
.nav-search-form {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 25px;
    padding: 0 16px;
    width: 300px;
    max-width: 100%;
    transition: all 0.3s ease;
}

.nav-search-form:focus-within {
    background: #fff;
    box-shadow: 0 0 0 2px #4da89a;
}

.nav-search-form svg {
    color: #888;
    flex-shrink: 0;
}

.nav-search-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px;
    font-size: 14px;
    color: #333;
    outline: none;
}

.nav-search-form input::placeholder {
    color: #999;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    display: block;
    padding: 6px 9px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-links li a:hover {
    background: rgba(77, 168, 154, 0.1);
    color: #4da89a;
}

/* Right Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 991px) {
    .navbar-actions {
        gap: 8px;
    }
}

@media (max-width: 575px) {
    .navbar-actions {
        gap: 6px;
    }
}

/* Language Dropdown */
.nav-language-dropdown {
    position: relative;
}

.nav-language-dropdown .language-select {
    margin: 0;
}

/* Notifications */
.nav-notifications {
    position: relative;
}

.nav-notifications .dropdown {
    position: relative;
}

.nav-notifications .dropdown-toggle,
.nav-notifications .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #333;
    transition: all 0.2s ease;
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.nav-notifications .dropdown-toggle:hover,
.nav-notifications .btn:hover {
    background: #ebebeb;
}

.nav-notifications .dropdown-toggle::after {
    display: none;
}

.nav-notifications .dropdown-toggle .mr-10 {
    margin-right: 0 !important;
}

.nav-notifications .badge {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 18px;
    height: 18px;
    font-size: 10px;
    margin: 0;
}

.nav-notifications .dropdown-menu {
    min-width: 320px;
    max-width: 90vw;
    right: 0;
    left: auto;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: none;
}

/* CTA Button */
.nav-cta-btn {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: #4da89a;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.2s ease;
}

.nav-cta-btn:hover {
    background: #012021;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(1, 32, 33, 0.3);
}

/* User Dropdown */
.nav-user-dropdown {
    position: relative;
}

.nav-user-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px 6px 6px;
    background: #f5f5f5;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-user-btn:hover {
    background: #ebebeb;
}

.nav-user-btn img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-user-btn span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-user-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 260px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1000;
}

.nav-user-dropdown.active .nav-user-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-user-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.nav-user-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-user-header strong {
    display: block;
    font-size: 15px;
    color: #333;
    margin-bottom: 2px;
}

.nav-user-header span {
    font-size: 12px;
    color: #888;
}

.nav-user-links {
    padding: 8px;
}

.nav-user-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    font-size: 14px;
    color: #333;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-user-links a:hover {
    background: rgba(77, 168, 154, 0.1);
    color: #4da89a;
}

.nav-user-links a svg {
    color: #666;
}

.nav-user-divider {
    height: 1px;
    background: #eee;
    margin: 8px 0;
}

.nav-user-links .nav-logout {
    color: #dc3545;
}

.nav-user-links .nav-logout:hover {
    background: #fff5f5;
    color: #dc3545;
}

/* Login Button */
.nav-login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid #012021;
    color: #012021 !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.2s ease;
}

.nav-login-btn:hover {
    background: #012021;
    color: #fff !important;
}

/* Mobile Toggle */
.nav-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: #333;
    cursor: pointer;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.mobile-menu-open {
    overflow: hidden;
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.mobile-search-form {
    display: flex;
    align-items: center;
    margin: 16px 20px;
    padding: 0 16px;
    background: #f5f5f5;
    border-radius: 25px;
}

.mobile-search-form svg {
    color: #888;
    flex-shrink: 0;
}

.mobile-search-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 12px;
    font-size: 15px;
    outline: none;
}

.mobile-nav-links {
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
}

.mobile-nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
}

.mobile-nav-links a:last-child {
    border-bottom: none;
}

.mobile-categories {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

.mobile-section-title {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.mobile-category-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
}

.mobile-category-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.mobile-actions {
    padding: 20px;
    margin-top: auto;
}

.mobile-cta-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: #4da89a;
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    border-radius: 25px;
    margin-bottom: 12px;
}

.mobile-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 2px solid #012021;
    color: #012021 !important;
    font-size: 15px;
    font-weight: 600;
    border-radius: 25px;
    margin-bottom: 12px;
}

.mobile-language {
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.mobile-language .language-select {
    width: 100%;
    position: relative;
}

.mobile-language .language-select .btn,
.mobile-language .language-select .dropdown-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    color: #333;
    font-size: 14px;
}

.mobile-language .language-select .dropdown-menu {
    width: 100%;
    min-width: 100%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    max-height: 250px;
    overflow-y: auto;
    z-index: 2100;
    /* Open upward */
    top: auto !important;
    bottom: 100% !important;
    margin-bottom: 5px;
    transform: none !important;
}

.mobile-language .language-select .dropdown-menu li a,
.mobile-language .language-select .dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: #333;
    font-size: 14px;
}

.mobile-language .language-select .dropdown-menu li a:hover,
.mobile-language .language-select .dropdown-menu .dropdown-item:hover {
    background: #f5f5f5;
}

/* ============================================
   TRANSPARENT NAVBAR FOR HERO PAGES
   ============================================ */

html body.has-hero-section #navbarVacuum,
html.has-hero-page body #navbarVacuum {
    display: none !important;
}

html body.has-hero-section #navbar,
html.has-hero-page body #navbar {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* White elements on transparent */
html body.has-hero-section #navbar .navbar-logo-dark,
html.has-hero-page body #navbar .navbar-logo-dark {
    display: none !important;
}

html body.has-hero-section #navbar .navbar-logo-light,
html.has-hero-page body #navbar .navbar-logo-light {
    display: block !important;
    height: 85px;
    max-width: 220px;
    object-fit: contain;
}

html body.has-hero-section #navbar .nav-categories-btn,
html.has-hero-page body #navbar .nav-categories-btn {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
}

html body.has-hero-section #navbar .nav-categories-btn:hover {
    background: rgba(255, 255, 255, 0.25) !important;
}

html body.has-hero-section #navbar .nav-search-form,
html.has-hero-page body #navbar .nav-search-form {
    background: rgba(255, 255, 255, 0.15) !important;
}

html body.has-hero-section #navbar .nav-search-form:focus-within {
    background: rgba(255, 255, 255, 0.25) !important;
    box-shadow: none !important;
}

html body.has-hero-section #navbar .nav-search-form svg,
html body.has-hero-section #navbar .nav-search-form input,
html.has-hero-page body #navbar .nav-search-form svg,
html.has-hero-page body #navbar .nav-search-form input {
    color: #fff !important;
}

html body.has-hero-section #navbar .nav-search-form input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

html body.has-hero-section #navbar .nav-links li a,
html.has-hero-page body #navbar .nav-links li a {
    color: #fff !important;
}

html body.has-hero-section #navbar .nav-links li a:hover {
    background: rgba(255, 255, 255, 0.15) !important;
}

html body.has-hero-section #navbar .nav-cta-btn {
    background: #fff !important;
    color: #4da89a !important;
}

html body.has-hero-section #navbar .nav-user-btn,
html.has-hero-page body #navbar .nav-user-btn {
    background: rgba(255, 255, 255, 0.15) !important;
}

html body.has-hero-section #navbar .nav-user-btn span,
html.has-hero-page body #navbar .nav-user-btn span {
    color: #fff !important;
}

html body.has-hero-section #navbar .nav-user-btn svg,
html.has-hero-page body #navbar .nav-user-btn svg {
    color: #fff !important;
}

html body.has-hero-section #navbar .nav-login-btn,
html.has-hero-page body #navbar .nav-login-btn {
    border-color: #fff !important;
    color: #fff !important;
}

html body.has-hero-section #navbar .nav-login-btn:hover {
    background: #fff !important;
    color: #333 !important;
}

html body.has-hero-section #navbar .nav-mobile-toggle,
html.has-hero-page body #navbar .nav-mobile-toggle {
    color: #fff !important;
}

html body.has-hero-section #navbar .nav-notifications .dropdown-toggle,
html.has-hero-page body #navbar .nav-notifications .dropdown-toggle {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
}

/* Language dropdown text white */
html body.has-hero-section #navbar .language-select .btn,
html body.has-hero-section #navbar .language-select .dropdown-toggle,
html.has-hero-page body #navbar .language-select .btn {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: none !important;
}

/* Dropdowns always have dark text */
html body.has-hero-section #navbar .nav-categories-menu,
html body.has-hero-section #navbar .nav-user-menu,
html body.has-hero-section #navbar .dropdown-menu,
html.has-hero-page body #navbar .dropdown-menu {
    background: #fff !important;
}

html body.has-hero-section #navbar .nav-categories-menu *,
html body.has-hero-section #navbar .nav-user-menu *,
html body.has-hero-section #navbar .dropdown-menu *,
html.has-hero-page body #navbar .dropdown-menu * {
    color: #333 !important;
}

/* ============================================
   SCROLLED STATE
   ============================================ */

html body.has-hero-section.navbar-is-scrolled #navbar {
    position: fixed !important;
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
    height: 90px;
}

html body.has-hero-section.navbar-is-scrolled #navbar .navbar-logo-dark {
    display: block !important;
    height: 60px;
    max-width: 140px;
    object-fit: contain;
}

html body.has-hero-section.navbar-is-scrolled #navbar .navbar-logo-light {
    display: none !important;
}

html body.has-hero-section.navbar-is-scrolled #navbar .nav-categories-btn {
    background: #f5f5f5 !important;
    color: #012021 !important;
}

html body.has-hero-section.navbar-is-scrolled #navbar .nav-search-form {
    background: #f5f5f5 !important;
}

html body.has-hero-section.navbar-is-scrolled #navbar .nav-search-form svg,
html body.has-hero-section.navbar-is-scrolled #navbar .nav-search-form input {
    color: #333 !important;
}

html body.has-hero-section.navbar-is-scrolled #navbar .nav-search-form input::placeholder {
    color: #999 !important;
}

html body.has-hero-section.navbar-is-scrolled #navbar .nav-links li a {
    color: #333 !important;
}

html body.has-hero-section.navbar-is-scrolled #navbar .nav-cta-btn {
    background: #4da89a !important;
    color: #fff !important;
}

html body.has-hero-section.navbar-is-scrolled #navbar .nav-user-btn {
    background: #f5f5f5 !important;
}

html body.has-hero-section.navbar-is-scrolled #navbar .nav-user-btn span {
    color: #333 !important;
}

html body.has-hero-section.navbar-is-scrolled #navbar .nav-login-btn {
    border-color: #012021 !important;
    color: #012021 !important;
}

html body.has-hero-section.navbar-is-scrolled #navbar .nav-mobile-toggle {
    color: #012021 !important;
}

html body.has-hero-section.navbar-is-scrolled #navbar .nav-notifications .dropdown-toggle {
    background: #f5f5f5 !important;
    color: #333 !important;
}

html body.has-hero-section.navbar-is-scrolled #navbar .language-select .btn {
    color: #333 !important;
    background: #f5f5f5 !important;
}

/* ============================================
   HERO SECTION
   ============================================ */

html body.has-hero-section .slider-container,
html.has-hero-page body .slider-container {
    padding-top: 120px !important;
    padding-bottom: 100px !important;
    min-height: 90vh !important;
}

html body.has-hero-section .slider-container .mask {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%) !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1199px) {
    .navbar-center {
        margin: 0 20px;
    }
    
    .nav-search-form {
        width: 200px;
    }
}

@media (max-width: 991px) {
    #navbar .navbar-brand {
        height: 65px;
        width: 100%;
    }
    
    .navbar-center {
        display: none !important;
    }
    
    .nav-language-dropdown {
        display: none !important;
    }
    
    /* Show notifications on tablet */
    .nav-notifications {
        display: block !important;
    }
    
    .nav-notifications .dropdown-toggle {
        width: 36px;
        height: 36px;
    }
    
    .nav-cta-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .nav-login-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .nav-user-btn {
        padding: 4px 8px 4px 4px;
    }
    
    .nav-user-btn img {
        width: 28px;
        height: 28px;
    }
    
    .nav-user-btn span {
        font-size: 13px;
        max-width: 80px;
    }
    
    .nav-mobile-toggle {
        width: 40px;
        height: 40px;
    }
    
    html body.has-hero-section .slider-container,
    html.has-hero-page body .slider-container {
        padding-top: 100px !important;
        min-height: 70vh !important;
    }
}

/* Mobile Menu Sidebar fixes */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    min-height: 56px;
}

.mobile-menu-header .navbar-brand {
    height: 32px;
    display: flex;
    align-items: center;
}

.mobile-menu-header .navbar-brand img {
    height: 75px !important;
    max-height: 100px !important;
    width: auto !important;
    max-width: 150px;
    object-fit: contain;
}

@media (max-width: 767px) {
    #navbar {
        height: 56px;
    }
    
    #navbar .navbar-brand img {
        height: 32px !important;
        max-width: 120px;
    }
    
    /* Dark logo for small screens */
    .navbar-logo-dark {
        height: 70px !important;
        max-width: 180px !important;
    }
    
    /* Hero section navbar logo for small screens */
    html body.has-hero-section #navbar .navbar-logo-light,
    html.has-hero-page body #navbar .navbar-logo-light {
        display: block !important;
        height: 60px !important;
        max-width: 190px !important;
        object-fit: contain;
    }
    
    .nav-cta-btn,
    .nav-login-btn {
        display: none !important;
    }
    
    .nav-notifications {
        display: block !important;
    }
    
    .nav-notifications .dropdown-toggle {
        width: 34px;
        height: 34px;
    }
    
    .nav-user-btn span {
        display: none !important;
    }
    
    .nav-user-btn {
        padding: 3px !important;
    }
    
    .nav-user-btn img {
        width: 30px;
        height: 30px;
    }
    
    .nav-user-btn svg {
        display: none !important;
    }
    
    .nav-mobile-toggle {
        width: 36px;
        height: 36px;
    }
    
    html body.has-hero-section .slider-container,
    html.has-hero-page body .slider-container {
        padding-top: 80px !important;
        min-height: 60vh !important;
    }
    
    html body.has-hero-section .slider-container .slider-content h1 {
        font-size: 24px !important;
    }
}

@media (max-width: 575px) {
    #navbar .navbar-brand img {
        height: 60px !important;
        max-width: 100px;
    }
    
    .nav-notifications .dropdown-toggle {
        width: 32px;
        height: 32px;
    }
    
    .nav-user-btn {
        padding: 2px !important;
    }
    
    .nav-user-btn img {
        width: 28px;
        height: 28px;
    }
    
    .nav-mobile-toggle {
        width: 32px;
        height: 32px;
    }
    
    .mobile-menu-header .navbar-brand img {
        height: 103px !important;
        max-height: 97px !important;
        max-width: 159px;
    }
    
    html body.has-hero-section .slider-container,
    html.has-hero-page body .slider-container {
        padding-top: 70px !important;
        min-height: 55vh !important;
    }
    
    html body.has-hero-section .slider-container .slider-content h1 {
        font-size: 20px !important;
    }
}

/* RTL Support */
.rtl .navbar-center {
    margin: 0 30px;
}

.rtl .nav-categories-menu {
    left: auto;
    right: 0;
}

.rtl .nav-subcategory-menu {
    left: auto;
    right: 100%;
    transform: translateX(-10px);
}

.rtl .nav-category-item:hover .nav-subcategory-menu {
    transform: translateX(0);
}

.rtl .nav-user-menu {
    right: auto;
    left: 0;
}

.rtl .mobile-menu {
    right: auto;
    left: -320px;
}

.rtl .mobile-menu.active {
    left: 0;
}
