
.brands-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0;
    margin-bottom: 40px;
    text-align: center;
}

.brands-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.brands-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.brand-card {
    background: white;
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 25px 15px;
    text-align: center;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

.brand-logo-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.brand-logo {
    max-height: 70px;
    max-width: 120px;
    object-fit: contain;
}

.brand-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto;
}

.brand-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.brand-products-count {
    color: #666;
    font-size: 0.9rem;
    background: #f8f9fa;
    padding: 4px 12px;
    border-radius: 15px;
    display: inline-block;
}

.no-brands {
    text-align: center;
    padding: 80px 20px;
    color: #666;
    background: #f8f9fa;
    border-radius: 15px;
    margin: 40px 0;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

.brands-stats {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.stats-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
}

.stats-label {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .brands-header {
        padding: 40px 0;
    }
    
    .brands-title {
        font-size: 2rem;
    }
    
    .brand-logo-container {
        height: 60px;
    }
    
    .brand-logo {
        max-height: 50px;
        max-width: 100px;
    }
    
    .brand-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}
