34 lines
657 B
CSS
34 lines
657 B
CSS
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background-color: #F8F9FA;
|
|
}
|
|
|
|
.hero-section {
|
|
background: linear-gradient(to right, #e0eafc, #cfdef3);
|
|
}
|
|
|
|
.product-card {
|
|
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
|
|
border: none;
|
|
border-radius: 0.5rem;
|
|
}
|
|
|
|
.product-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.product-card .card-img-top {
|
|
border-top-left-radius: 0.5rem;
|
|
border-top-right-radius: 0.5rem;
|
|
aspect-ratio: 1 / 1;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.discount-badge {
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 10px;
|
|
font-size: 0.9em;
|
|
}
|