/* ============================================
   COLLECTION & BRAND CARDS
   ============================================ */

#collections-list,
#brands-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 0 auto 40px;
    padding: 0 20px;
    max-width: 60%;
    box-sizing: border-box;
}

.collection-card,
.brand-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.collection-card:hover,
.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.collection-card img,
.brand-card img {
    object-fit: cover;
    width: 100%;
    height: auto;
    max-width: 250px;
    max-height: 150px;
}

.collection-card span,
.brand-card span {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 600px) {
    .collection-card,
    .brand-card {
        flex: 0 0 100%;
    }
}
