
/* PRODUCTS */
.brand {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.brand-category {
    padding: 10px 0;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-gray);
}

.brand-container {
    position: relative;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    margin: 0 10px;
    padding: 10px 0;
    justify-content: flex-start;
    box-sizing: border-box;
}

    .brand-container::-webkit-scrollbar {
        display: none;
    }

.brand-card {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    background-color: #fff;
    width: 100px;
    height: 75px;
    margin: 5px 10px;
    justify-content: center;
    box-shadow: 0px 0px 2px #3333;
}

    .brand-card a {
        color: var(--color-gray);
        font-weight: 600;
        text-decoration: none;
        text-align: center;
        word-break: break-all;        
    }

.brand-image {
    position: relative;
    border-radius: 50%
}

.brand-thumb {
    width: 100%;
    height: 100%;
    max-height: 75px;
    border-radius: 5px;
}

a .brand-alt:hover {
}

.brand-card-btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /*transform: translateX(-50%);*/
    padding: 0;
    text-transform: capitalize;
    border: none;
    outline: none;
    border-radius: 5px;
    transition: 0.5s;
    cursor: pointer;
    opacity: 1;
    text-align: center;
    align-content: center;
    width: 100%;
    height: 100%;
}

.brand-card:hover .brand-card-btn {
    opacity: .7;
}

.brand-card-btn:hover {
    background: rgba(241,241,241,0.5);
    color: var(--color-white);
}

.brand-card-btn a {
    color: #4e4b4b8f;
    position: absolute;
    font-size: 20px;
    top: 60px;
    left: 54px;
    font-family: sans-serif;
    text-transform: capitalize;
}

.brand-info {
    width: 100%;
    height: 100px;
    padding-top: 10px;
}

.product-short-description {
    width: 100%;
    height: 20px;
    line-height: 20px;
    overflow: hidden;
    opacity: 0.5;
    text-transform: capitalize;
    margin: 5px 0;
}

.price {
    font-weight: 900;
    font-size: 20px;
}

.actual-price {
    margin-left: 20px;
    opacity: 0.5;
    text-decoration: line-through;
}

.pre-brand-btn,
.nxt-brand-btn {
    border: none;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: rgba(255, 255, 255, 0);
    cursor: pointer;
    z-index: 8;
}

.pre-brand-btn {
    left: 0;
    transform: rotate(180deg);
}

.nxt-brand-btn {
    right: 0;
}

    .pre-brand-btn img,
    .nxt-brand-btn img {
        padding: 5px 10px;
        border-radius: 50%;
        opacity: 0.2;
    }

    .pre-brand-btn:hover img,
    .nxt-brand-btn:hover img {
        opacity: 1;
        background: rgba(255, 255, 255, 1);
    }



.label-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .7rem;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 1px #3333;
    border: 1px solid #3333;
    margin: 0 10px;
    transition: .3s all ease-in;
    max-height: 50px;
    min-width: 200px;
}

    .label-card:hover {
        box-shadow: 0 0 5px #3333;
    }

    .label-card > a {
        color: #777;
        font-weight: bold;
        font-size: .9rem;
    }

        .label-card > a > p {
            margin: 0;
        }

        .label-card > a:hover {
            text-decoration: none;
        }

.collection-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

.collection {
    position: relative;
}

    .collection img {
        width: 100%;
        height: 100%;
    }

    .collection p {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: var(--color-white);
        font-size: 50px;
        text-transform: capitalize;
    }

    .collection:nth-child(3) {
        grid-column: span 2;
        margin-bottom: 10px;
    }
