.shop-brands-plugin.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}
.shop-brands-plugin .brand-card {
    background: white;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
    display: block;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.shop-brands-plugin .brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.02);
    border-color: #cbd5e1;
}
.shop-brands-plugin .brand-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 8px;
}
.shop-brands-plugin .brand-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.2s;
}
.shop-brands-plugin .brand-card:hover .brand-logo img {
    filter: grayscale(0%);
}
.shop-brands-plugin .brand-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0f172a;
}
.shop-brands-plugin .brand-link {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f1f5f9;
    color: #334155;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.5s;
    text-decoration: none;
    margin-top: 8px;
}
.shop-brands-plugin .brand-card:hover .brand-link {
    background-color: #43c8d1;
    color: white;
}

.shop-brands-plugin-brand {
    display: grid;
    grid-template-columns: minmax(auto, 300px) 1fr;
    gap: 20px;
}

.shop-brands-plugin-brand .brand-img {
    color: white;
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center; 
    font-weight: bold;
    border-radius: 8px;
}

.shop-brands-plugin-brand img {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
}

.shop-brands-plugin-brand-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.shop-brands-plugin-brand .brand-link {
    background: none;
    border: 2px solid #01C0CE;
    color: #01C0CE;
    font-size: 16px;
    line-height: 24px;
    border-radius: 8px;
    text-decoration: none;
    outline: none;
    padding: 11px 10px;
    transition: 0.3s background, color 0.3s;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    background: white;
    max-width: 200px;
}

.shop-brands-plugin-brand .brand-link:hover{
    background: #01C0CE;
    color: white;
}

@media (max-width: 768px) {
    .shop-brands-plugin-brand {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .shop-brands-plugin-brand img {
        width: auto;
        height: 200px;
        margin: 0 auto;
    }
}