:root {
    --accent-color: #3216a8;
}

a.btn {
    border: 0 !important;
}

a.btn:hover {
    background-color: #fff !important;
    border: 0 !important;
    color: var(--accent-color) !important;
    /* padding: 18px 34px !important; */
}

.pagination-style-01 .page-item.active .page-link,
.pagination-style-01 .page-item .page-link:hover {
    background: var(--accent-color);
    color: #fff !important;
}

.breadcrumb-style-01 ul li:after {
    content: "\f054";
    font-family: 'Font Awesome 6 Free';
}



.product {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px 30px;
    padding: 20px;
    max-width: 960px;
}

.product__list {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px 0 #212527;
    transition: all 250ms ease-in-out;
}

.product__list:after {
    content: "";
    position: absolute;
    top: 0;
    display: block;
    height: 100%;
    width: 100%;
    background-color: #3e363f;
    opacity: 0;
    transition: all 500ms ease-in-out;
}

.product__list:hover:after {
    opacity: 0.5;
}

.product__list:hover>.product__viewBtn {
    visibility: visible;
    opacity: 1;
    z-index: 1;
}

.product__img {
    width: 100%;
}

.product__viewBtn {
    cursor: pointer;
    position: absolute;
    bottom: 10%;
    background: #212527;
    color: #edf7f6;
    padding: 10px 20px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
    transition: all 250ms ease-in-out;
}

.product__viewBtn:hover {
    color: #212527;
    background: #edf7f6;
}

.modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
    transition: all 250ms ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.modal--bg {
    visibility: visible;
    opacity: 1;
    z-index: 1;
}

.modal__content {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-height: 540px;
    max-width: 960px;
    background-color: #edf7f6;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100px);
    transition: all 250ms ease-in-out;
}

.modal__content--show {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    z-index: 2;
}

.modal__img {
    width: 100%;
}

.modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #212527;
    cursor: pointer;
    transition: all 250ms ease-in-out;
    z-index: 3;
}

.modal__close:hover {
    color: #df4747;
}

.modal__left,
.modal__right {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.detail__title,
.detail__description {
    text-transform: uppercase;
}

.detail__price {
    font-weight: bold;
}

.detail__bagBtn {
    cursor: pointer;
    background: #212527;
    color: #edf7f6;
    text-align: center;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 250ms ease-in-out;
}

.detail__bagBtn:hover {
    color: #47df5b;
}

@media (max-width: 600px) {
    .product {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        min-width: 400px;
    }

    .modal__content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .modal__content--show {
        max-height: 100%;
        min-width: 400px;
    }

    .modal__left {
        margin-top: 40px;
    }
}

.social {
    position: absolute;
    left: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    align-items: center;
    height: 50px;
    width: 200px;
}

.social__icon {
    font-size: 50px;
    color: #212527;
    padding: 0 10px;
    transition: all 250ms ease-in-out;
}

.social__icon:hover {
    cursor: pointer;
    color: #df4747;
}

.user-btn {
    padding: 8px 10px !important;
}

.user-btn i {
    font-size: 1rem;
}

.navbar-brand img {
    max-height: 120px !important;
}

.filter-container {
    max-width: 300px;
    margin: 20px;
}

.filter-title {
    cursor: pointer;
    background-color: #f4f4f4;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}

.sub-filter {
    display: none;
    padding-left: 20px;
}

.sub-filter input[type="checkbox"] {
    margin-right: 5px;
}

.breadcrumb a {
    font-size: 10px;
}




.collapsible {
    cursor: pointer;
    color: #fff;
}

.nested {
    display: none;
    padding-left: 20px;
    color: #fff;
}

.active {
    display: block;
}

.plus-sign::before {
    content: '+';
    display: inline-block;
    margin-right: 5px;
}

.minus-sign::before {
    content: '-';
    display: inline-block;
    margin-right: 5px;
}



.shop-size li>input[type=radio]+label span {
    height: auto !important;
    border-radius: 3px !important;
    width: auto !important;
    padding: 10px 15px !important;
}

.shop-size li input[type=radio]:checked+label span:after {
    height: 100% !important;
    border-radius: 3px !important;
    width: 100% !important;
    padding: 10px 15px !important;
    top: 0;
    left: 0;
}

.close-filter {
    display: none;
    position: absolute;
    right: 10px;
    top: 10px;
    border: 1px solid;
    padding: 1px 10px;
    border-radius: 50%;
}

@media(max-width: 991px) {
    .shop-sidebar {
        position: fixed;
        width: 70%;
        left: -100% !important;
        height: 100%;
        transition: .5s ease-in-out;
        z-index: 99;
    }

    .shop-sidebar.show {
        left: 0 !important;
    }

    .close-filter {
        display: block !important;
    }
}