.home-brand-section {
max-width: 1200px;
margin: 40px auto;
text-align: center;
}

.home-brand-section h2 {
margin-bottom: 10px;
font-size: 2rem;
font-weight: 600;
}

.home-brand-section p {
max-width: 850px;
margin: 0 auto 30px auto;
color: #666;
}

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

.brand-grid a {
display: block;
text-decoration: none;
color: inherit;
background: #fff;
border: 1px solid #e5e5e5;
border-radius: 8px;
overflow: hidden;
transition: all 0.25s ease;
}

.brand-grid a:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.brand-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.brand-grid span {
    display: block;
    padding: 12px;
    font-weight: 600;
}

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



body#product .product-price {
    font-size: 30px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    color: #b50a13 !important;
}