/* Brands Section - PNJ Luxury Style */
.vbbk-home-brands {
    padding: 60px 0;
    background-color: #fff;
}

.brands-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.brand-tile {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.brand-tile .brand-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-tile:hover .brand-image {
    transform: scale(1.08);
}

.brand-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    transition: opacity 0.3s ease;
}

.brand-tile:hover .brand-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.brand-content {
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif !important;
}

.brand-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.brand-tile .btn-discover {
    display: inline-block;
    padding: 12px 30px;
    background-color: #fff;
    color: var(--brand-navy);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.brand-tile:hover .btn-discover {
    background-color: var(--brand-gold);
    color: #fff;
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .brands-grid {
        grid-template-columns: 1fr;
    }
    .brand-tile {
        height: 350px;
    }
    .brand-title {
        font-size: 28px;
    }
}
