body{
	font-family: "Arial", sans-serif;
	margin: 0;
	padding: 0;
	background-color: #ebae34;
}
header{
	background-color: #333;
    color: white;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-content{
		display: flex;
		align-items: center;
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 20px;
}
.header-content h1 {
    margin: 0;
    flex-grow: 1;
}
nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
nav ul li {
    margin: 0 15px;
}
nav ul li a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    transition: color 0.3s ease;
}
nav ul li a:hover {
    color: #ebae34;
}
.cart-icon{
    display: flex;
    align-items: center;
}
.cart-icon img{
    width: 30px;
    height: auto;
}
.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}
.product{
	background-color: #bfbfbf;
	margin: 10px;
	padding: 20px;
	width: calc((100% / 3) - 40px);
	box-shadow: 0 5px 10px rgba(0, 0, 0, 1);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.product img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}
.product h2 {
    color: #333;
    margin-bottom: 10px;
	font-weight: 100;
}
.price {
    color: #007bff;
    font-size: 1.2rem;
	font-weight: bold;
    margin-bottom: 15px;
}
.add-cart {
	font-size: 15px;
	white-space: nowrap;
    background-color: #db0000;
    color: white;
    border: 1;
	border-color: #611515;
    padding: 10px 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.add-cart:hover {
    background-color: #b30000;
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}
@media screen and (max-width: 768px) {
    .product {
        width: calc((100% / 2) - 30px); /* Adjust for 2 products per row */
    }
}

@media screen and (max-width: 480px) {
    .product {
        width: 100%; /* Full width for single product per row */
    }
}

