    /* Navbar Styles Ultra Moderne */
    .navbar-modern {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 9999;
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.9) 100%);
        backdrop-filter: blur(30px) saturate(180%);
        -webkit-backdrop-filter: blur(30px) saturate(180%);
        border-bottom: 2px solid rgba(6, 182, 212, 0.2);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.5), rgba(20, 184, 166, 0.5), rgba(6, 182, 212, 0.5), transparent);
        background-size: 200% 100%;
        animation: shimmer-top 3s linear infinite;
    }
    
    @keyframes shimmer-top {
        0% { background-position: 200% 0; }
        100% { background-position: -200% 0; }
    }
    
    .navbar-modern.scrolled {
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.98) 100%);
        box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(6, 182, 212, 0.1) inset;
        border-bottom-color: rgba(6, 182, 212, 0.4);
    }
    
    .navbar-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
    }
    
    /* Logo */
    .navbar-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        transition: transform 0.3s ease;
    }
    
    .navbar-logo:hover {
        transform: scale(1.05);
    }
    
    .logo-image {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.5));
    }
    
    .logo-text {
        font-family: 'Orbitron', sans-serif;
        font-size: 0.95rem;
        font-weight: 800;
        background: linear-gradient(135deg, #06b6d4, #14b8a6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    /* Desktop Menu */
    .navbar-menu {
        display: flex;
        align-items: center;
        gap: 8px;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .navbar-item {
        position: relative;
    }
    
    .navbar-link {
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 7px 12px;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-size: 0.8rem;
        font-weight: 600;
        border-radius: 10px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }
    
    .navbar-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.15), transparent);
        transition: left 0.5s ease;
    }
    
    .navbar-link:hover::before {
        left: 100%;
    }
    
    .navbar-link:hover {
        background: rgba(6, 182, 212, 0.12);
        color: #06b6d4;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(6, 182, 212, 0.2);
    }
    
    .navbar-link.active {
        background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(20, 184, 166, 0.15));
        color: #06b6d4;
        box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
        border: 1px solid rgba(6, 182, 212, 0.3);
    }
    
    .navbar-link.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 2px;
        background: linear-gradient(90deg, transparent, #06b6d4, transparent);
        animation: pulse-line 2s ease-in-out infinite;
    }
    
    @keyframes pulse-line {
        0%, 100% { opacity: 0.5; width: 60%; }
        50% { opacity: 1; width: 80%; }
    }
    
    @keyframes pulse {
        0%, 100% {
            transform: scale(1);
            opacity: 1;
        }
        50% {
            transform: scale(1.15);
            opacity: 0.9;
        }
    }
    
    /* Dropdown */
    .dropdown {
        position: relative;
    }
    
    .dropdown-toggle {
        cursor: pointer;
    }
    
    .dropdown-icon {
        font-size: 0.65rem;
        transition: transform 0.3s ease;
    }
    
    .dropdown:hover .dropdown-icon {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: absolute;
        top: calc(100% + 15px);
        left: 0;
        min-width: 260px;
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.95) 100%);
        backdrop-filter: blur(30px) saturate(180%);
        -webkit-backdrop-filter: blur(30px) saturate(180%);
        border: 2px solid rgba(6, 182, 212, 0.25);
        border-radius: 16px;
        padding: 8px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px) scale(0.95);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(6, 182, 212, 0.1) inset;
        overflow: hidden;
    }
    
    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #06b6d4, #14b8a6, #06b6d4);
        background-size: 200% 100%;
        animation: shimmer-border 3s linear infinite;
    }
    
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }
    
    .dropdown-item {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 0.85rem;
        border: 1px solid transparent;
        position: relative;
        overflow: hidden;
    }
    
    .dropdown-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(180deg, #06b6d4, #14b8a6);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }
    
    .dropdown-item:hover {
        background: rgba(6, 182, 212, 0.12);
        color: #06b6d4;
        transform: translateX(6px);
        border-color: rgba(6, 182, 212, 0.3);
        box-shadow: 0 3px 10px rgba(6, 182, 212, 0.15);
    }
    
    .dropdown-item:hover::before {
        transform: scaleY(1);
    }
    
    .dropdown-item-icon {
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        font-size: 1rem;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }
    
    .dropdown-item:hover .dropdown-item-icon {
        transform: scale(1.1);
    }
    
    .dropdown-item-content {
        flex: 1;
    }
    
    .dropdown-item-title {
        font-weight: 600;
        font-size: 0.85rem;
        margin-bottom: 1px;
        line-height: 1.3;
    }
    
    .dropdown-item-desc {
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.2;
    }
    
    .dropdown-divider {
        height: 1px;
        background: rgba(6, 182, 212, 0.2);
        margin: 8px 0;
        border: none;
    }
    
    .dropdown-item.danger {
        color: #ef4444;
    }
    
    .dropdown-item.danger:hover {
        background: rgba(239, 68, 68, 0.15);
        color: #ef4444;
    }
    
    /* CTA Button */
    .navbar-cta {
        padding: 6px 10px;
        background: linear-gradient(135deg, #06b6d4, #14b8a6);
        color: #000;
        text-decoration: none;
        font-weight: 600;
        border-radius: 8px;
        font-size: 0.75rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
        box-shadow: 0 3px 12px rgba(6, 182, 212, 0.25);
        min-width: 36px;
        height: 36px;
    }
    
    .navbar-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }
    
    .navbar-cta:hover::before {
        left: 100%;
    }
    
    .navbar-cta:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 12px 35px rgba(6, 182, 212, 0.5);
        border-color: rgba(6, 182, 212, 0.5);
    }
    
    /* Notification Bell dans la navbar */
    .navbar-notification-bell {
        position: relative;
    }
    
    .navbar-notification-bell:hover {
        background: rgba(6, 182, 212, 0.15) !important;
        color: #06b6d4 !important;
        transform: scale(1.1);
    }
    
    .navbar-notification-badge {
        animation: pulse 2s infinite;
    }
    
    /* Cart Icon Styles */
    .navbar-cart-icon {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .navbar-cart-icon i,
    .navbar-cart-icon i.fas,
    .navbar-cart-icon i.fa-shopping-cart {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-family: "Font Awesome 5 Free", "Font Awesome 6 Free" !important;
        font-weight: 900 !important;
        font-style: normal !important;
        font-variant: normal !important;
        text-rendering: auto !important;
        line-height: 1 !important;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .navbar-cart-icon i.fa-shopping-cart::before {
        content: "\f07a" !important;
    }
    
    .navbar-notification-dropdown.active {
        display: flex !important;
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
    
    body.dark-mode .navbar-notification-dropdown {
        background: #1e293b !important;
        border: 1px solid rgba(6, 182, 212, 0.3) !important;
    }
    
    /* Search Icon & Form */
    .navbar-search-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: rgba(6, 182, 212, 0.1);
        border: 1px solid rgba(6, 182, 212, 0.3);
        border-radius: 50%;
        color: #06b6d4;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-right: 12px;
        font-size: 0.9rem;
    }
    
    .navbar-search-icon:hover {
        background: rgba(6, 182, 212, 0.2);
        border-color: rgba(6, 182, 212, 0.5);
        transform: scale(1.1);
    }
    
    .navbar-search-form {
        position: absolute;
        top: 100%;
        right: 20px;
        margin-top: 10px;
        width: 600px;
        max-width: calc(100vw - 40px);
        background: linear-gradient(135deg, rgba(51, 65, 85, 0.95) 0%, rgba(71, 85, 105, 0.9) 100%);
        backdrop-filter: blur(30px);
        border: 2px solid rgba(6, 182, 212, 0.3);
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(6, 182, 212, 0.1) inset;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px) scale(0.95);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 10000;
        overflow: hidden;
    }
    
    .navbar-search-form::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #06b6d4, #14b8a6, #06b6d4);
        background-size: 200% 100%;
        animation: shimmer-border 3s linear infinite;
    }
    
    @keyframes shimmer-border {
        0% { background-position: 200% 0; }
        100% { background-position: -200% 0; }
    }
    
    .navbar-search-form.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }
    
    .search-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    }
    
    .search-title {
        font-family: 'Poppins', sans-serif;
        font-size: 1.2rem;
        font-weight: 700;
        background: linear-gradient(135deg, #06b6d4, #14b8a6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .search-close {
        background: rgba(6, 182, 212, 0.1);
        border: 1px solid rgba(6, 182, 212, 0.3);
        color: #06b6d4;
        cursor: pointer;
        padding: 8px;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .search-close:hover {
        background: rgba(6, 182, 212, 0.2);
        border-color: rgba(6, 182, 212, 0.5);
        transform: rotate(90deg) scale(1.1);
    }
    
    .search-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .search-input {
        flex: 1;
        padding: 16px 20px;
        background: rgba(6, 182, 212, 0.08);
        border: 2px solid rgba(6, 182, 212, 0.2);
        border-radius: 14px;
        color: #fff;
        font-size: 1rem;
        font-family: 'Inter', sans-serif;
        transition: all 0.3s ease;
        outline: none;
    }
    
    .search-input:focus {
        background: rgba(6, 182, 212, 0.12);
        border-color: rgba(6, 182, 212, 0.6);
        box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1), 0 0 30px rgba(6, 182, 212, 0.3);
        transform: translateY(-2px);
    }
    
    .search-input::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }
    
    .search-button {
        background: linear-gradient(135deg, #06b6d4, #14b8a6);
        border: none;
        color: #000;
        cursor: pointer;
        padding: 16px 28px;
        border-radius: 14px;
        font-weight: 700;
        font-size: 0.95rem;
        font-family: 'Poppins', sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
        white-space: nowrap;
    }
    
    .search-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5);
    }
    
    .search-button:active {
        transform: translateY(0);
    }
    
    .search-hint {
        margin-top: 15px;
        padding: 12px;
        background: rgba(6, 182, 212, 0.05);
        border-left: 3px solid rgba(6, 182, 212, 0.5);
        border-radius: 8px;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.6);
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    /* Mobile Menu Toggle */
    .mobile-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }
    
    .mobile-toggle-line {
        width: 25px;
        height: 2px;
        background: #06b6d4;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .mobile-toggle.active .mobile-toggle-line:nth-child(1) {
        transform: rotate(45deg) translateY(7px);
    }
    
    .mobile-toggle.active .mobile-toggle-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active .mobile-toggle-line:nth-child(3) {
        transform: rotate(-45deg) translateY(-7px);
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile Menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: linear-gradient(180deg, rgba(51, 65, 85, 0.95) 0%, rgba(71, 85, 105, 0.95) 100%);
        backdrop-filter: blur(30px);
        border-left: 2px solid rgba(6, 182, 212, 0.3);
        z-index: 9999;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    }
    
    .mobile-menu.active {
        right: 0;
    }
    
    .mobile-menu::-webkit-scrollbar {
        width: 6px;
    }
    
    .mobile-menu::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #06b6d4, #14b8a6);
        border-radius: 10px;
    }
    
    .mobile-menu-header {
        padding: 25px 20px;
        border-bottom: 1px solid rgba(6, 182, 212, 0.2);
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(6, 182, 212, 0.05);
    }
    
    .mobile-menu-title {
        font-size: 1.3rem;
        font-weight: 800;
        background: linear-gradient(135deg, #06b6d4, #14b8a6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .mobile-menu-close {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(6, 182, 212, 0.1);
        border: none;
        color: #06b6d4;
        font-size: 1.2rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-close:hover {
        background: rgba(6, 182, 212, 0.2);
        transform: rotate(90deg);
    }
    
    .mobile-menu-list {
        list-style: none;
        padding: 20px;
        margin: 0;
    }
    
    .mobile-menu-item {
        margin-bottom: 10px;
    }
    
    .mobile-menu-link {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 16px 18px;
        color: rgba(255, 255, 255, 0.95);
        text-decoration: none;
        border-radius: 12px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        border: 1px solid transparent;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-menu-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .mobile-menu-link:hover::before {
        left: 100%;
    }
    
    .mobile-menu-link:hover {
        background: rgba(6, 182, 212, 0.15);
        color: #06b6d4;
        border-color: rgba(6, 182, 212, 0.3);
        transform: translateX(5px);
    }
    
    .mobile-menu-link i {
        width: 24px;
        text-align: center;
        font-size: 1.2rem;
    }
    
    .mobile-dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 16px 18px;
        background: rgba(6, 182, 212, 0.08);
        border: 1px solid rgba(6, 182, 212, 0.2);
        color: rgba(255, 255, 255, 0.95);
        font-weight: 600;
        font-size: 1rem;
        text-align: left;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-bottom: 8px;
    }
    
    .mobile-dropdown-toggle:hover {
        background: rgba(6, 182, 212, 0.15);
        color: #06b6d4;
        border-color: rgba(6, 182, 212, 0.4);
        transform: translateX(3px);
    }
    
    .mobile-dropdown-toggle i:first-child {
        margin-right: 12px;
        width: 24px;
        text-align: center;
        font-size: 1.2rem;
    }
    
    .mobile-dropdown-toggle .dropdown-icon {
        transition: transform 0.3s ease;
        font-size: 0.9rem;
    }
    
    .mobile-dropdown-toggle.active .dropdown-icon {
        transform: rotate(180deg);
    }
    
    .mobile-dropdown-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding-left: 25px;
        margin-top: 5px;
    }
    
    .mobile-dropdown-content.active {
        max-height: 1000px;
    }
    
    .mobile-dropdown-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 18px;
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        border-radius: 10px;
        margin-top: 6px;
        margin-bottom: 4px;
        transition: all 0.3s ease;
        font-weight: 500;
        border: 1px solid transparent;
    }
    
    .mobile-dropdown-item i {
        width: 20px;
        text-align: center;
        font-size: 1.1rem;
    }
    
    .mobile-dropdown-item:hover {
        background: rgba(6, 182, 212, 0.12);
        color: #06b6d4;
        border-color: rgba(6, 182, 212, 0.25);
        transform: translateX(8px);
        padding-left: 22px;
    }
    
    /* Language dans le menu mobile */
    .mobile-language-flag {
        border-radius: 2px;
        object-fit: cover;
        display: inline-block;
        vertical-align: middle;
    }
    
    .mobile-menu-link[onclick="toggleLanguage()"] {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        cursor: pointer;
    }
    
    .mobile-menu-link[onclick="toggleLanguage()"]:hover {
        background: rgba(6, 182, 212, 0.2) !important;
        border-color: rgba(6, 182, 212, 0.5) !important;
        color: #06b6d4 !important;
    }
    
    /* Responsive */
    @media (max-width: 968px) {
        .navbar-menu {
            display: none;
        }
        
        .mobile-toggle {
            display: flex;
        }
        
        .navbar-cta {
            display: none;
        }
        
        .navbar-search-container {
            margin-right: 10px;
        }
        
        .navbar-language-widget {
            display: none !important;
        }
        
        .navbar-search-icon {
            width: 36px;
            height: 36px;
            font-size: 0.9rem;
            margin-right: 8px;
        }
        
        .navbar-search-form {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            margin: 0;
            width: 100%;
            max-width: 100%;
            border-radius: 0;
            padding: 20px;
            z-index: 10001;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
            backdrop-filter: blur(40px);
            -webkit-backdrop-filter: blur(40px);
        }
        
        .navbar-search-form::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .navbar-search-form.active::after {
            opacity: 1;
        }
        
        .navbar-search-form.active {
            transform: translateY(0) scale(1);
        }
        
        .search-header {
            margin-bottom: 25px;
            padding-bottom: 20px;
        }
        
        .search-wrapper {
            flex-direction: column;
            gap: 15px;
        }
        
        .search-input {
            width: 100%;
            padding: 18px 20px;
            font-size: 1.1rem;
        }
        
        .search-button {
            width: 100%;
            padding: 18px 28px;
            font-size: 1rem;
        }
        
        .search-hint {
            margin-top: 20px;
            padding: 15px;
            font-size: 0.9rem;
        }
    }
    
    @media (max-width: 480px) {
        .navbar-container {
            padding: 0 15px;
            height: 65px;
        }
        
        .logo-text {
            font-size: 0.95rem;
        }
        
        .logo-image {
            width: 35px;
            height: 35px;
        }
        
        .navbar-search-form {
            padding: 15px;
        }
    }
