.hero-brand{
    position:relative;
    height:70vh;
    min-height:520px;
    overflow:hidden;
}

.hero-brand-image{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-brand-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-brand-content{
    position:absolute;
    top:50%;
    left:10%;
    transform:translateY(-50%);
    max-width:560px;
    color:#fff;
}

.hero-label{
    display:inline-block;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.hero-brand-content h1{
    font-size:56px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-brand-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-actions{
    display:flex;
    gap:16px;
}

.btn-primary,
.btn-secondary{
    padding:14px 30px;
    text-decoration:none;
    border-radius:6px;
    font-weight:600;
}

.btn-primary{
    background:#d71920;
    color:#fff;
}

.btn-primary:hover {
    background: #fff;
    color: #d71920;
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
}

.btn-secondary:hover{
    background:#fff;
    color:#111;
}

.brands-hero{
    background:#ffffff;
    padding:90px 0;
}

.brands-hero-container{
    width:min(90%, 900px);
    margin:0 auto;
}

.brands-hero h1{
    font-size:48px;
    font-weight:300;
    line-height:1.2;
    color:#222;
    margin:0 0 28px;
    letter-spacing:-0.5px;
}

.brands-hero p{
    font-size:18px;
    line-height:1.8;
    color:#555;
    margin:0;
    max-width:820px;
}

.brand-categories{
    background:#fff;
    padding:20px 0 40px;
    border-bottom:1px solid #e5e5e5;
}

.brand-categories-container{
    width:min(1200px,90%);
    margin:0 auto;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:16px;
}

.brand-category{
    padding:12px 22px;
    border:1px solid #d9d9d9;
    border-radius:50px;
    text-decoration:none;
    color:#333;
    font-size:13px;
    font-weight:600;
    letter-spacing:.8px;
    text-transform:uppercase;
    transition:.25s ease;
}

.brand-category:hover{
    background:#333;
    color:#fff;
    border-color:#333;
}

.brand-category.active{
    background:#333;
    color:#fff;
    border-color:#333;
}

.brand-section{
    max-width:1200px;
    margin:0 auto;
    padding:80px 20px;
    display: none;
}

.brand-section.active {
    display: block;
}