main{
    background:plum ;
    
}
.header {
    text-align: center;
    padding: 2px;
    background-color: rgb(212, 94, 212);
    border-bottom: 1px solid #eee;
    font-style: italic;
    color: white;
}
.left-nav{
    color: white;
}
.search-container {
            text-align: left;
            margin-top: 10px;
        }

        input[type="text"] {
            padding: 10px;
            width: 250px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        button {
            padding: 10px 15px;
            border: none;
            background-color: purple;
            color: white;
            border-radius: 5px;
            cursor: pointer;
        }

        button:hover {
            background-color: darkviolet;
        }

.menu-g{
    display: inline;
}
.menu-items a{ 
    text-decoration: none;
    padding: 5px;
    margin-bottom: 30px;
    color:rgb(167, 4, 139);
}
ul li {
    display: block;
    margin: 5px 0;
    list-style: none;
}

.menu-items{
    display: none;
}
.menu-g:hover .menu-items{
    display: block;
    
}
/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #ddd;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

/* Each item */
.nav-item {
    text-align: center;
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

.nav-item i {
    font-size: 20px;
    display: block;
}

/* Badge (notification number) */
.badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: orange;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
}

.icon-wrapper {
    position: relative;
}
/* Grid Container */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 2 items per row */
    gap: 10px;
    padding: 10px;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    border-radius: 8px;
}

.product-title {
    font-size: 14px;
    margin: 5px ;
}

.price {
    color: orange;
    font-weight: bold;
}
.add-cart{
    color:orange ;
    font-size: larger;
}