.products{
    flex-grow:1;
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));
    gap:20px;
}
.product-box{
    background:white;
    padding:10px;
    border-radius:5px;
    box-shadow:2px 2px 10px rgba(0, 0, 0, 0.1);
    width:200px;
    text-align:center;
}
.NavLogo{
    width:100px;
    background-color: white;
    color:black;
    text-decoration: none;
}
button.atc{
    color:white;
    background-color:rgb(6, 147, 65);
    height:30px;
    width:100px;
    border:none;
    cursor:pointer;
}
button.atc:active{
    transform:scale(0.95);
}
button.atc:hover{
    background-color:rgb(159, 217, 183);
}
.product-box img{
    width:170px;
    height:150px;
    border-radius:5px;
}
.disc{
    font-size:15px;
    background-color:rgb(127, 255, 148);
    width:100px;
}
s{
    color:rgb(174, 171, 171);
    font-size:17px;
}
.sidebar{
    text-align:center;
    width:200px;
    padding:20px;
    background-color: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-item{
    display:block;
    width:100%;
    margin:5px 0;
    padding: 8px;
    color:black;
    cursor: pointer;
}

.nav-item.active{
    background-color:rgb(6, 147, 65);
    color:white;
}

.container{
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding:20px;
}

.logo{
    font-size:24px;
    font-weight:bold;
}
.topnav{
    display:flex;
    justify-content:space-between;
    background-color:#28a745;
    padding:10px 20px;
    color: white;
    align-items:center;
}
.topnav input{
    padding:8px;
    width:250px;
    border:none;
    border-radius:5px;
}
.category{
    accent-color:rgb(6, 147, 65);
}
.no-results{
    text-align:center;
    font-size:18px;
    color:rgb(6, 147, 65);
    font-weight:bold;
    margin-top:20px;
}
body{
    margin:0;
    padding:0;
}

.categories-nav{
    background-color:#f8f8f8;
    padding:10px;
    text-align:center;
    border-bottom:2px solid #ddd;
}
.categories-nav a{
    text-decoration:none;
    color:#333;
    font-weight:bold;
    padding:10px 15px;
    margin:0 10px;
    display:inline-block;
    transition:0.3s;
}

.categories-nav a.active{
    color:green;
}
#navbar-container{
    width:100%;
    min-height:50px;
    border:none;
    background:white;
}
#navbar-container *{
    display:block !important;
}
#search-bar{
    width:400px;
}
.NavLogo:active{
    text-decoration:none;
}
.banner {
    width: 100vw; 
    height: 300px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: fill; 
}

.category-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.category2 {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.category img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: 0.3s;
}

.category:hover img {
    opacity: 0.8;
}

.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

.footer a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline;
}
body {
    font-family: Arial, sans-serif;
}

#sidebar {
    position: fixed;
    top: 50px;
    right: 0;
    width: 200px;
    background: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    padding: 15px;
    display: none; 
    z-index: 1000;
}

.sidebar-link {
    display: block;
    padding: 10px;
    color: black;
    text-decoration: none;
}

.sidebar-link:hover {
    background: lightgray;
}

.nav3{
  cursor:pointer;  
}