@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

@font-face {
    font-family: 'SolaimanLipi';
    src: url('../fonts/solaiman-lipi.ttf') format('truetype');
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

.custom_container {
    max-width: 1200px;
    padding: 0 .5rem;
    margin: auto;
}

header {
    -webkit-box-shadow: 0 -2px 8px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 -2px 8px 0 rgba(0, 0, 0, .1);
    background: #fff;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    letter-spacing: .4px;
}

header .top_notification {
    text-align: center;
    border-bottom: 2px solid #f2f2f2;
}

header .top_notification span {
    font-size: 17px;
    line-height: 24px;
    color: #000;
    padding-top: 7px;
    padding-bottom: 7px;
    display: block;
    font-family: 'SolaimanLipi';
}

header .top_notification span a {
    color: #000;
    text-decoration: none;
}

header .header_top_part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

header .header_top_part .header_btns {
    display: flex;
    align-items: flex-start;
    padding-right: 30px;
}

header .header_top_part .header_btns a {
    margin-left: 15px;
    color: #212121;
}

header div.logo_part a {
    color: #212121;
    text-decoration: none;
    display: block;
}

header div.logo_part a img {
    max-height: 25px;
    width: 100%;
}

header div.header_menu ul {
    display: flex;
    overflow-x: scroll;
}

/* Hide scrollbar for Chrome, Safari and Opera */
header div.header_menu ul::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
header div.header_menu ul {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

header div.header_menu ul li {
    list-style: none;
    white-space: nowrap;
}

header div.header_menu ul li a {
    color: #222;
    padding: 0 10px;
    display: block;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    -webkit-transition: color .3s;
    transition: color .3s;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 20px;
    font-weight: 500;
}

header div.header_menu ul li:hover a {
    color: red;
    border-bottom: 2px solid red;
}

/* SEARCH PAGE */
#search_page .search_form .form-inner {
    margin: 20px 0;
    display: flex;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
}

#search_page .search_form input {
    padding-left: 15px;
    outline: none;
    font-size: 12px;
    color: #757575;
    letter-spacing: .2px;
    width: 100%;
    height: 49px;
    border: 1px solid #c2c2c2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;

}

#search_page .search_form button {
    background-color: #757575;
    border: none;
    color: #fff;
    padding: 0 20px;
}

#search_page .search_form i.search_icon {
    position: absolute;
    height: 20px;
    width: 20px;
    left: 8px;
    top: 16px;
}

#search_page p.query_term {
    font-size: 20px;
    line-height: 20px;
    color: #000;
    margin-bottom: 20px;
}

#search_page .serach_product_container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

#search_page .serach_product_container li {
    list-style: none;
}

/* SEARCH PAGE */
/* LOGIN REGISTER PAGE */
main.login-reg-page {
    margin: 30px auto;
    max-width: 500px;
    width: 100%;
}

main.login-reg-page p.page_title {
    margin-bottom: 10px;
    font-size: 20px;
}

main.login-reg-page p.page_sub_title {
    font-size: 16px;
    margin-bottom: 10px;
}

main.login-reg-page .form_container form input {
    border: 1px solid #ccc;
    border-radius: 0;
    letter-spacing: .4px;
    height: 32px;
    font-size: 12px;
    padding: 0 8px;
    outline: none;
    width: 100%;
}

main.login-reg-page .form_container form span.form-error {
    margin: 5px 0 0 0;
    font-size: 13px;
    color: #e83647;
    display: block;
}

main.login-reg-page .form_container form .input-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 15px;
}

main.login-reg-page .form_container form .submit_btn button {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 0;
    display: block;
    width: 100%;
    padding: 10px 15px;
    cursor: pointer;
}

main.login-reg-page .page-footer {
    margin-top: 20px;
}

main.login-reg-page .page-footer a {
    color: #212121;
    text-decoration: none;
}

main.login-reg-page .page-footer a:hover {
    color: #e83647;
}

/* PROFILE PAGE */
#profile-page {
    margin: 25px 0;
}

#profile-page .MyAccountHeader {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dbdbdb;
    padding-bottom: 16px;
}

#profile-page .custom_container .MyAccBody {
    display: flex;
    margin-top: 24px;
}

#profile-page .custom_container .MyAccBody .optionListLineHeight {
    width: 30%;
    display: flex;
    flex-direction: column;
}

#profile-page .custom_container .MyAccBody .optionListLineHeight a {
    color: #212121;
    text-decoration: none;
    font-size: 13px;
    line-height: 2.46 !important;
    letter-spacing: .4px;
}

#profile-page .custom_container .MyAccBody .MyAccountPageWrapper {
    width: 70%;
    margin-left: 20px;
}

#profile-page .custom_container .MyAccBody .MyAccountPageWrapper .MyAccountPageWrapperTitle {
    margin-bottom: 20px;
}

#profile-page .custom_container .MyAccBody .MyAccountPageBody {
    display: flex;
    gap: 20px;
}

#profile-page .custom_container .MyAccBody .MyAccountPageBody>form {
    flex: 1;
}

#profile-page .custom_container .MyAccBody .MyAccountPageBody>form .input-container-with-header {
    margin-bottom: 15px;
}

#profile-page .custom_container .MyAccBody .MyAccountPageBody>form .form-field-header {
    margin-bottom: 8px;
    font-size: 11px;
    line-height: 18px;
    color: #212121;
    letter-spacing: .2px;
    text-transform: uppercase;
}

#profile-page .custom_container .MyAccBody .MyAccountPageBody>form input {
    border: 1px solid #ccc;
    border-radius: 0;
    letter-spacing: .4px;
    height: 32px;
    font-size: 12px;
    padding: 0 8px;
    outline: none;
    width: 100%;
}

#profile-page .custom_container .MyAccBody .MyAccountPageBody>form button {
    background-color: #000;
    color: #fff;
    display: block;
    padding: 10px 15px;
    width: 100%;
    border: none;
    outline: none;
}

/* PROFILE PAGE */

/* LOGIN REGISTER PAGE */
section.product_section {
    margin: 30px auto;
    padding: 10px 0;
    overflow: hidden;
}

section.product_section .product_section_title_view_all {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section.product_section h2.product_section_title {
    margin-bottom: 1rem;
    font-size: 20px;
    line-height: 28px;
    color: #212121;
    font-weight: 500;
}

section.product_section div.view_all a {
    color: #222;
    padding: 10px 15px;
    text-decoration: none;
}

section.product_section p.product_section_desc {
    font-size: 18px;
    line-height: 32px;
    color: rgba(18, 18, 18, 0.7);
    margin-bottom: .7rem;
}

section.product_section .slick-slide {
    margin: 0 10px;
}

section.product_section .slick-list {
    width: 100%;
}

.slick-track {
    width: 100%;
}

li.product_grid_item .card_media {
    overflow: hidden;
}

li.product_grid_item .card_media img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: opacity .5s cubic-bezier(.215, .61, .355, 1) 0s, transform .5s ease-out 0s, -webkit-transform .5s ease-out 0s;
}

li.product_grid_item .card_wrapper div.price__container {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    font-size: 14px;
    font-family: auto;
}

li.product_grid_item .card_wrapper h3.product_name {
    margin: 5px 0;
}

li.product_grid_item .card_wrapper h3.product_name a {
    color: #121212;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

li.product_grid_item .card_wrapper div.product_sub_title {
    color: #9b9b9b;
    font-size: 12px;
    line-height: 20px;
}

li.product_grid_item:hover img {
    transform: scale(1.1);
}

section.product_section div.view_all {
    text-align: center;
}

section.product_section .slick-prev:before,
section.product_section .slick-next:before {
    color: #222;
    font-size: 24px;
}

/* HOME PAGE */
section.home_banner {
    margin-top: 24px;
}

section.home_slider {
    margin-top: 24px;
    height: auto;
    overflow: hidden;
}

section.home_slider .slider_container {
    display: flex;
    overflow: hidden;
    margin-bottom: 0;
}

section.home_slider .slider_container>a {
    display: block;
    min-width: 100%;
    max-width: 100%;
    display: block;
}

section.home_slider img {
    width: 100%;
    height: auto;
    object-fit: fill;
    display: block;
}

section.home_slider ul.slick-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    transform: unset;
    background: transparent;
}

section.home_slider ul.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

section.home_slider ul.slick-dots li button:before {
    font-size: 10px;
}

.home_all_cats {
    margin: 30px 0;
}

.home_all_cats .home_cats_title {
    text-align: center;
    color: #121212;
    font-size: 25px;
}

.home_all_cats ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px;
    margin: 20px 0;
}

.home_all_cats ul li {
    list-style: none;
    border: 1px solid #121212;

}

.home_all_cats ul li a {
    color: #121212;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-align: center;
    text-transform: capitalize;
    font-size: 18px;
    white-space: nowrap;
}

section#home_three_cat {
    margin: 30px 0;
}

section#home_three_cat h2.SectionTitle {
    margin-bottom: 1rem;
    font-size: 20px;
    line-height: 28px;
    color: #212121;
    font-weight: 500;
}

section#home_three_cat .home_three_cat_inner {
    display: flex;
    gap: 20px;
    overflow-x: scroll;
}

/* Hide scrollbar for Chrome, Safari and Opera */
section#home_three_cat .home_three_cat_inner::-webkit-scrollbar {
    display: none;
}

section#home_three_cat .home_three_cat_inner {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

section#home_three_cat .home_three_cat_inner .home_three_category {
    flex: 1;
}

section#home_three_cat .home_three_category_inner {
    position: relative;
    display: block;
}

section#home_three_cat .home_three_category_image img {
    filter: brightness(70%);
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
}

section#home_three_cat .home_three_category_name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 20px 0;
    cursor: pointer;
}

/* HOME PAGE */

/* PAGE */
#page {
    padding: 20px 0;
}

#page .page_heder {
    text-align: center;
    font-size: 25px;
}

#page .page_content {
    font-size: 16px;
}

h2.page_title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* PAGE */

/* PRODUCT SINGLE */
section.product_single {
    padding: 15px 0;
}

.entry_content {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.product_single_meta {
    display: flex;
    gap: 20px;
    width: 100%;
}

.woocommerce div.product div.images {
    margin-bottom: 0 !important;
}

.product_single_meta .product_media_wrapper {
    width: 50%;
}

.product_single_meta .product_info_wrapper {
    width: 50%;
}

.product_single_meta .product_info_wrapper .price {
    font-weight: bold;
    font-size: 19px !important;
}

.product_single_meta .product_info_wrapper .price_order a {
    display: none;
}

.product_single_meta .product_media_wrapper .details_imgs {
    width: 100%;
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: scroll;
}

div.product_description {
    margin: 20px 0;
    background-color: #f8f8f8;
    padding: 15px;
}

div.product_description .product_description_title {
    position: relative;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: bold;
    padding-bottom: 5px;
}

div.product_description .product_description_title:after {
    background-color: #d89409;
    bottom: -2px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 40px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.product_single_meta .product_media_wrapper .details_imgs::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.product_single_meta .product_media_wrapper .details_imgs {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.product_single_meta .product_media_wrapper .details_imgs img {
    width: 50px;
    height: 70px;
    object-fit: cover;
    border: 1px solid #eee;
    border-radius: 2px;
}

.product_single_meta .product_media_wrapper .main_image {
    box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
    border: 1px solid rgba(22, 28, 45, .1);
    height: auto;
}

.product_single_meta .product_media_wrapper .main_image img {
    height: 100%;
    width: 100%;
}

.single-product.woocommerce .thumbnails #slider-prev,
.single-product.woocommerce .thumbnails #slider-next {
    border: 1px solid #222 !important;
    height: 24px !important;
    width: 24px !important;
}

ul.yith_magnifier_gallery img {
    border: 1px solid #eee;
}

h1.product_title {
    margin: 10px 0;
}

div.woocommerce-product-rating {
    display: none;
}

div.product_subtitle {
    font-size: .9rem;
    color: #808080;
}

span.posted_in {
    margin: 10px 0;
    display: block;
}

span.posted_in a {
    color: #d89409;
    transition: .3s;
}

span.posted_in a:hover {
    color: #222;
}

p.price {
    margin: 10px 0;
    font-family: serif;
    font-size: 1rem !important;
    color: #222 !important;
}

div.product_price span.current_price {
    font-weight: bold;
    margin-right: 10px;
}

div.product_price span.old_price {
    text-decoration: line-through;
}

div.variation_color {
    margin: 25px 0;
}

div.variation_color .variation_color_title {
    font-weight: bold;
    margin-bottom: 10px;
}

div.variation_color .color-loop {
    display: inline-block;
    margin-right: 5px;
}

div.variation_color .color_label {
    padding: 2px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: block;
}

div.variation_color .color_label span {
    background-color: transparent;
    display: block;
    border-radius: 50%;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

div.variation_color .color_label:hover,
div.variation_color input:checked+.color_label {
    border: 1px solid #000;
}

div.variation_color input {
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
}

div.variation_size .variation_size_title {
    font-weight: bold;
    margin-bottom: 10px;
}

div.variation_size .block-swatch {
    display: inline-block;
    margin-right: 4px;
}

div.variation_size .block-swatch .block-swatch__radio {
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
}

div.variation_size .block-swatch .block-swatch__radio:checked+.block-swatch__item {
    box-shadow: 0 0 0 1px #000000;
    border-color: #000000;
    background: #00000006;
    color: #000000;
}

div.variation_size .block-swatch .block-swatch__item {
    display: block;
    padding: 6px 10px 7px;
    text-align: center;
    border: 1px solid #d9d9d9;
    border-radius: 3px;
    vertical-align: middle;
    cursor: pointer;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}

div.variation_size .block-swatch .block-swatch__item .block-swatch__item-text {
    font-size: 16px;
    line-height: 16px;
}

div.add_to_cart_buy_now {
    margin: 30px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.woocommerce div.product form.cart {
    display: flex;
    align-content: center;
    justify-content: space-between;
}

.woocommerce div.product form.variations_form {
    display: flex;
    flex-direction: column;
}

.woocommerce div.product form.variations_form .quantity {
    display: none !important;
}

.woocommerce div.product form.variations_form .variations th {
    text-align: left;
}

.woocommerce div.product form.variations_form .variations th label {
    font-weight: normal;
}

.woocommerce div.product form.variations_form .variations select {
    padding: 5px;
    border-radius: 0;
    border: 1px solid #888888;
    outline: none;
    margin-bottom: 10px;
}

.woocommerce div.product form.variations_form .woocommerce-variation-add-to-cart {
    display: flex;
}

body.single-product table.shop_attributes th {
    text-align: left;
    background: transparent !important;
}

body.single-product table.shop_attributes td {
    background: transparent !important;
}

body.single-product table.shop_attributes td a {
    color: #d89409;
    transition: .3s;
}

body.single-product table.shop_attributes td a:hover {
    color: #222;
}

button.wsb-button,
button.single_add_to_cart_button {
    background: transparent;
    border: 1px solid #888888 !important;
    padding: 10px 0 !important;
    color: #888888;
    font-size: 17px;
    font-weight: normal;
    text-transform: capitalize;
    cursor: pointer;
    outline: none;
    width: 48%;
    border-radius: 5px !important;
    margin-top: 15px !important;

}

button.single_add_to_cart_button {
    background-color: #888888 !important;
    color: #fff !important;
}

body.single-product div.quantity {
    display: none;
}

div.product div.images {
    width: 100% !important;
}

form.single_product_buy_now {
    flex: 1;
}

div.product_share {
    border-top: 1px solid #eee;
    padding: 20px 0;
}

div.product_share .share_links {
    padding: 20px 0 0 0;
    display: flex;
    gap: 15px;
}

div.product_share .share_links a {
    display: flex;
    text-decoration: none;
    background-color: #222;
    border-radius: 50%;
    padding: 10px;
}

div.product_share .share_links a svg {
    fill: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;

}

section.single_page_products {
    padding-top: 30px;
    padding-bottom: 30px;
}

.single_page_products_inner {
    background-color: #f8f8f8;
    padding: 20px;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

section.single_page_products h2.product_section_title {
    margin-bottom: 1rem;
    font-size: 20px;
    line-height: 28px;
    color: #212121;
    font-weight: 500;
}

section.single_page_products ul {
    display: flex;
    gap: 15px;
    overflow-x: scroll;
}

/* Hide scrollbar for Chrome, Safari and Opera */
section.single_page_products ul::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
section.single_page_products ul {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

section.single_page_products ul li {
    list-style: none;
    min-width: 19%;
    max-width: 19%;
}

/* PRODUCT SINGLE */

/* PRODUCT CATEGORY */
.product_cat_container {
    padding: 30px 0;
}

.product_cat_container .product_cat_main {
    width: 100%;
    background: #fff;
}

.product_cat_container .product_cat_main header {
    background: transparent;
    box-shadow: none;
}

.breadcrumbs {
    display: flex;
    align-items: baseline;
    font-size: 15px;
    color: #c2c2c2;
    padding-top: 20px;
}

.breadcrumbs a {
    text-decoration: none;
    color: #222;
}

.breadcrumbs .arrow {
    font-size: 13px;
    margin: 0 5px;
    font-family: serif;
}

.product_cat_container .product_cat_main ul.products::before,
.product_cat_container .product_cat_main ul.products::after {
    display: none;
}

.product_cat_container .product_cat_main ul.products {
    /* display: flex;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%; */
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
}

.product_cat_container .product_cat_main ul.products li {
    list-style: none;
    /* min-width: calc(33.3% - 30px);
    max-width: calc(33.3% - 30px); */
    width: 100%;
    margin: 20px 0;
}

.product_cat_container .product_cat_main .product_cat_name_sort_container {
    margin: 15px 0;
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
}

.product_cat_container .product_cat_main .product_cat_name_sort_container h1 {
    font-size: 19px;
}

.filter_card {
    margin-bottom: 20px;
    background-color: #fff;
    padding: 14px 20px;
}

#color_filter {
    margin-bottom: 0;
}

.filter_card .filter_card_header {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.filter_card .filter_card_header span:last-of-type {
    color: #0397d3;
    font-weight: 600;
    cursor: pointer;
}

.filter_card .filter_item {
    margin-bottom: 10px;
    display: flex;
}

.filter_card .filter_item label.label_title {
    padding-left: 10px;
}

#color_filter .filter_card_content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#color_filter input {
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
}

#color_filter label {
    padding: 2px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: block;
}

#color_filter label span {
    background-color: transparent;
    display: block;
    border-radius: 50%;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

#color_filter input:checked+label {
    border: 1px solid #000;
}

/* PRODUCT CATEGORY */

/* CART PAGE */
section.cart_section {
    padding: 30px 0;
}

section.cart_section div.cart_header_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

section.cart_section div.cart_header_section a {
    color: #222;
    text-decoration: none;
}

table.cart-items {
    width: 100%;
}

table.cart-items thead tr th {
    text-align: left;
}

table.cart-items thead tr th {
    padding-bottom: 10px;
}

table.cart-items .cart_item_media_meta {
    display: flex;
    align-items: center;
}

table.cart-items thead tr,
table.cart-items tbody tr {
    position: relative;
}

table.cart-items thead tr::after,
table.cart-items tbody tr::after {
    content: "";
    background-color: #eee;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
}

table.cart-items tbody td {
    margin: 20px 0;
}

table.cart-items .cart_item_media_meta .cart_item_meta {
    padding-left: 10px;
    font-size: 14px;
}

table.cart-items .cart_item_media_meta .cart_item_meta .cart-item__name {
    color: #222;
    font-size: 16px;
    margin-bottom: 5px;
    display: block;
}

div.cart_item_quantity_wrapper {
    display: flex;
    align-items: center;
}

div.cart_item_quantity_wrapper .quantity {
    display: flex;
    border: 1px solid #888888;
    border-radius: 5px;
    overflow: hidden;
}

div.cart_item_quantity_wrapper .quantity button {
    border: none;
    height: 100%;
    overflow: hidden;
    padding-left: 10px;
    padding-right: 10px;
}

div.cart_item_quantity_wrapper .quantity input {
    width: 60px;
    text-align: center;
    border-top: none;
    border-bottom: none;
    border-left: 1px solid #888888;
    border-right: 1px solid #888888;
    text-align: center;
    outline: none;
}

table.cart-items button.trash_can {
    cursor: pointer;
    padding: 10px;
    background: transparent;
    outline: none;
    border: none;
    border-left: 1px solid #888888;
}

div.cart_checkout_btn_container {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

div.cart_checkout_btn_container a {
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 15px;
    cursor: pointer;
    margin-top: 10px;
    display: block;
    width: max-content;
}

div.cart_checkout_btn_container .totals {
    display: flex;
    justify-content: end;
    margin: 10px 0;
}

div.cart_checkout_btn_container .totals .totals__subtotal {
    margin-right: 10px;
}

div.is_emty {
    margin: 20px auto;
    text-align: center;
}

div.is_emty .empty_cart_heading {
    font-size: 35px;
    line-height: 1.4;
    color: #121212;
    margin-bottom: 2rem;
}

div.is_emty a {
    color: #fff;
    background-color: #000;
    padding: 15px 25px;
    text-decoration: none;
    font-size: 17px;
}

/* CART PAGE */

/* CHECKOUT PAGE DESIGN */
.checkout_page_cols {
    display: flex;
}

.checkout_page_cols .left_part {
    width: 70%;
    padding: 20px 20px 0 0;
}

.checkout_page_cols .right_part {
    width: 30%;
}

.checkout_page_cols .left_part form .input_group {
    margin-bottom: 15px;
}

.checkout_page_cols .left_part form .input_group label {
    margin-bottom: 5px;
    display: block;
    font-weight: bold;
}

.checkout_page_cols .left_part form textarea.address,
.checkout_page_cols .left_part form input {
    border: 1px solid #dedede;
    border-radius: 5px;
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 5px;
    background-color: #dedede;
}

.checkout_page_cols .left_part form textarea.address {
    max-width: 100%;
    max-height: 200px;
}

.checkout_page_cols .left_part form p.error {
    font-size: 15px;
    color: red;
}

.checkout_page_cols .left_part .payment_method {
    margin: 20px 0;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .125);
}

.checkout_page_cols .left_part .payment_method .payment_method_header {
    background-color: #fafafa;
    padding: 20px 15px;
}

.checkout_page_cols .left_part .payment_method .radio_group_container {
    padding: 25px;
    display: flex;
    justify-content: space-between;
}

.checkout_page_cols .left_part .payment_method .radio_group {
    display: flex;
    background-color: #fafafa;
    height: 80px;
    padding: 12px 20px 20px;
    width: 48%;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 0.25rem;
}

.checkout_page_cols .left_part .payment_method .radio_group img {
    height: 35px;
    vertical-align: middle;
}

.checkout_page_cols .left_part .payment_method .radio_group input {
    width: 20px;
}

.checkout_page_cols .left_part .payment_method .radio_group label {
    padding-left: 20px;
}

.checkout_page_cols .left_part .payment_method .radio_group label p {
    color: #77787b;
    font-size: 13px;
}

.checkout_page_cols .left_part form button.continue_payment {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 15px 22px;
    font-size: 18px;
    line-height: 18px;
    cursor: pointer;
    border-radius: 7px;
    font-weight: bold;
    margin-top: 20px;
}

.checkout_page_cols .left_part form p.confirm_order_warn {
    color: #73B3E0;
    margin: 10px 0;
    font-size: 18px;
    font-weight: bold;
}

.checkout_page_cols .left_part form div.delivary_location .delivary_location_title {
    border-bottom: 1px solid #464646;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 0;
    margin-bottom: 15px;
}

.checkout_page_cols .left_part form div.delivary_location .radio_group_container {
    display: flex;
    gap: 15px;
}

.checkout_page_cols .left_part form div.delivary_location .radio_group {
    display: flex;
    font-size: 18px;
}

.checkout_page_cols .left_part form div.delivary_location .radio_group input {
    width: 20px;
    margin-right: 10px;
}

.checkout_page_cols .left_part p.form_title {
    font-size: 19px;
    margin-bottom: 20px;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
    font-weight: bold;
}

.checkout_page_cols .left_part p.form_title span {
    font-size: 17px;
    font-weight: normal;
}

.checkout_page_cols .right_part .product_list {}

.checkout_page_cols .right_part .product_list p.product_summary {
    margin-bottom: 15px;
}

.checkout_page_cols .right_part .product_list li {
    list-style: none;
    border: 1px solid #dedede;
    border-top: none;
    padding: 20px 10px 10px 10px;
    display: flex;
}

.checkout_page_cols .right_part .product_list li:first-of-type {
    border-top: 1px solid #dedede;
}

.checkout_page_cols .right_part .product_list li .product_list_media {
    margin-right: 10px;
}

.checkout_page_cols .right_part .product_list li .product_list_media img {
    width: 56px;
}

.checkout_page_cols .right_part .product_list li .product_list_name {
    font-weight: bold;
    margin-bottom: 5px;
}

.wsp_thakyou_page {
    width: 40%;
    margin: 40px auto;
    font-family: "solimanlipi", Sans-serif;
}

.wsp_thakyou_page .thak_you_title {
    font-size: 26px;
    border-bottom: 2px solid #2EB38B;
    padding-bottom: 15px;
    text-align: center;
}

.wsp_thakyou_page .thak_you_txt {
    text-align: center;
    font-size: 20px;
    margin: 15px auto;
}

.wsp_thakyou_page .thak_you_thanks {
    text-align: right;
    font-size: 19px;
}

/* CHECKOUT PAGE DESIGN */
div.pagination {
    margin: 25px auto;
    display: flex;
    justify-content: center;
}

div.pagination span,
div.pagination a {
    border: 1px solid #222;
    margin-right: 5px;
    padding: 5px 10px;
    color: #fff;
    background: #222;
    text-decoration: none;
}

div.pagination span,
div.pagination a.disabled {
    background: #fff;
    color: #222;
}

nav.woocommerce-breadcrumb {
    margin: 30px 0 0 0 !important;
    -webkit-box-shadow: 0 -2px 8px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 -2px 8px 0 rgba(0, 0, 0, .1);
    background: #fff;
    padding: 10px !important;
}

nav.woocommerce-pagination a {
    text-decoration: none;
}

nav.woocommerce-pagination ul {
    display: flex;
    justify-content: center;
}

nav.woocommerce-pagination ul li {
    list-style: none;
    padding: 10px 15px;
    border: 1px solid #eee;
    margin-right: 10px;
}

.page_container {
    padding: 30px 0;
}

form.woocommerce-cart-form img {
    width: 90px;
    height: 100px;
}

form.woocommerce-cart-form .product-name a {
    text-decoration: none;
}

div.coupon {
    display: none;
}

.woocommerce .cart .button {
    float: left;
    color: #fff !important;
    background-color: #000 !important;
}

div.cart_totals h2 {
    display: none;
}

div.cart_totals table.shop_table_responsive {
    display: none;
}

.woocommerce-page .cart-collaterals .cart_totals {
    float: left;
}

.woocommerce-page #payment #place_order,
.woocommerce-page .cart-collaterals .cart_totals .wc-proceed-to-checkout a {
    color: #fff;
    background-color: #000;
    width: max-content;
    font-size: 1.1rem;
    padding: 15px 20px;
}

.woocommerce-page #payment #place_order {
    float: left;
    margin-top: 10px;
}

div.woocommerce-privacy-policy-text {
    display: none;
}

body.woocommerce-page .dnone {
    display: none;
}

body.woocommerce-checkout #customer_details .col-1 {
    width: 100%;
}

body.woocommerce-checkout #customer_details #billing_first_name_field {
    width: 100%;
}

body.woocommerce-checkout #customer_details input {
    border: 1px solid #dedede;
    border-radius: 5px;
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 5px;
    background-color: #dedede;
}

body.woocommerce-checkout #order_review_heading {
    margin: 30px 0 10px 0;
}

body.woocommerce-checkout .woocommerce-form-coupon-toggle {
    display: none;
}

body.woocommerce-checkout #shipping_method {
    display: flex;
    align-items: center;
    gap: 15px;
}

body.woocommerce-checkout #shipping_method input {
    width: 20px;
    height: 20px;
    margin-right: 10px !important;
}

/* Footer */
footer.site_footer {
    padding-top: 36px;
    padding-bottom: 20px;
}

footer.site_footer .footer_content_bottom {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
}

/* Product Modal Styles */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 1;
}

.modal-content {
    position: relative;
    background-color: #fff;
    max-width: 600px;
    width: 90%;
    margin: 5% auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2;
    pointer-events: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    width: 30px;
    height: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #666;
}

.modal-body {
    padding: 30px;
}

.modal-product-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.modal-product-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.modal-product-info h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.product-price {
    font-size: 20px;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 20px;
}

.product-modal-form {
    display: flex;
    flex-direction: column;
}

.variation-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.variation-group label {
    margin-bottom: 5px;
    font-weight: 500;
}

.variation-group select {
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    position: relative;
    z-index: 3;
    pointer-events: auto;
}

.quantity-wrapper {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.quantity-wrapper label {
    margin-bottom: 5px;
    font-weight: 500;
}

.quantity-wrapper input {
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 80px;
}

.add-to-cart-modal {
    padding: 12px 20px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-to-cart-modal:hover {
    background-color: #229954;
}

.single_page_products_inner ul,
div.home_page_products {
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.single_page_products_inner ul {
    margin-top: 0;
}

.card-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

button.open-product-modal,
.card-actions a.add-to-cart-link,
.card-actions a.order_korun {
    font-family: 'SolaimanLipi';
    background: #222;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    width: 50%;
    text-align: center;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 15px;
}

button.open-product-modal,
.card-actions a.add-to-cart-link {
    background-color: #c9c9c9;
    color: #222;
}

.card_media img {
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px 20px 0 0;
}

.card__content {
    padding: 10px;
    background-color: #ececec;
}

.card__content h3 {
    margin-bottom: 10px;
    font-weight: normal;
}

.card__content h3 a {
    color: #222;
    text-decoration: none;
    font-size: 17px;
}

.card__content .price__container {
    font-size: 15px;
}

.product_grid_item {
    /* background-color: #cfcfcf; */
}

form.direct-checkout-form {
    max-width: 500px;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

form.direct-checkout-form label {
    font-family: 'SolaimanLipi';
    font-size: 19px;
}

form.direct-checkout-form input[name="dc_name"],
form.direct-checkout-form input[name="dc_phone"],
form.direct-checkout-form textarea[name="dc_address"] {
    margin-bottom: 15px;
    width: 100%;
    padding: 10px;
    border: #444 1px solid;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'SolaimanLipi';
    margin-top: 10px;
}

a.wtsapp_order,
form.direct-checkout-form button[type="submit"] {
    margin-top: 15px;
    padding: 17px 10px;
    background-color: #FEB37A;
    color: #222;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 17px;
    font-weight: 600;
    font-family: 'SolaimanLipi';
}

a.wtsapp_order {
    display: flex;
    margin-top: 10px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

form.direct-checkout-form div.payment {
    background-color: #c1f0e6;
    padding: 20px;
    color: #222;
    border-radius: 5px;
    margin-top: 10px;
    text-align: center;
    font-family: 'SolaimanLipi';
    font-weight: 700;
}

form.direct-checkout-form div.payment .delivery-charge {
    margin-bottom: 10px;
    border-bottom: 2px solid #fff;
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
}

form.direct-checkout-form div#dc_total_box {
    display: flex;
    justify-content: space-between;
}

form.direct-checkout-form div.delivery_options {
    font-family: 'SolaimanLipi';
    margin: 10px 0;
}

form.direct-checkout-form div.delivery_options label {
    width: 100%;
    font-size: 17px;
    margin-bottom: 10px;
    display: block;
    font-family: 'SolaimanLipi';
    position: relative;
}

form.direct-checkout-form div.delivery_options label span.f_right {
    position: absolute;
    right: 20px;
    font-weight: 600;
    font-size: 15px;
}

.custom-size-buttons {
    margin-bottom: 15px;
}

.size-btn {
    height: 35px;
    width: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #222;
    background-color: #fff;
    color: #222;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.size-btn.active {
    background-color: #c1f0e6;
}

p.size_select {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 20px;
    font-family: 'SolaimanLipi';
}

@media screen and (max-width: 767px) {
    .card-actions {
        flex-direction: column;
    }

    button.open-product-modal,
    .card-actions a.add-to-cart-link,
    .card-actions a.order_korun {
        width: 100%;
    }

    .single_page_products_inner ul,
    div.home_page_products {
        grid-template-columns: repeat(2, 1fr);
    }
}

.fancybox-bg {
    background-color: #000 !important;
}

.wpgs-nav .slick-slide {
    margin: 5px 0 !important;
}

.slick-prev {
    left: 0 !important;
}

.slick-next {
    right: 0 !important;
}

@media (max-width: 768px) {
    .modal-product-details {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }

    .modal-body {
        padding: 20px;
    }
}