.nav-bar{
background-color: salmon;
position: fixed;
height: 50px;
left: 0;
z-index: 1200;
width: 100%;

}



/* Search container width */
.search-container {
    width: 40%;
    max-width: 500px;
}

/* Input styling */
.search-container .search-input {
    border-radius: 30px;
    padding: 10px 40px 10px 15px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

/* Focus effect */
.search-input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 8px rgba(13, 110, 253, 0.2);
}

/* Search icon inside input */
.search-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #888;
    font-size: 16px;
}

/* Cart styling */
.cart-icon {
    font-size: 20px;
    color: #333;
    transition: 0.3s;
}

.cart-icon:hover {
    color: #0d6efd;
    transform: scale(1.1);
}


/* Nav links container */
.nav-links {
    list-style: none;
}

/* Each nav item */
.nav-links .nav-item {
    position: relative;
}

/* Link styling */
.nav-links .nav-link {
    color: #333;
    font-weight: 500;
    font-size: 16px;
    padding: 6px 10px;
    transition: all 0.3s ease;
}

/* Hover effect */
.nav-links .nav-link:hover {
    color: #0d6efd;
}

/* Active link */
.nav-links .nav-link.active {
    color: #0d6efd;
    font-weight: 600;
}

/* Underline animation */
.nav-links .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #0d6efd;
    transition: width 0.3s ease;
}

.nav-links .nav-link:hover::after {
    width: 100%;
}



/* =========================
Responsive Speed
========================= */
@media (max-width: 768px) {

    .nav-links .nav-item {
    display: none;
}

}





        

