.collection-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}
.collection-product {
background: white;
border-radius: 0.5rem;
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.collection-product:hover {
transform: translateY(-4px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.collection-product__image {
aspect-ratio: 1;
overflow: hidden;
}
.collection-product__image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}
.collection-product:hover .collection-product__image img {
transform: scale(1.05);
}
.collection-product__info {
padding: 1rem;
}
.collection-product__title {
font-size: 1rem;
font-weight: 600;
margin-bottom: 0.5rem;
}
.collection-product__title a {
color: var(--color-text-primary);
text-decoration: none;
}
.collection-product__title a:hover {
color: var(--color-primary);
}
.collection-product__price {
display: flex;
gap: 0.5rem;
align-items: center;
}
.collection-product__price-current {
font-weight: 600;
color: var(--color-text-primary);
}
.collection-product__price-compare {
text-decoration: line-through;
color: var(--color-text-secondary);
font-size: 0.875rem;
}