@media (min-width: 1280px) {
    .navbar .container {
        max-width: 1280px
    }

    .navbar .nav-cart {
        display: none
    }
}

header{
		position: sticky;
            top: 0;
            z-index: 9995; 
}
.navbar{
	padding:0 10px !important;
}
.cyber-nav {
    background: linear-gradient(135deg, #252543 0%, #0a0a12 100%) !important;
    border-bottom: 1px solid rgba(0, 247, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 247, 255, 0.1);
    backdrop-filter: blur(5px);
    border-top: 1px solid #333;
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #00f7ff, #ff00aa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
    transition: all 0.3s ease;
    padding: 0 10px;
    max-width: 180px
}

.navbar-brand:hover {
    text-shadow: 0 0 15px rgba(0, 247, 255, 0.5);
}

.cyber-link {
    color: #e0e0ff !important;
    font-weight: 600;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cyber-link:hover {
    color: #00f7ff !important;
    transform: translateY(-2px);
}

.cyber-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, #00f7ff, #ff00aa);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.cyber-link:hover::before {
    width: 80%;
}

.dropdown-menu {
    background-color: rgba(10, 10, 18, 0.95);
    border: 1px solid rgba(0, 247, 255, 0.1);
    border-radius: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.dropdown-item {
    color: #e0e0ff;
    padding: 0.75rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    color: #00f7ff;
    background-color: transparent;
    padding-left: 2rem;
}

.dropdown-item::before {
    content: '>';
    position: absolute;
    left: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    color: #00f7ff;
}

.dropdown-item:hover::before {
    opacity: 1;
    left: 1rem;
}

.cyber-divider {
    border-top: 1px solid rgba(0, 247, 255, 0.2);
    margin: 0.5rem 0;
}

.cyber-search {
    position: relative;
    width: 250px;
}

.cyber-search-input {
    background-color: rgba(5, 5, 8, 0.7);
    border: 2px solid rgba(0, 247, 255, 0.3);
    color: white;
    padding-right: 45px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cyber-search-input:focus {
    background-color: rgba(5, 5, 8, 0.9);
    color: white;
    border-color: #00f7ff;
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.3);
}

.cyber-search-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: transparent;
    border: none;
    color: #666;
    padding: 0 15px;
    transition: all 0.3s ease;
}

.cyber-search-input:focus + .cyber-search-btn {
    color: #00f7ff;
}

.cyber-cart {
    position: relative;
    transition: all 0.3s ease;
}

.cyber-cart:hover {
    transform: scale(1.1);
}

.cyber-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ff00aa, #ff0066);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(255, 0, 170, 0.5);
    animation: pulse 2s infinite;
}
.navbar .navbar-nav i{font-size: 24px}
.navbar .cyber-search-btn  i{font-size: 24px}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.cyber-icon {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cyber-icon:hover {
    color: #00f7ff !important;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
    transform: scale(1.2);
}

.navbar-toggler {
    border: 1px solid rgba(0, 247, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 247, 255, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .cyber-search {
        width: 100%;
        margin: 15px 0;
    }

    .dropdown-menu {
        background-color: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
    }

    .dropdown-item {
        padding-left: 2rem;
    }

    .dropdown-item::before {
        opacity: 1;
        left: 0.5rem;
    }

}

.navbar .navbar-brand img {
    height: 60px;
}

.navbar-top {
    background: #000;
    color: #fff;
    text-align: center;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    font-weight: 600;
}