/* ==================== COLLECTIONS PAGE ==================== */

.collections-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
}

.collections-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collections-hero .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.collections-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.collections-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 15px;
}

.collections-hero p {
    font-size: 1.2rem;
    font-weight: 300;
}

.collections-section {
    padding: 80px 0;
}

.collection-block {
    margin-bottom: 100px;
}

.collection-block:last-child {
    margin-bottom: 0;
}

.collection-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.collection-header h2 {
    margin-bottom: 10px;
}

.collection-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .collections-hero h1 {
        font-size: 2.5rem;
    }
    
    .collection-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .collection-block {
        margin-bottom: 60px;
    }
}

