.collection-details { 
    max-width: 1200px; 
    margin: 2rem auto; 
}
.collection-header {
    text-align: center;
    margin-bottom: 2rem;
}
.collection-header h1 { 
    font-size: 2.5em; 
    margin-bottom: 1rem; 
}
.collection-header .description { 
    font-size: 1.1em; 
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}
.product-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); 
    gap: 2rem; 
    margin-top: 2rem;
}
.product-card { 
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.product-card a {
    text-decoration: none;
    color: inherit;
}
.product-card img { 
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
}
.product-info {
    padding: 0 10px;
}
.product-info h5 {
    margin: 8px 0;
}
.original-price {
    font-size: 14px;
    color: gray;
}
.no-products {
    text-align: center;
    padding: 2rem;
    font-size: 1.2em;
    color: #666;
}