/* Konteynır */
.brands-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: sans-serif;
}

/* Filtre Butonları */
.brand-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.filter-btn:hover {
    border-color: #000;
}

.filter-btn.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Marka Izgarası */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.brand-item {
    background: #fff;
    border: 1px solid #eee;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.brand-item img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;

}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Filtreleme için Gizleme Sınıfı */
.brand-item.hidden {
    display: none;
}



/* Marka Sayfasında Öne Çıkan Ürünler ve tüm ürünler listesinin tasarımı */
/* Öne Çıkanlar: Yatay Kart Yapısı */
.models-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.model-card-horizontal {
    display: flex;
    gap: 20px;
    border: 1px solid #eee;
    padding: 20px;
    background: #fff;
    align-items: center;
}

.model-img {
    flex: 0 0 150px;
}

.model-img img {
    width: 100%;
    height: auto;
}

/* Tüm Ürünler: 4'lü Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    border: 1px solid #eee;
    text-align: center;
    padding-bottom: 20px;
    background: #fff;
}

.product-info h3 {
    font-size: 1rem;
    margin: 15px 0 5px;
}

.price {
    font-weight: bold;
    color: #0044cc;
    margin-bottom: 15px;
}

.section-divider {
    margin: 60px 0;
    border: 0;
    border-top: 1px solid #ddd;
}