}
منتجاتنا
اسم المنتج 1
وصف المنتج 1
السعر: 1000 درهم
اشترِ الآن
اسم المنتج 2
وصف المنتج 2
السعر: 1500 درهم
اشترِ الآن
#products {
display: flex;
justify-content: space-around;
padding: 20px;
background-color: #f8f9fa;
}
.product {
text-align: center;
border: 1px solid #ddd;
padding: 20px;
width: 250px;
border-radius: 8px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.product img {
width: 100%;
height: auto;
border-radius: 8px;
}
.product h3 {
font-size: 18px;
color: #333;
}
.product p {
font-size: 16px;
color: #666;
}
.product a {
display: inline-block;
padding: 10px 20px;
margin-top: 10px;
background-color: #007bff;
color: #fff;
text-decoration: none;
border-radius: 5px;
}
.product a:hover {
background-color: #0056b3;
}