/* Basic styles for Car Brands Filter Widget */
.cbfw-widget { 
    text-align: center; 
}

/* Marka ikonları alanı */
.cbfw-brand-icons { 
    display: flex; 
    justify-content: center; 
    gap: 12px; 
    margin-bottom: 18px; 
    flex-wrap: wrap; 
}

/* Buton stili */
.cbfw-brand-btn { 
    border: 0; 
    background: transparent; 
    padding: 12px;         /* biraz daha geniş alan */
    cursor: pointer; 
    opacity: 0.7; 
    transition: all 0.2s ease; 
    border-radius: 10px;   /* yuvarlaklığı artırdık */
}

/* Aktif ikon */
.cbfw-brand-btn.cbfw-active { 
    opacity: 1; 
    transform: scale(1.05); 
    box-shadow: 0 6px 18px rgba(0,0,0,0.08); 
}

/* İkon boyutu - 2x */
.cbfw-brand-btn img { 
    width: 112px;   /* 56px x 2 */
    height: 112px;  /* 56px x 2 */
    object-fit: contain; 
    display: block; 
}

/* Ürünler alanı */
.cbfw-products { 
    max-width: 1100px; 
    margin: 0 auto; 
}

.cbfw-grid { 
    display: grid; 
    grid-template-columns: repeat(3,1fr); 
    gap: 18px; 
}

.cbfw-item { 
    padding: 12px; 
    border: 1px solid #eee; 
    border-radius: 8px; 
    text-align: center; 
    background: #fff; 
}

.cbfw-thumb img { 
    max-width: 100%; 
    height: auto; 
    display: block; 
    margin: 0 auto 10px; 
}

.cbfw-title { 
    font-size: 16px; 
    margin: 0 0 6px; 
}

.cbfw-price { 
    font-weight: 600; 
    color: #111; 
}

.cbfw-no-products { 
    color: #777; 
}

/* Mobil uyumlu ikon boyutu */
@media (max-width: 800px){
    .cbfw-brand-btn img { 
        width: 90px; 
        height: 90px; 
    }
}

@media (max-width: 480px){
    .cbfw-brand-btn img { 
        width: 75px; 
        height: 75px; 
    }
}
