        /* ========== Your existing CSS (keep it exactly as before) ========== */
        /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(145deg, #faf5ff 0%, #f1e9ff 100%);
            min-height: 100vh;
        } */

        :root {
            --purple-50: #faf5ff;
            --purple-100: #f3e8ff;
            --purple-200: #e9d5ff;
            --purple-300: #d8b4fe;
            --purple-400: #c084fc;
            --purple-500: #a855f7;
            --purple-600: #9333ea;
            --purple-700: #7e22ce;
            --purple-800: #6b21a5;
            --purple-900: #581c87;
            --purple-dark: #3b0764;
            --shadow-sm: 0 8px 20px rgba(106, 27, 154, 0.08);
            --shadow-md: 0 12px 28px rgba(106, 27, 154, 0.12);
            --shadow-lg: 0 20px 35px -8px rgba(106, 27, 154, 0.2);
            --transition-smooth: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        .container-fluid {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 28px;
        }

        /* Top promo */
        .top_header {
            background: linear-gradient(105deg, #2d0e4b 0%, #5b2b8c 100%);
            position: relative;
            overflow: hidden;
        }

        .top_header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 150%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 70%);
            pointer-events: none;
        }

        .top_header_content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 10px 0;
            font-weight: 500;
        }

        .top_header_content span {
            color: #f3e8ff;
            font-size: 0.95rem;
            background: rgba(255,255,255,0.12);
            padding: 5px 12px;
            border-radius: 100px;
            backdrop-filter: blur(2px);
        }

        .flash_sale {
            background: linear-gradient(95deg, #ffd966, #ffb347);
            padding: 6px 18px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 0.85rem;
            text-decoration: none;
            color: #2c0b3e;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .flash_sale:hover {
            transform: scale(1.02);
            background: linear-gradient(95deg, #ffe083, #ffc34d);
            box-shadow: 0 10px 20px -5px rgba(0,0,0,0.2);
        }

        /* Header (sticky, dual row) */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(12px);
            box-shadow: var(--shadow-sm);
            border-bottom: 1px solid rgba(128, 0, 255, 0.12);
        }

        .desktop-top-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            padding: 14px 0;
            flex-wrap: wrap;
        }

        .desktop-nav-bar {
            border-top: 1px solid rgba(128, 0, 255, 0.08);
            padding: 10px 0;
            display: flex;
            justify-content: center;
        }

        .mobile-header-bar {
            display: none;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
        }

        .navbar-brand {
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.6rem;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #7c3aed, #c084fc);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            transition: 0.2s;
        }

        .logo-icon {
            background: linear-gradient(145deg, #8b5cf6, #6d28d9);
            padding: 6px 10px;
            border-radius: 16px;
            color: white;
            font-size: 1.3rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 12px rgba(109, 40, 217, 0.25);
        }
        .logo{
            width: 150px;
            height: auto;
           
        }

        .desktop-search {
            flex: 1;
            max-width: 420px;
            margin: 0 auto;
        }

        .search-form {
            display: flex;
            align-items: center;
            background: #f4f0fa;
            border-radius: 60px;
            padding: 4px 6px 4px 18px;
            border: 1px solid #e2d6ff;
            transition: var(--transition-smooth);
        }

        .search-form:focus-within {
            border-color: var(--purple-500);
            box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
            background: white;
        }

        .search-input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 10px 6px;
            font-size: 0.95rem;
            font-weight: 500;
            outline: none;
            color: #1f1a2e;
        }

        .search-btn {
            background: linear-gradient(105deg, var(--purple-600), var(--purple-800));
            border: none;
            padding: 7px 20px;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-smooth);
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .search-btn:hover {
            background: linear-gradient(105deg, var(--purple-700), #5b21b6);
            transform: scale(0.97);
        }

        .lang-dropdown {
            position: relative;
            min-width: 150px;
        }

        .lang-btn {
            background: white;
            border: 1px solid var(--purple-200);
            padding: 8px 16px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            justify-content: space-between;
            font-weight: 500;
            transition: var(--transition-smooth);
        }

        .lang-btn:hover {
            background: var(--purple-50);
            border-color: var(--purple-400);
        }

        .lang-btn-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .lang-flag {
            width: 24px;
            height: 17px;
            object-fit: cover;
            border-radius: 4px;
        }

        .dropdown-arrow {
            font-size: 0.75rem;
            color: var(--purple-600);
            transition: transform 0.2s;
        }

        .lang-dropdown-menu {
            position: absolute;
            top: 115%;
            right: 0;
            left: auto;
            background: white;
            border-radius: 24px;
            box-shadow: var(--shadow-lg);
            list-style: none;
            padding: 8px 0;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s ease;
            z-index: 200;
            border: 1px solid #ede9fe;
            min-width: 160px;
        }

        .lang-dropdown-menu.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .lang-dropdown-menu li {
            padding: 8px 18px;
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: background 0.2s;
        }

        .lang-dropdown-menu li:hover {
            background: var(--purple-50);
        }

        .nav-links-desktop {
            display: flex;
            gap: 12px;
            list-style: none;
            flex-wrap: wrap;
            justify-content: center;
        }

        .nav-item .btn-nav {
            background: transparent;
            padding: 8px 24px;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 50px;
            transition: var(--transition-smooth);
            display: inline-block;
            text-decoration: none;
            color: #2d1b3e;
        }

        .nav-item .btn-nav:hover {
            background: var(--purple-100);
            color: var(--purple-800);
            transform: translateY(-2px);
        }
        .nav-item.active .btn-nav {
            background: var(--purple-600);
            color: white;
            transform: translateY(-2px);
        }

        /* Mobile off-canvas (left side) */
        .hamburger-btn {
            background: transparent;
            border: none;
            font-size: 1.8rem;
            color: var(--purple-700);
            cursor: pointer;
            width: 44px;
            height: 44px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }

        .hamburger-btn:hover {
            background: var(--purple-100);
        }

        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(4px);
            z-index: 2000;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.3s ease, visibility 0.3s;
        }

        .mobile-overlay.active {
            visibility: visible;
            opacity: 1;
        }

        .mobile-side-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: min(85%, 320px);
            height: 100%;
            background: white;
            box-shadow: 8px 0 30px rgba(0,0,0,0.2);
            z-index: 2100;
            transform: translateX(-100%);
            transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            overflow-y: auto;
            padding: 28px 20px;
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .mobile-side-menu.open {
            transform: translateX(0);
        }

        .mobile-menu-header {
            display: flex;
            justify-content: flex-end;
        }

        .close-menu-btn {
            background: var(--purple-100);
            border: none;
            font-size: 1.5rem;
            width: 40px;
            height: 40px;
            border-radius: 30px;
            cursor: pointer;
            color: var(--purple-800);
            transition: 0.2s;
        }

        .mobile-nav-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .mobile-nav-links .mobile-nav-item a {
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 600;
            color: #2d1b3e;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid #f0eaff;
            transition: 0.2s;
        }

        .mobile-nav-links .mobile-nav-item a:hover {
            color: var(--purple-700);
            padding-left: 8px;
        }

        .mobile-search {
            margin: 8px 0;
        }

        .mobile-search .search-form {
            width: 100%;
        }

        .mobile-lang {
            width: 100%;
        }

        @media (max-width: 991px) {
            .desktop-top-bar, .desktop-nav-bar {
                display: none;
            }
            .mobile-header-bar {
                display: flex;
            }
        }

        @media (min-width: 992px) {
            .mobile-header-bar, .mobile-overlay, .mobile-side-menu {
                display: none;
            }
        }

        .fa, .fas, .far {
            pointer-events: none;
        }

        /* ========== SEARCH SUGGESTIONS STYLES ========== */
.search-form {
    position: relative;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 40px 10px 18px;
    font-size: 0.95rem;
    font-weight: 500;
    outline: none;
    color: #1f1a2e;
}

.search-btn {
    background: linear-gradient(105deg, #9333ea, #7e22ce);
    border: none;
    padding: 7px 20px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.search-btn:hover {
    background: linear-gradient(105deg, #7e22ce, #6b21a5);
    transform: scale(0.97);
}

/* Suggestions Dropdown */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 35px -8px rgba(106, 27, 154, 0.2);
    border: 1px solid #e2d6ff;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1050;
    display: none;
    margin-top: 8px;
}

.search-suggestions.show {
    display: block;
    animation: fadeInDown 0.2s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Suggestion Groups */
.suggestion-group {
    border-bottom: 1px solid #f3e8ff;
}

.suggestion-group:last-child {
    border-bottom: none;
}

.suggestion-group-header {
    padding: 10px 15px;
    background: #faf5ff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #7e22ce;
    border-bottom: 1px solid #e9d5ff;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: #1f1a2e;
}

.suggestion-item:hover {
    background: #faf5ff;
}

.suggestion-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
    color: #9333ea;
    font-size: 1rem;
}

.suggestion-content {
    flex: 1;
}

.suggestion-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #2d1b3e;
}

.suggestion-subtitle {
    font-size: 0.7rem;
    color: #6b7280;
    line-height: 1.3;
}

.suggestion-type-badge {
    font-size: 0.65rem;
    padding: 2px 10px;
    border-radius: 20px;
    background: #f3e8ff;
    color: #7e22ce;
    font-weight: 500;
}

/* Loading State */
.search-loading {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #e2d6ff;
    border-top-color: #9333ea;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    display: none;
}

.search-loading.active {
    display: block;
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

/* No Results */
.no-results-suggestions {
    padding: 30px 20px;
    text-align: center;
    color: #6b7280;
}

.no-results-suggestions i {
    font-size: 2rem;
    margin-bottom: 10px;
    opacity: 0.5;
}

.no-results-suggestions p {
    margin: 0;
    font-size: 0.85rem;
}

/* View All Link */
.view-all-link {
    padding: 12px 15px;
    text-align: center;
    border-top: 1px solid #f3e8ff;
    background: #faf5ff;
    border-radius: 0 0 16px 16px;
}

.view-all-link a {
    color: #9333ea;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
}

.view-all-link a:hover {
    text-decoration: underline;
}

/* Active suggestion */
.suggestion-item.active {
    background: #f3e8ff;
}
    /* Modern Back to Top with progress ring */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 48px;
        height: 48px;
        border-radius: 30px;
        background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
        border: none;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .back-to-top .progress-ring {
        position: absolute;
        top: 0;
        left: 0;
        transform: rotate(-90deg);
    }

    .progress-ring__circle {
        stroke-dasharray: 125.6;
        stroke-dashoffset: 0;
        transition: stroke-dashoffset 0.1s linear;
        stroke: rgba(255, 255, 255, 0.6);
    }

    .back-to-top i {
        position: relative;
        z-index: 2;
        transition: transform 0.2s;
    }

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        animation: gentleBounce 0.5s ease;
    }

    @keyframes gentleBounce {
        0% {
            transform: scale(0.8);
            opacity: 0;
        }
        70% {
            transform: scale(1.05);
        }
        100% {
            transform: scale(1);
            opacity: 1;
        }
    }

    .back-to-top:hover {
        background: var(--purple-700);
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 12px 24px rgba(128, 0, 255, 0.5);
    }

    .back-to-top:hover i {
        transform: translateY(-2px);
    }
    @media (max-width: 768px) {
        .back-to-top {
            width: 44px;
            height: 44px;
            bottom: 20px;
            right: 20px;
        }        
    }