/* Collection Page Specific Styles */

/* Collection Banner */
.collection-banner {
    padding: 40px 0;
    background-color: var(--color-light, #f9f9f9);
    margin-bottom: 40px;
}

.collection-banner-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.collection-image {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    border-radius: var(--radius-md, 8px);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 4px solid #fff;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-description {
    flex: 1;
}

.collection-description h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.collection-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text, #666);
}

/* Responsive adjustments for the banner */
@media (max-width: 768px) {
    .collection-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .collection-image {
        width: 200px;
        height: 200px;
        margin-bottom: 20px;
    }

    .collection-description h2 {
        font-size: 1.5rem;
    }
}
