/**
 * Brand Showcase Styles
 */

.brand-showcase-section {
    padding: 60px 0;
}

.brand-showcase-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.brand-info {
    flex: 0 0 300px;
}

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

.brand-logo img {
    max-width: 150px;
    height: auto;
}

.brand-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.brand-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.brand-btn {
    display: inline-block;
    background: #0057A0;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
}

.brand-products-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .brand-products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .brand-showcase-wrapper { flex-direction: column; text-align: center; }
    .brand-info { flex: 1; }
}

@media (max-width: 575px) {
    .brand-products-grid { grid-template-columns: repeat(1, 1fr); }
}




