*{
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

body{
    background-color: #f4f4f4;

}

.containerp {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem;
}
.sidebar {
    width: 100%;
    padding-right: 0;
    margin-bottom: 2rem;
    /* border: 2px solid #000; */

}
.sidebar h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.sidebar ul {
    list-style: none;
    padding: 0;
}
.sidebar ul li {
    margin-bottom: 0.5rem;
}
.sidebar ul li a {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
}
/* .products {
    width: 100%;
}
.product {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.product img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 1rem;
}
.product-details {
    flex: 1;
    text-align: center;
}
.product-details h3 {
    margin: 0;
    font-size: 1.5rem;
}
.product-details p {
    margin: 0.5rem 0;
}
.product-details .price {
    font-size: 1.2rem;
    color: #333;
}
.product-details .add-to-cart {
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
} */

.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    flex-grow: 1;
    /* border: 2px solid; */
}
.product-item {
    border: 1px solid #ccc;
    border-radius: 10px;
    margin: 5px;
    padding: 10px;
    width: 220px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.product-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.product-item h3 {
    font-size: 18px;
    margin: 10px 0;
}
.product-item p {
    font-size: 14px;
    color: #555;
}
.product-item button {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.product-item button:hover {
    background-color: #555;
    transform: scale(1.1);
}
@media (min-width: 768px) {
    .containerp {
        flex-wrap: nowrap;
    }
    .sidebar {
        width: 20%;
        padding-right: 2rem;
        margin-bottom: 0;
    }
    .products {
        width: 60%;
    }
    .product {
        flex-wrap: nowrap;
    }
    .product img {
        max-width: 150px;
        margin-bottom: 0;
        margin-right: 1rem;
    }
    .product-details {
        text-align: left;
    }
    .nav-right {
        width: 20%;
        padding-left: 2rem;
    }
}
@media (max-width: 767px) {
    .sidebar {
        display: none;
    }
}