﻿.brand-page {
    background: #f5f7fb;
    padding: 50px 0 70px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

    .page-header h1 {
        font-size: 42px;
        font-weight: 700;
    }

    .page-header p {
        color: #777;
        margin-top: 10px;
    }

.brand-search {
    max-width: 500px;
    margin: 0 auto 45px;
    position: relative;
}

    .brand-search i {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
        font-size: 16px;
    }

    .brand-search input {
        width: 100%;
        height: 52px;
        border: 1px solid #ddd;
        border-radius: 14px;
        padding: 0 20px 0 46px;
        font-size: 15px;
        transition: .25s;
    }

        .brand-search input:focus {
            outline: none;
            border-color: #f58220;
            box-shadow: 0 0 0 3px rgba(245,130,32,.12);
        }

.brand-empty {
    display: none;
    text-align: center;
    color: #999;
    font-size: 16px;
    padding: 40px 0;
}

    .brand-empty.show {
        display: block;
    }

.brand-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 14px;
    height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: .30s;
    text-decoration: none;
}

    .brand-card:hover {
        transform: translateY(-6px);
        border-color: #f58220;
        box-shadow: 0 15px 35px rgba(0,0,0,.10);
    }

.brand-logo {
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .brand-logo img {
        max-width: 140px;
        max-height: 80px;
        transition: .30s;
    }

.brand-card:hover img {
    transform: scale(1.08);
}

.brand-name {
    margin-top: 20px;
    font-size: 15px;
    font-weight: 600;
    color: #444;
    text-align: center;
}
