/* WC Brand Grid - Frontend Styles */

.wcbg-brand-grid {
    display: grid;
    gap: 30px;
    margin: 30px 0;
}

/* Default 3 columns */
.wcbg-brand-grid[data-columns="3"] {
    grid-template-columns: repeat(3, 1fr);
}

.wcbg-brand-grid[data-columns="2"] {
    grid-template-columns: repeat(2, 1fr);
}

.wcbg-brand-grid[data-columns="4"] {
    grid-template-columns: repeat(4, 1fr);
}

.wcbg-brand-grid[data-columns="5"] {
    grid-template-columns: repeat(5, 1fr);
}

/* Brand Card */
.wcbg-brand-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 40px 20px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.wcbg-brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #d0d0d0;
}

.wcbg-brand-card-inner {
    text-align: center;
}

/* Brand Logo */
.wcbg-brand-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.wcbg-brand-logo img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.wcbg-brand-card:hover .wcbg-brand-logo img {
    transform: scale(1.05);
}

/* Brand Info */
.wcbg-brand-info {
    margin-top: 20px;
}

.wcbg-brand-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wcbg-product-count {
    font-size: 13px;
    color: #666;
    margin: 0;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 992px) {
    .wcbg-brand-grid[data-columns="3"],
    .wcbg-brand-grid[data-columns="4"],
    .wcbg-brand-grid[data-columns="5"] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .wcbg-brand-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .wcbg-brand-card {
        padding: 30px 15px;
    }

    .wcbg-brand-logo {
        height: 80px;
        margin-bottom: 20px;
    }

    .wcbg-brand-logo img {
        max-height: 80px;
    }
}
