 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background: #fff;
        }

        .sna-navbar-wrapper {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            z-index: 9999;
        }

        .navbar {
            background: #fff;
            padding: 15px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #222;
            width: 100%;
            max-width: 100%;
            position: relative;
            z-index: 9999;
        }

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

        /* Logo image styling */
        .logo-image {
            height: 50px;
            width: auto;
            object-fit: contain;
        }

        .logo-text {
            color: #6a023e;
            font-size: 20px;
            font-weight: bold;
            letter-spacing: 2px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: #6a023e;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s;
            cursor: pointer;
        }

        .dropdown-icon {
            font-size: 10px;
            transition: transform 0.3s;
        }

        .nav-item:hover .dropdown-icon {
            transform: rotate(180deg);
        }

        .search-icon {
            color: #5A003B;
            font-size: 18px;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .search-icon:hover {
            transform: scale(1.1);
        }

        /* Dropdown menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: #6a023e;
            min-width: 200px;
            padding: 15px 0;
            margin-top: 15px;
            border-radius: 4px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s;
            z-index: 1000;
        }

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

        .dropdown-item {
            padding: 10px 20px;
            color: #fff;
            text-decoration: none;
            display: block;
            font-size: 13px;
            transition: background 0.3s, color 0.3s;
        }

        /* Mobile menu button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #6a023e;
            font-size: 24px;
            cursor: pointer;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-menu {
                gap: 20px;
            }

            .nav-link {
                font-size: 13px;
            }

            .logo-image {
                height: 45px;
            }

            .logo-text {
                font-size: 18px;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .logo-image {
                height: 40px;
            }

            .logo-text {
                font-size: 16px;
                letter-spacing: 1px;
            }

            .navbar {
                padding: 15px 20px;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 76px;
                flex-direction: column;
                background: #eee;
                width: 100vw;
                height: calc(100vh - 76px);
                text-align: center;
                transition: left 0.3s;
                padding: 20px 0;
                gap: 0;
                z-index: 9998;
                overflow-y: auto;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item {
                width: 100%;
                border-bottom: 1px solid #222;
            }

            .nav-link {
                padding: 15px 0;
                display: block;
                width: 100%;
            }

            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                margin-top: 0;
                padding: 10px 0;
                box-shadow: none;
                background: #6a023e;
                max-height: none;
                overflow: visible;
            }

            .dropdown-menu.active {
                max-height: none;
            }

            .dropdown-item {
                padding: 12px 20px;
                border-bottom: 1px solid #1a1a1a;
                font-size: 12px;
            }

            .nav-item:hover .dropdown-menu {
                opacity: 1;
                visibility: visible;
                transform: none;
            }

            .dropdown-icon {
                display: none;
            }
        }
  