* {
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', sans-serif;
background: #f4f4f4;
margin: 0;
padding: 20px;
}
.product-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 20px;
}
.product-card {
background: #fff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
transition: transform 0.2s ease;
}
.product-card:hover {
transform: translateY(-5px);
}
.product-card img {
width: 100%;
height: 200px;
object-fit: cover;
display: block;
}
.product-info {
padding: 16px;
}
.product-name {
font-size: 16px;
font-weight: bold;
margin-bottom: 8px;
}
.product-price {
font-size: 15px;
color: #d32f2f;
margin-bottom: 4px;
}
.product-meta {
font-size: 13px;
color: #777;
}
.product-link {
display: block;
text-align: center;
padding: 10px;
background: #0070f3;
color: #fff;
text-decoration: none;
font-weight: bold;
border-radius: 0 0 12px 12px;
}
.product-link:hover {
background: #0053c7;
}