/* Page Marques */
.brands-page {
    padding: 60px 0;
    background: #FAFAFA;
}

.brands-page__header {
    background: #000;
    color: #fff;
    padding: 80px 0;
    margin-bottom: 60px;
    text-align: center;
}

.brands-page__title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 16px;
}

.brands-page__subtitle {
    font-size: 18px;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.brand-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.brand-card__logo-frame {
    margin: 0 auto 20px auto;
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
}

.brand-card__logo-frame img {
    transition: opacity 0.4s ease;
    margin-left: auto;
    margin-right: auto;
}

.brand-card__name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.brand-card__count {
    font-size: 14px;
    color: #666;
}

.brand-card__btn {
    margin-top: 20px;
    padding: 12px 24px;
    background: #000;
    color: #D4AF37;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.brand-card__btn:hover {
    background: #D4AF37;
    color: #000;
}
