/* FuelGuard Brands Widget
   Prefix: fuelguard-brands-, brand-
   ======================================== */

/* Ana Konteyner */
.fuelguard-brands-circle {
    padding: 30px 0;
    background-color: #f7f9fc; 
    text-align: center;
    font-family: 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    width: 100%;
    box-sizing: border-box;
}

/* Marka Izgara Stili */
.brands-grid-circle {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); 
    gap: 20px; 
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}

/* Brand Unit Container */
.brand-unit-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Tekil Marka Kartı (TAM DAİRE KUTU) */
.brand-card-circle {
    background-color: #ffffff; 
    width: 120px;
    height: 120px;
    border-radius: 50%; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s, border-color 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 3px solid transparent; 
    margin: 0 auto; 
    padding: 15px;
    box-sizing: border-box;
}

/* Hover Efekti */
.brand-card-circle:hover {
    transform: scale(1.1); 
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.25);
    border: 3px solid #dc3545;
    cursor: pointer;
}

/* Logo Stili */
.brand-logo-circle {
    max-width: 70px; 
    max-height: 70px;
    width: 100%;
    height: auto;
    filter: grayscale(100%); 
    opacity: 0.7;
    transition: filter 0.4s, opacity 0.4s;
    object-fit: contain;
}

.brand-card-circle:hover .brand-logo-circle {
    filter: grayscale(0%); 
    opacity: 1;
}

/* Marka Adı Stili */
.brand-name-circle {
    margin: 0;
    padding: 0;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
}

/* Link Wrapper */
.brand-link-wrapper {
    text-decoration: none;
    display: block;
    color: inherit;
}

.brand-link-wrapper:hover {
    text-decoration: none;
}

.is-clickable {
    cursor: pointer;
}

.is-clickable .brand-card-circle {
    cursor: pointer;
}

.is-clickable .brand-name-circle {
    transition: color 0.3s ease;
}

.is-clickable:hover .brand-name-circle {
    color: #dc3545;
}

/* ---------------------------------------------------- */
/* Mobil Uyumluluk */
/* ---------------------------------------------------- */
@media (max-width: 768px) {
    .brands-grid-circle {
        grid-template-columns: repeat(3, 1fr) !important; 
        gap: 15px;
        padding: 0 10px;
    }
    .brand-card-circle {
        width: 100px;
        height: 100px;
        padding: 10px;
    }
    .brand-logo-circle {
        max-width: 60px;
        max-height: 60px;
    }
    .brand-name-circle {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .brands-grid-circle {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }
    .brand-card-circle {
        width: 90px;
        height: 90px;
    }
    .brand-logo-circle {
        max-width: 50px;
        max-height: 50px;
    }
    .brand-name-circle {
        font-size: 10px;
    }
}

