/* HERO */

.product-hero-section {
    height: 447px;
    background: url("../images/product-banner.jpg") no-repeat center center/cover;
    position: relative;
}

.product-hero-section h2 {
    font-weight: 600;
}

/* FILTER */
.filter-box {
    background: white;
    padding: 10px;
    border-radius: 6px;
}

.category-list li {
    font-size: 14px;
    padding: 6px 0;
    color: #666;
    cursor: pointer;
}

.category-list li:hover {
    color: black;
}

.category-list .nav-link {
    font-weight: 400;
    text-decoration: none;
}

.category-list .nav-link.active {
    font-weight: 500;
}

.category-list .nav-link.active span {
    border-bottom: 2px solid #000;
    padding-bottom: 2px;
    font-weight: 500;
    color: black;
}

/* PRODUCT CARD */
.product-card {
    background: white;
    padding: 10px;
    transition: 0.3s;
}

.product-card img {
    height: 160px;
    object-fit: contain;
}

/* COLORS */
.color {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 4px;
    display: inline-block;
}

.select-color-div {
    padding: 2.188rem 0 0.625rem;
}

.select-color-div.select-color-div-2 {
    margin-bottom: 20px;
}

.select-color-div.select-color-div-2 {
    margin-bottom: 20px;
}

.color-option {
    display: inline-block;
    float: left;
}

.color-option input[type="radio"] {
    display: none;
}

.color-option.blue input[type="radio"]:checked + label {
    border-color: #5697AC;
}

.color-option.gray input[type="radio"]:checked + label {
    border-color: #cccccc;
}

.color-option label {
    border: 0;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    margin-left: 6px;
    margin-bottom: 0;
    cursor: pointer;
    overflow: hidden;
    float: left;
    border-bottom: 0.125rem solid transparent;
    position: relative;
}

.color-option label span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transition: transform .2s ease-in-out;
}

.color-option label span.blue {
    background: #5697AC;
}

.color-option label span.gray {
    background: #cccccc;
}

.tab-content .tab-pane a {
    display: inline-block;
    width: 100%;
    height: 340px;
}

.tab-image-div {
    width: 100%;
    padding: 10px 15px 0;
    text-align: center;
    transition: 0.3s ease;
    height: auto;
    display: inline-block;
    position: relative;
    border: 1px solid transparent;
    overflow: hidden;
    background-color: #F3F5F7;
}

.tab-image-div.product-card-gray {
    background: #D3D3D3;
    border-radius: 8px;
}

.tab-image-div.product-card-white {
    background: #FFFFFF;
    border-radius: 8px;
}

.tab-image-div.category-small-detail.product-card-gray {
    background: #FFFFFF;
}

.tab-image-div.category-small-detail.product-card-gray:hover {
    border-color: transparent;
}

.tab-image-div.category-small-detail.product-card-gray:hover .search-icon {
    display: none;
}

.tab-image-div.product-card-gray:hover {
    background: #FFFFFF;
    box-shadow: 0 3px 1px rgba(0, 0, 0, 0.04), 0 3px 8px rgba(0, 0, 0, 0.12);
}

.tab-image-div.product-card-gray:hover .search-icon {
    opacity: 1;
}

.tab-image-div .search-icon img {
    height: 18px;
}

.tab-image-div.category-small-detail h6 {
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 2px;
    color: #000000;
}

.tab-image-div.category-small-detail p {
    font-size: 13px;
    line-height: 17px;
    color: rgba(7, 25, 48, 0.7);
    opacity: 0.5;
}

.tab-image-div.category-small-detail .common-btn {
    height: 36px;
    background: #448DE5;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    font-size: 12px;
    line-height: 16px;
}

.tab-image-div.category-small-detail img {
    height: 135px;
}

.tab-image-div img {
    height: 300px;
}

.tab-image-div img.hover-image, .item-detail a p {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    margin: auto;
}

.inner-tab-content .tab-image-div {
    margin-bottom: 0.5rem;
    height: 312px;
}

/* MOBILE FILTER */
.filter-sidebar {
    position: relative;
}

/* MOBILE DROPDOWN BUTTON */
.mobile-filter-btn {
    background: #f1f1f1;
    padding: 18px 22px;
    border-radius: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    height: 48px;
}

.filter-arrow {
    font-size: 18px;
    color: #888;
}

/* DESKTOP VIEW */
@media (min-width: 992px) {
    .mobile-filter {
        display: none;
    }

    .category-list {
        display: block !important;
    }
}