.breadcrumb_wrapper {
    background-color: whitesmoke;
    padding: 30px 0;
    border-bottom: 1px solid #ccc;
    text-align: center;
}

.breadcrumb_wrapper__content h2 {
    text-transform: capitalize;
    font-size: 45px;
    color: var(--black-color);
    font-weight: 600;
}

.breadcrumb_menu {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    gap: 10px;
}

.breadcrumb_menu a,
.breadcrumb_menu span,
.breadcrumb_menu p {
    text-transform: capitalize;
    color: var(--black-color) !important;
}

.product_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.total_products {
    display: flex;
    gap: 10px;
    align-items: center;
}

.total_products h6 {
    text-transform: uppercase;
    font-size: 20px;
}

.total_products span {
    color: #434343;
    font-size: 20px;
}

.product_header__btn {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.product_header__btn button {
    padding: 6px 20px;
}

.product_header__btn button,
.product_header__btn .form-select {
    border: 1px solid #ccc !important;
    border-radius: 0 !important;
    font-size: 16px !important;
    cursor: pointer;
    outline: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
    text-transform: capitalize;
    color: var(--black-color);
}

.pagination_row {
    margin-top: 3rem;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    align-items: center;
}

.pagination_row a {
    padding: 4px 12px;
    background-color: whitesmoke;
    border: 1px solid #ccc;
    color: var(--black-color) !important;
    text-transform: capitalize;
    display: flex;
    gap: 3px;
    align-items: center;
    font-size: 14px;
}

.page-active {
    background-color: var(--main-color) !important;
}

/* filter_sidebar */
.filter_sidebar {
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .25);
    backdrop-filter: blur(2px);
    z-index: 999;
    transition: 1.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.filter_sidebar.active {
    right: 0;
    transition: .8s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.filter_sidebar.active .filter_sidebar__box {
    right: 0;
    transition: 1.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.filter_sidebar__box {
    position: fixed;
    right: -100%;
    top: 0;
    width: 30%;
    height: 100%;
    background-color: var(--white-color);
    transition: .4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.filter_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
}

.filter_header h3 {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 600;
    color: var(--black-color);
}

.filter_cancel {
    height: 32px;
    width: 32px;
    background-color: var(--main-color);
    color: var(--black-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
    border-radius: 3px;
}

.filter_cancel:hover i {
    transform: rotate(90deg);
    transition: .3s ease;
}

.filter_cancel i {
    transition: .3s ease;
}

/* product_filter__left */
.product_filter__left {
    padding: 1rem;
        height: 588px;
    overflow-y: scroll;
}
.product_filter__left::-webkit-scrollbar {
  display: none;
}

.filter_box h2 {
    color: var(--black-color);
    text-transform: capitalize;
    font-size: 28px;
    font-weight: 700;
}

.filter_box {
    border-bottom: 0.0625rem solid #ccc;
    padding-bottom: 1rem;
    padding-top: 1rem;
}

.filter_box:first-child {
    padding-top: 0;
}

.filter_box:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.filter_box__ul {
    margin-top: 1rem;
}

.filter_box__ul li {
    margin-bottom: 25px;
}

.filter_box__ul ul li a:hover {
    color: var(--main-color);
}

.filter_box__ul ul li a {
    display: flex;
    gap: 16px;
    font-size: 18px;
    align-items: center;
    color: var(--black-color);
    text-transform: capitalize;
}

.filter_box ul li a img {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.select_input {
    margin-top: 1rem;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.select_input__box {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    margin-bottom: 12px;
}

.select_input__box label {
    text-transform: capitalize;
    font-size: 16px;
}

.select_input__box label span {
    font-size: 13px;
    color: #999;
}

.select_input__box input {
    height: 16px;
    width: 16px;
    cursor: pointer;
    accent-color: var(--main-color);
    transition: .3s ease-in;
}

.product_box {
    margin-bottom: 2rem;
}


.filter_bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    bottom: 0;
    padding: 1rem;
    border-top: 1px solid #ccc;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    background-color: #fff;
}

.filter_bottom button {
    border: 1px solid var(--black-color);
    width: 100%;
    color: var(--black-color);
    padding: 10px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    background-color: transparent;
}

.filter_bottom button:hover {
    background-color: var(--main-color) !important;
    transition: .3s ease;
}

.filter_bottom button:nth-child(1) {
    background-color: var(--main-color);
    color: var(--black-color);
}

/* product-details-left */
.product-details-left {
    display: flex;
    gap: 1rem;
}

.small_img {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.small_img__box img {
    height: 100px;
    width: 150px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 10px;
    transition: .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.small_img__box {
    overflow: hidden;
    border-radius: 10px;
}

.small_img__box:hover img {
    transform: scale(1.1);
    transition: .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.big_img img {
    width: 920px;
    height: 800px;
    border-radius: 10px;
    transition: 7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.big_img {
    overflow: hidden;
    border-radius: 10px;
}

.big_img:hover img {
    transform: scale(1.15);
    transition: 7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-details-right h3 {
    font-size: 25px;
    color: var(--main-color);
    font-family: "Poppins", sans-serif;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1rem;
    margin-bottom: 1rem !important;
}

.product_price h6 {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--black-color);
    font-size: 20px;
}

.product_price h6 span {
    background-color: var(--main-color);
    color: #000;
    font-size: 12px;
    padding: 5px 1rem;
    border-radius: 100px;
    text-transform: uppercase;
}

.product_price p {
    color: #999;
    margin-top: 1rem;
    font-size: 15px;
}

.product_input {
    margin-top: 2rem;
}

.product_input__box {
    display: flex;
    gap: 1rem;
    width: 100%;
    margin-bottom: 1rem;
}

.product_input__box-inner .form-select,
.product_input__box input {
    width: 100%;
    border: 1px solid #ccc;
    outline: none !important;
}

.product_input__box-inner input {
    padding: 6px 12px;
}

.product_input__box-inner {
    width: 100%;

}

.product_input__box-inner label,
.quantity label {
    text-transform: capitalize;
    margin-bottom: 10px;
    font-weight: 500;
    display: block;
    color: var(--main-color);
}

.quantity_box {
    display: flex;
    gap: 5px;
    align-items: center;
}

.quantity_box input,
.quantity_box button {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    outline: none;
}

.quantity_box button {
    background-color: whitesmoke;
    border: 1px solid #ccc;
    outline: none;
}


/* double range slider css */
.wrapper {
    margin-top: 37px;
}

.price-input {
    width: 100%;
    display: flex;
    margin: 30px 0 35px;
}

.price-input .field {
    display: flex;
    width: 100%;
    height: 45px;
    align-items: center;
}

.field input {
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 19px;
    margin-left: 12px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #999;
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.price-input .separator {
    width: 130px;
    display: flex;
    font-size: 19px;
    align-items: center;
    justify-content: center;
}

.slider {
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}

.slider .progress {
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    background: var(--main-color);
}

.range-input {
    position: relative;
}

.range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    height: 17px;
    width: 17px;
    cursor: pointer;
    border-radius: 50%;
    background: var(--main-color);
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

input[type="range"]::-moz-range-thumb {
    height: 17px;
    width: 5px;
    border: none;
    border-radius: 50%;
    background: var(--dark-brown);
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

/* double range slider end */
.product-details-right-btn {
    margin-top: 2rem;
}

.product-details-right-btn a {
    display: flex;
    gap: 5px;
    align-items: center;
    border: 1px solid var(--white-color);
    margin-bottom: 1rem;
    text-align: center;
    padding: 10px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 18px;
    color: var(--white-color);
    justify-content: center;
    align-items: center;
    transition: .3s ease;
    background-color: #258f13;
}

.product-details-right-btn a i {
    font-size: 25px;
}

.product-details-right-btn a:nth-child(1) {
    background-color: #49C859;
    color: #fff;
    border: 1px solid #fff;
}

.product-details-right-btn a:hover {
    background-color: var(--main-color);
    color: var(--black-color);
    transition: .3s ease;
}

@media(max-width:1200px) {
    .big_img img {
        height: 565px;
    }

    .product-details-right h3 {
        font-size: 20px;
    }

    .product-details-right-btn a {
        font-size: 15px;
    }
}

@media(max-width:992px) {
    .product-details-right {
        margin-top: 2rem;
    }
}

@media(max-width:768px) {
    .total_products h6 {
        font-size: 16px;
    }

    .total_products span {
        font-size: 13px;
    }

    .product_header__btn button,
    .product_header__btn .form-select {
        font-size: 14px !important;
    }

    .filter_sidebar__box {
        width: 90%;
    }

    .filter_box h2 {
        font-size: 22px;
    }

    .select_input__box label {
        font-size: 14px;
    }

    .select_input__box {
        margin-bottom: 0;
    }

    .breadcrumb_wrapper__content h2,
    .filter_header h3 {
        font-size: 24px;
    }

    .breadcrumb_menu {
        margin-top: 7px;
        gap: 5px;
        flex-wrap: wrap;
    }

    .breadcrumb_menu a,
    .breadcrumb_menu span,
    .breadcrumb_menu p {
        font-size: 14px;
    }

    .product-details-right h3 {
        font-size: 18px;
    }

    .product_input__box-inner .form-select,
    .product_input__box input {
        font-size: 15px;
    }

    .product_input__box-inner label,
    .quantity label {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .product-details-right-btn a {
        margin-bottom: 7px;
    }

    .product-details-right-btn a i {
        font-size: 16px;
    }

    .product-details-left {
        flex-direction: column-reverse;
    }

    .small_img {
        flex-direction: row;
        overflow-x: auto;
        scroll-behavior: smooth;
    }

    .small_img__box {
        min-width: 50px;
        flex-shrink: 0;
    }

    .big_img img {
        height: 375px;
    }

    .product_header {
        padding: 0 1rem;
    }
}