style>
.product-card {
max-width: 320px;
border: 1px solid #ddd;
border-radius: 12px;
overflow: hidden;
font-family: Arial, sans-serif;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
margin: 20px auto;
.product-card img {
width: 100%;
height: auto;
}
.product-content {
padding: 15px;
}
.product-title {
font-size: 16px;
font-weight: bold;
margin-bottom: 8px;
}
.product-price {
font-size: 20px;
color: #e60023;
font-weight: bold;
margin-bottom: 5px;
}
.old-price {
font-size: 14px;
color: #777;
text-decoration: line-through;
margin-left: 5px;
}
.product-rating {
color: #ffa500;
font-size: 14px;
margin-bottom: 10px;
}
.buy-btn {
display: block;
text-align: center;
background: #ff6a00;
color: #fff;
padding: 12px;
border-radius: 8px;
text-decoration: none;
font-weight: bold;
transition: 0.3s;
}
.buy-btn:hover {
background: #e55d00;
}
