/* Brigtcamp */
.brigtcamp {
    background-color: var(--white);
    padding-top: 8px;
}

.brigtcamp .brigtcamp-area {
    padding: 0;
}

.brigtcamp .tags {
    margin-top: 16px;
}


.brigtcamp .shop-tag a {
    padding: 8px 12px;
    /* background-color: var(--border-color2); */
    border: 1px solid var(--border-color2);
    border-radius: 4px;
}

.brigtcamp .shop-tag a:hover {
    background-color: var(--border-color);
}






/*_____________________________________
  ____||   Shop Body Start Here  ||____
______________________________________*/
.shop-body {
    background-color: var(--white-off);
}

.shop-desc,
.shop-tag,
.item .item-content p {
    font-weight: 500;
    color: rgb(78, 78, 78) !important;
    font-size: 14px;
}



.shop-body-area {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 16px;
}

.sidebar {
    width: 100%;
}

.sidebar .item,
.details .item {
    padding-bottom: 22px !important;
}

.details .item {
    padding-bottom: 8px !important;
}



.sidebar .item-content,
.details .item-content {
    max-height: 264px;
    transition: max-height 0.3s ease-in-out;
    overflow-y: auto;
}

.sidebar .item.active .item-content,
.details .item.active .item-content {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.sidebar .item-btn i,
.details .item-btn i {
    transition: transform 0.3s ease-in-out;
}

.sidebar .item.active .item-btn i,
.details .item.active .item-btn i {
    transform: rotate(270deg);
}

.item-btn h3 {
    font-weight: 500;
}

/* related product link */
.related-product-link li .w-30 {
    flex: 0 0 120px;
}

.related-product-link li h5 {
    font-weight: 500;
}

/* Shop Content */
.shop-content {
    width: 100%;
}

.shop-content .gird-list {
    padding: 4px;
    border-radius: 4px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background-color: var(--white-off);
}

.shop-content .gird-list .item {
    padding: 10px 12px;
    background-color: var(--white);
    cursor: pointer;
    border-radius: 4px !important;
    color: #666;
    font-size: 16px;
    box-shadow: var(--shadow-1);
}


.shop-content .gird-list .item.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.shop-content .gird-list .item:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.shop-content .sort-by select {
    padding: 13px;
    font-size: 14px;
    cursor: pointer;
    border-color: var(--border-color);
    background-color: var(--white-off);
}


.shop-content .product-cart-area.my-card {
    border-radius: 6px;
}

.shop-content .product-cart-area.my-card .disk {
    padding: 14px;
}

.shop-content .product-cart-area.my-card .disk li {
    color: rgb(78, 78, 78);
}

.shop-content .product-cart-area .short-desc ul li {
    color: var(--gray);
    position: relative;
    padding-left: 20px;
    line-height: 16px;
    margin-bottom: 8px;
}

.shop-content .product-cart-area .short-desc ul li::after {
    content: '';
    position: absolute;
    left: 2px;
    top: 7px;
    width: 6px;
    height: 6px;
    background-color: var(--gray2);
    transform: rotate(45deg);
}



/*____  show desc ____*/
.shop-content .product-cart .show-desc {
    top: -80px;
}

.shop-content .product-cart .desc:hover .show-desc {
    top: -100px;
}

.shop-content .information {
    color: var(--gray);
}




.shop-content .disk li {
    color: var(--secondary-hover);
    margin-top: 6px;
}

/*____________________  Shop Sidebar __________________ */
.shop-body-area .item {
    padding: 16px;
    background-color: var(--white);
    border-radius: 0;
    border-bottom: 1px solid var(--border-color);
}

.shop-body-area:first-child .item {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.shop-body-area:last-child .item {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.shop-body-area .item input[type="checkbox"] {
    border: 1px solid var(--gray2);
}

.shop-body-area .item-content {
    margin-top: 12px;
}

.shop-body-area .item-content li {
    cursor: pointer;
    padding: 6px 6px;
}

.shop-body-area .item-content li:hover {
    background-color: #f8f8f8;
    border-radius: 6px;
}

.shop-body-area .item-content li label {
    cursor: pointer;
    width: 100%;
}

.shop-body-area .item-btn {
    cursor: pointer;
}

.shop-body-area .item-btn:hover {
    color: var(--primary-color);
}

/* price range */
.price-container {
    position: relative;
    height: 10px;
    margin: 20px 0;
}

.price-container input {
    z-index: 4;
    position: relative;
    padding: 0;
    border: none !important;
    border-radius: 4px !important;
}

.related-product-link .top {
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}

.item input[type="range"] {
    position: absolute;
    width: 100%;
    pointer-events: none;
    -webkit-appearance: none;
    background: none;
    outline: none;
}

.item input[type="range"]::-webkit-slider-thumb {
    pointer-events: auto;
    width: 20px;
    height: 20px;
    background-color: var(--after);
    border-radius: 50%;
    cursor: pointer;
    -webkit-appearance: none;
    z-index: 33;
}

.item input[type="range"]::-webkit-slider-runnable-track {
    height: 10px;
}

.slider-track {
    position: absolute;
    height: 11px;
    width: 100%;
    z-index: 1;
    border-radius: 1px !important;
    background: var(--before);

}

.slider-track.active {
    background: var(--white-off) !important;
}

.price-inputs {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.price-inputs input {
    width: 48%;
    padding: 8px 6px;
    text-align: center;
    border-color: var(--border-color2);
}




/*_____  Products  ______*/
.products .product-cart-area {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.products {
    display: none;
}

.products.active {
    display: grid;
}

.list-view {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.list-view .product-content {
    position: relative;
}



.list-view .images,
.list-view .product-content {

    padding-top: 0;
    margin-top: 8px !important;
}

.list-view .product-content {
    border-top: none;
}

.list-view .base {
    background-color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 0;
    border-top-left-radius: 12px;
    color: var(--white);
}


.filter-btn {
    display: none;
}

.sidebar-close-btn {
    display: none;
}

.shop-head-bottom {
    justify-content: end;
    width: 40%;
}


.product-cart .base.new {
    animation: unset;
    left: 4px;
    right: unset;
    background-color: var(--secondary-hover);
    border-radius: 3px;
    padding: 3px 6px;
    font-size: 12px;
}




.brand-shop .brand-shop-area {
    display: grid;
    grid-template-columns: 3fr .85fr;
    gap: 12px;
}



/*_____________________________________
  ____||   Responsive For 991px  ||____
______________________________________*/
@media (max-width:991px) {
    .brigtcamp {
        border-radius: 8px;
    }

    .mobile-sidebar {
        position: fixed;
        top: 64px;
        left: 0;
        transform: translateX(-200%);
        box-shadow: var(--shadow-2);
        width: 100%;
        max-width: 340px;
        transition: .3s linear;
        z-index: 4;
        height: 100dvh;
        overflow-y: auto;
        background-color: var(--white);
        padding: 12px;
        padding-top: 34px;
    }

    .mobile-sidebar.active {
        transform: translateX(0);
    }

    .shop-body-area {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0px;
    }


    /* filter-btn */
    .filter-btn {
        display: flex;
        color: var(--gray)
    }

    .sidebar-close-btn {
        display: flex;
    }

    .shop-content .head h4 {
        justify-content: space-between;
        width: 100%;
    }

    .shop-head-bottom {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .brand-shop .brand-shop-area {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .details {
        padding: 0px;
    }
}




/*_____________________________________
  ____||   Responsive For769px  ||____
______________________________________*/
@media (max-width:769px) {
    .list-view {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .list-view .images,
    .list-view .product-content {
        width: 100%;
    }

    .list-view .images {
        width: 100% !important;
    }

    .list-view .images img {
        width: 100%;
        padding-top: 12px;
    }

    .first-brigtcamp {
        margin-top: 0px;
    }
}