* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "Maison_Neue_Mono";
    src: url(../font/maison/Maison_Neue_Mono.ttf);
}

@font-face {
    font-family: "Maison_Neue_Book";
    src: url(../font/maison/Maison_Neue_Book.ttf);
}

@font-face {
    font-family: "Maison_Neue_Bold";
    src: url(../font/maison/Maison_Neue_Bold.ttf);
}

@font-face {
    font-family: "Maison_Neue_Light";
    src: url(../font/maison/Maison_Neue_Light.ttf);
}

:root {
    --Maison_Neue_Mono: "Maison_Neue_Mono";
    --Maison_Neue_Book: "Maison_Neue_Book";
    --Maison_Neue_Bold: "Maison_Neue_Bold";
    --Maison_Neue_Light: "Maison_Neue_Light";

    --fs_12: 12px;
    --fs_14: 14px;
    --fs_16: 16px;
    --fs_18: 18px;
    --fs_20: 20px;
    --fs_22: 22px;
    --fs_24: 24px;
    --fs_26: 26px;
    --fs_28: 28px;
    --fs_30: 30px;
    --fs_32: 32px;
    --fs_34: 34px;
    --fs_36: 36px;
    --fs_38: 38px;
    --fs_40: 40px;
    --fs_42: 42px;
    --fs_44: 44px;
    --fs_46: 46px;
    --fs_48: 48px;
    --fs_50: 50px;
    --fs_52: 52px;
    --fs_54: 54px;
    --fs_60: 60px;

    --bg_color_1: #000000;
    --bg_color_2: #262626;
    --bg_color_3: #FFFFFF;
    --bg_color_4: #F5F4F4;

    --text_color_1: #000000;
    --text_color_2: #262626;
    --text_color_3: #FFFFFF;
    --text_color_4: #737373;
    --text_color_5: #DDDBDC;

}

div,
p,
span,
li,
label,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_1);
}

.top_bar_part {
    background-color: var(--bg_color_1);
    padding: 10px;
}

.top_bar_part .top_content {
    display: flex;
    justify-content: space-between;
}

.top_bar_part .second_part {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.top_bar_part .second_part span {
    color: var(--text_color_3);
    font-size: var(--fs_12);
    font-family: var(--Maison_Neue_Bold);
}

.top_bar_part .second_part a {
    color: var(--text_color_3);
    font-size: var(--fs_12);
    font-family: var(--Maison_Neue_Book);
    margin-left: 5px;
    display: flex;
    align-items: center;
}

.top_bar_part .second_part a svg {
    color: var(--text_color_3);
    height: 20px;
    font-family: var(--Maison_Neue_Book);
    margin-left: 5px;
}

.top_bar_part .third_part {
    display: flex;
    align-items: center;
    justify-content: end;
}

.top_bar_part .third_part img {
    height: 20px;
}

.top_bar_part .third_part span {
    color: var(--text_color_3);
    font-size: var(--fs_12);
    font-family: var(--Maison_Neue_Book);
    margin-left: 10px;
}

@media only screen and (max-width: 576px) {
    .top_bar_part .top_content {
        display: flex;
        flex-direction: column;
        justify-content: start;
    }

    .top_bar_part .second_part {
        display: flex;
        justify-content: start;
    }

    .top_bar_part .third_part {
        display: flex;
        justify-content: start;
        margin-top: 10px;
    }
}

.main_navbar_part {
    position: sticky;
    top: 0;
    z-index: 99;
    background-color: #FFFFFF;
    transition: box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
    will-change: box-shadow, transform;
}

.main_navbar_part {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.main_navbar_part.is-sticky {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.main_navbar_part .user_menu .dropdown .dropdown-menu {
    margin-top: 18px !important;
}

.main_navbar_part .user_menu .dropdown .dropdown-menu a {
    height: fit-content;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
}

.main_navbar_part .user_menu .dropdown .dropdown-menu a svg {
    height: 14px;
    width: 14px;
}

.main_navbar_part .user_menu .dropdown .dropdown-menu button {
    height: fit-content;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
}

.main_navbar_part .user_menu .dropdown .dropdown-menu button svg {
    height: 14px;
    width: 14px;
}


.search-offcanvas {
    width: 650px;
    max-width: 85vw;
    background-color: var(--bg_color_3);
}

.search-offcanvas .offcanvas-backdrop.show {
    opacity: 0.65;
}

.search-offcanvas .search-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--bg_color_4);
    padding: 0 20px;
    border-bottom: 1px solid #bebebe;
}

.search-offcanvas .search-row-icon {
    width: 18px;
    height: 18px;
    color: var(--text_color_1);
}

.search-offcanvas .search-input {
    width: 100%;
    border: 0;
    outline: 0;
    font-size: 16px;
    padding: 10px 0;
    font-family: var(--Maison_Neue_Book);
    background-color: var(--bg_color_4);
}

.search-offcanvas .tredning_search_list {
    margin-top: 40px;
    position: absolute;
    bottom: 20px;
    padding: 0 5px;
}

.search-offcanvas .tredning_search_list .title {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #bebebe;
    width: 360px;
}

.search-offcanvas .tredning_search_list h5 {
    font-size: var(--fs_18);
    color: var(--text_color_1);
    font-family: var(--Maison_Neue_Book);
    letter-spacing: 2%;
}

.search-offcanvas .tredning_search_list a {
    margin-bottom: 5px;
    font-size: var(--fs_16);
    color: var(--text_color_2);
    font-family: var(--Maison_Neue_Book);
    text-decoration: none;
    display: block;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-offcanvas .tredning_search_list a:hover {
    color: var(--text_color_1);
}

header {
    padding: 15px 100px;
}

header .left_side_part {
    display: flex;
    justify-content: start;
    align-items: center;
    height: 100%;
}

header .left_side_part a {
    text-decoration: none;
}

header .left_side_part p {
    font-size: var(--fs_12);
    color: var(--text_color_2);
    font-family: var(--Maison_Neue_Book);
    margin-bottom: 0;
    margin-right: 25px;
    letter-spacing: 0.8px;
}

header .left_side_part p:hover {
    color: var(--text_color_1);
    font-weight: bold;
}

header .middle_part {
    display: flex;
    justify-content: center;
}

header .right_side_part {
    display: flex;
    justify-content: end;
    align-items: center;
    height: 100%;
}

header .right_side_part a {
    /* height: 18px; */
    color: var(--text_color_2);
    font-family: var(--Maison_Neue_Book);
    margin-bottom: 0;
    margin-left: 25px;
    cursor: pointer;
}

header .right_side_part a:nth-of-type(1) {
    margin-left: 0;
}

header .right_side_part a svg {
    height: 20px;
    width: 20px;
    max-height: 20px;
    max-width: 20px;
}

.navbar-toggler {
    border: none;
    width: 100%;
    display: flex;
    justify-content: end;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media only screen and (max-width: 992px) {

    header {
        padding: 15px 12px;
    }

}

@media only screen and (max-width: 576px) {
    header .middle_part {
        display: flex;
        justify-content: start;
    }

    header .right_side_part {
        display: flex;
        justify-content: end;
    }

    header .right_side_part svg:nth-of-type(1) {
        margin-left: 0;
    }
}

.navbar {
    border-top: 1px solid var(--text_color_5);
    border-bottom: 1px solid var(--text_color_5);
}

.navbar .navbar-nav .nav-item {
    padding: 0 10px;
}

.navbar .navbar-nav .nav-item .nav-link {
    font-size: var(--fs_14);
    color: var(--text_color_2);
    font-family: var(--Maison_Neue_Book);
    letter-spacing: 0.8px;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
    color: var(--text_color_1);
}


.homepage_first_section {
    position: relative;
}

.homepage_first_section .swiper-slide {
    position: relative;
}

.homepage_first_section .swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.homepage_first_section .image_wrapper {
    position: relative;
    z-index: 0;

}

.homepage_first_section .image_wrapper img {
    width: 100%;
    height: 85vh;
    min-height: 85vh;
    max-height: 85vh;
    object-fit: cover;
    /* display: block; */
    /* object-position: top; */
}

.homepage_first_section .content_part {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    position: absolute;
    z-index: 2;
}

.homepage_first_section .content_part h2 {
    font-size: var(--fs_54);
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_3);
    margin-bottom: 10px;
}

.homepage_first_section .content_part p {
    font-size: var(--fs_24);
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_3);
    margin-bottom: 0;
}

.homepage_first_section .shop_now_btn {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45%;
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_2);
    background-color: var(--bg_color_3);
    border-radius: 0;
    font-size: var(--fs_14);
    margin-top: 14px;
}

.homepage_first_section .shop_now_btn:focus {
    background-color: var(--bg_color_3);
}

@media only screen and (max-width: 1400px) {

    .homepage_first_section .image_wrapper img {
        height: 100%;
        object-fit: cover;
    }

}

@media only screen and (max-width: 992px) {

    /* .homepage_first_section .image_wrapper img {
        min-height: 520px;
    } */

    .homepage_first_section .image_wrapper img {
        height: 45vh;
        min-height: 45vh;
        max-height: 45vh;
    }

    .homepage_first_section .content_part {
        left: 5%;
        max-width: 420px;
        align-items: flex-start;
        text-align: left;
    }

    .homepage_first_section .content_part h2 {
        font-size: var(--fs_36);
    }

    .homepage_first_section .content_part p {
        font-size: var(--fs_18);
    }

    .homepage_first_section .shop_now_btn {
        padding: 10px;
        font-size: var(--fs_12);
    }
}

@media only screen and (max-width: 576px) {

    .homepage_first_section .image_wrapper img {
        min-height: 25vh;
        max-height: 25vh;
    }

    .homepage_first_section .content_part {
        left: 16px;
        right: 16px;
        max-width: 100%;
    }

    .homepage_first_section .content_part h2 {
        font-size: var(--fs_24);
        margin-bottom: 8px;
    }

    .homepage_first_section .content_part p {
        font-size: var(--fs_14);
    }

    .homepage_first_section .shop_now_btn {
        width: auto;
    }
}

.homepage_second_section {
    padding: 100px 0;
}

.homepage_second_section .heading_part .heading {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_24);
    color: var(--text_color_2);
    text-align: center;
    margin-bottom: 26px;
}

.homepage_second_section .categorySwiper {
    padding: 15px 45px;
    position: relative;
}

.homepage_second_section .categorySwiper .swiper-wrapper {
    margin-bottom: 20px;
}

.homepage_second_section .categorySwiper .swiper-slide {
    height: auto;
}

.homepage_second_section .categorySwiper .card {
    border-radius: 0;
    border: none;
    cursor: pointer;
    height: 100%;
}

.homepage_second_section .categorySwiper .card .model_image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.homepage_second_section .categorySwiper .card .card-body {
    padding: 12px 0 0 0;
}

.homepage_second_section .categorySwiper .card .card-body .card-title {
    margin-bottom: 0;
}

.homepage_second_section .categorySwiper .card .card-body .card-title a {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_18);
    color: var(--text_color_2);
    width: 100%;
    display: flex;
    justify-content: center;
    text-decoration: none;
    margin-bottom: 12px;
}

.homepage_second_section .categorySwiper .swiper-button-prev,
.homepage_second_section .categorySwiper .swiper-button-next {
    color: var(--bg_color_2);
    z-index: 10;
}

.homepage_second_section .categorySwiper .swiper-button-prev::after,
.homepage_second_section .categorySwiper .swiper-button-next::after {
    font-size: var(--fs_22);
}

.homepage_second_section .categorySwiper .swiper-pagination-bullet-active {
    background-color: var(--bg_color_2);
}

.homepage_third_section .heading_part .heading {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_24);
    color: var(--text_color_2);
    text-align: center;
    margin-bottom: 26px;
}

.homepage_third_section .card {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 0;
}

.homepage_third_section .image_wrapper {
    position: relative;
}

.homepage_third_section .image_wrapper img {
    width: 100%;
    display: block;
    height: 600px;
    object-fit: cover;
    object-position: top;
}

.homepage_third_section .image_wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.homepage_third_section .card-title {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    text-align: center;
    z-index: 2;
    margin-bottom: 30px;
    padding: 0 10px;
}

.homepage_third_section .card-title p {
    font-size: var(--fs_18);
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_3);
    margin-bottom: 5px;
    line-height: 1.3;
}

.homepage_third_section .shop_now_btn {
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25%;
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_2);
    background-color: var(--bg_color_3);
    border-radius: 0;
    font-size: var(--fs_14);
}

.homepage_third_section .shop_now_btn:focus {
    background-color: var(--bg_color_3);
}

.homepage_fourth_section {
    padding: 100px 0;
}

/* .homepage_fourth_section .bg_image_part {
    background-image: url(../image/lady2.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
} */

.homepage_fourth_section .bg_image_part {
    background-image: url(../image/lady2.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.homepage_fourth_section .bg_image_part::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.homepage_fourth_section .content_part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.homepage_fourth_section .content_part .text1 {
    font-size: var(--fs_32);
    color: var(--text_color_3);
    font-family: var(--Maison_Neue_Book);
    margin-bottom: 6px;
}

.homepage_fourth_section .content_part .text2 {
    font-size: var(--fs_16);
    color: var(--text_color_3);
    font-family: var(--Maison_Neue_Book);
    margin-bottom: 0;
}

.homepage_fourth_section .shop_now_btn {
    padding: 9px 35px 7px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_2);
    background-color: var(--bg_color_3);
    border-radius: 0;
    font-size: var(--fs_14);
    margin-top: 10px;
}

.homepage_fourth_section .shop_now_btn:focus {
    background-color: var(--bg_color_3);
}

.homepage_fifth_section .heading_part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.homepage_fifth_section .heading_part .title {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_24);
    color: var(--text_color_2);
    margin-bottom: 15px;
}

.homepage_fifth_section .heading_part .desc {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    color: var(--text_color_2);
    text-align: center;
}

.homepage_fifth_section .everlaneSwiper {
    padding: 15px 45px;
    position: relative;
}

.homepage_fifth_section .everlaneSwiper .swiper-wrapper {
    margin-bottom: 40px;
}

.homepage_fifth_section .everlaneSwiper .product_card {
    cursor: pointer;
}

.homepage_fifth_section .everlaneSwiper .product_card .img_wrapper {
    position: relative;
    overflow: hidden;
}

.homepage_fifth_section .everlaneSwiper .product_card .wishlist_icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.homepage_fifth_section .everlaneSwiper .product_card:hover .wishlist_icon {
    opacity: 1;
    transform: scale(1);
}

.homepage_fifth_section .everlaneSwiper .product_card .wishlist_icon:hover {
    background-color: var(--bg_color_2);
    border: 1px solid var(--text_color_2);
    color: var(--text_color_3);
}

.homepage_fifth_section .everlaneSwiper .product_card:hover .wishlist_icon.active {
    background-color: #F50F0F;
    border: 1px solid #F50F0F;
}

.homepage_fifth_section .everlaneSwiper .product_card .wishlist_icon.active svg {
    color: var(--text_color_3);
}

.homepage_fifth_section .everlaneSwiper .product_card .wishlist_icon svg {
    height: 20px;
    width: 20px;
}














.homepage_fifth_section .everlaneSwiper .product_card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.homepage_fifth_section .everlaneSwiper .product_card .info_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5px;
    font-size: var(--fs_18);
    margin-top: 12px;
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_2);
}

.homepage_fifth_section .everlaneSwiper .product_card .info_row .item_name {
    margin-bottom: 0;
}

.homepage_fifth_section .everlaneSwiper .product_card .info_row .price_part {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.homepage_fifth_section .everlaneSwiper .product_card .info_row .price_part .new_price {
    font-size: var(--fs_16);
    color: #1AAC27;
    margin-bottom: 0;
}

.homepage_fifth_section .everlaneSwiper .product_card .info_row .price_part .old_price {
    color: #F50F0F;
    font-size: var(--fs_14);
    margin-bottom: 0;
    text-decoration: line-through;
}

.homepage_fifth_section .everlaneSwiper .swiper-button-prev,
.homepage_fifth_section .everlaneSwiper .swiper-button-next {
    color: var(--bg_color_2);
    z-index: 10;
}

.homepage_fifth_section .everlaneSwiper .swiper-button-prev::after,
.homepage_fifth_section .everlaneSwiper .swiper-button-next::after {
    font-size: var(--fs_22);
}

.homepage_fifth_section .swiper-pagination-bullet-active {
    background-color: var(--bg_color_2);
}

.homepage_sixth_section {
    padding: 100px 0;
}

.homepage_sixth_section .talkingSwiper {
    position: relative;
    padding: 0 50px 0 50px;
}

.homepage_sixth_section .talkingSwiper .swiper-wrapper {
    margin-bottom: 30px;
}

.homepage_sixth_section .talkingSwiper .swiper-wrapper .swiper-slide {
    cursor: pointer;
}

.homepage_sixth_section .talkingSwiper .talking_slide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 520px;
    gap: 40px;
}

.homepage_sixth_section .talkingSwiper .talking_slide .talking_left {
    max-width: 520px;
    padding-left: 60px;
}

.homepage_sixth_section .talkingSwiper .talking_slide .talking_left .small_title {
    font-size: var(--fs_16);
    color: var(--text_color_1);
    font-family: var(--Maison_Neue_Book);
    margin-bottom: 35px;
    letter-spacing: 0.8px;
}

.homepage_sixth_section .talkingSwiper .talking_slide .talking_left .stars {
    font-size: var(--fs_18);
    margin-bottom: 6px;
    color: var(--text_color_1);
    font-family: var(--Maison_Neue_Book);
}

.homepage_sixth_section .talkingSwiper .talking_slide .talking_left .quote {
    font-size: var(--fs_24);
    color: var(--text_color_1);
    font-family: var(--Maison_Neue_Book);
    margin-bottom: 35px;
}

.homepage_sixth_section .talkingSwiper .talking_slide .talking_left .meta {
    font-size: var(--fs_16);
    color: var(--text_color_1);
    font-family: var(--Maison_Neue_Book);
    letter-spacing: 0.8px;
}

.homepage_sixth_section .talkingSwiper .talking_slide .talking_left .meta a {
    font-size: var(--fs_16);
    color: var(--text_color_1);
    font-family: var(--Maison_Neue_Book);
    text-decoration: underline;
    letter-spacing: 0.8px;
}

.homepage_sixth_section .talkingSwiper .talking_slide .talking_right {
    display: flex;
    justify-content: center;
}

.homepage_sixth_section .talkingSwiper .talking_slide .talking_right img {
    width: 100%;
    max-width: 420px;
    height: 520px;
    object-fit: cover;
}

.homepage_sixth_section .talkingSwiper .swiper-button-prev,
.homepage_sixth_section .talkingSwiper .swiper-button-next {
    color: var(--text_color_2);
    z-index: 10;
}

.homepage_sixth_section .talkingSwiper .swiper-button-prev::after,
.homepage_sixth_section .talkingSwiper .swiper-button-next::after {
    font-size: var(--fs_22);
}

.homepage_sixth_section .talkingSwiper .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.homepage_sixth_section .talkingSwiper .swiper-pagination-bullet {
    background: var(--text_color_2);
}

@media only screen and (max-width: 992px) {
    .homepage_sixth_section .talkingSwiper .talking_slide .talking_left {
        padding-left: 20px;
        max-width: 100%;
    }

    .homepage_sixth_section .talkingSwiper .talking_slide {
        grid-template-columns: 1fr;
        gap: 25px;
        min-height: auto;
    }

    .homepage_sixth_section .talkingSwiper .talking_right img {
        height: 420px;
        max-width: 520px;
    }

    .homepage_sixth_section .talkingSwiper .talking_slide .talking_left .quote {
        font-size: var(--fs_22);
    }
}

@media only screen and (max-width: 576px) {
    .homepage_sixth_section .talkingSwiper {
        padding: 0 20px 30px;
    }

    .homepage_sixth_section .talkingSwiper .talking_right img {
        height: 340px;
    }

    .homepage_sixth_section .talkingSwiper .talking_slide .talking_left .quote {
        font-size: var(--fs_22);
    }

    .homepage_fifth_section .everlaneSwiper .product_card .info_row {
        font-size: var(--fs_16);
    }
}

.homepage_seventh_section .container-fluid .info_part {
    padding: 80px 0;
    border-top: 1px solid var(--text_color_2);
    margin: 0 40px;
}

.homepage_seventh_section .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 0;
    border-radius: 0;
    padding: 20px;
}

.homepage_seventh_section .card .card-body {
    margin-top: 3px;
}

.homepage_seventh_section .card .card-body .card-title {
    font-family: var(--Maison_Neue_Bold);
    color: var(--text_color_2);
    font-size: var(--fs_14);
    margin-bottom: 2px;
}

.homepage_seventh_section .card .card-body .card-text {
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_2);
    font-size: var(--fs_14);
    margin-bottom: 0;
}

.homepage_eighth_section {
    background-color: var(--bg_color_4);
    padding: 80px 50px 20px 50px;
}

.homepage_eighth_section .first h5 {
    font-size: var(--fs_16);
    color: var(--text_color_2);
    font-family: var(--Maison_Neue_Bold);
    margin-bottom: 20px;
}

.homepage_eighth_section .first p {
    font-size: var(--fs_14);
    color: var(--text_color_4);
    font-family: var(--Maison_Neue_Book);
    margin-bottom: 6px;
}

.homepage_eighth_section .first p a {
    text-decoration: none;
    color: var(--text_color_4);
}

.homepage_eighth_section .first p a:hover {
    color: var(--text_color_1);
}

.homepage_eighth_section .mail_field .email_field {
    display: flex;
    align-items: center;
    background-color: var(--bg_color_3);
}

.homepage_eighth_section .mail_field .email_field input {
    flex: 1;
    border: 1px solid #DDDBDC;
    padding: 14px 16px;
    outline: none;
    font-size: var(--fs_14);
    color: var(--text_color_1);
    font-family: var(--Maison_Neue_Book);
}

.homepage_eighth_section .mail_field .email_field button {
    padding: 13px 16px;
    background: var(--bg_color_2);
    color: var(--text_color_3);
    border: none;
    font-size: var(--fs_20);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.homepage_eighth_section .mail_field .email_field button svg {
    width: 25px;
}

.homepage_eighth_section .menu_option {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.homepage_eighth_section .menu_option p {
    margin: 0 20px 6px 20px;
    font-size: var(--fs_14);
    color: var(--text_color_4);
    font-family: var(--Maison_Neue_Book);
}

.homepage_eighth_section .all_rights_part {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.homepage_eighth_section .all_rights_part p {
    margin: 0 20px 0 20px;
    font-size: var(--fs_14);
    color: var(--text_color_4);
    font-family: var(--Maison_Neue_Book);
}

@media only screen and (max-width: 992px) {
    .homepage_eighth_section .menu_option {
        display: flex;
        flex-direction: column;
        margin-top: 35px;
    }

    .homepage_eighth_section .menu_option p {
        margin: 0 20px 6px 0;
    }
}

@media only screen and (max-width: 576px) {
    .homepage_eighth_section .mail_field {
        max-width: 100%;
    }

    .homepage_eighth_section {
        padding: 0;
    }
}

.shop_first_section {
    padding: 100px 0;
}

.shop_first_section .accordion-button {
    color: var(--text_color_1);
    font-family: var(--Maison_Neue_Bold);
    font-size: var(--fs_20);
}

.shop_first_section .accordion-button:not(.collapsed) {
    background-color: transparent;
}

.shop_first_section .accordion-item {
    border-left: none;
    border-right: none;
    border-top: none;
}

.shop_first_section .accordion-item:first-of-type>.accordion-header .accordion-button {
    border-radius: 0 !important;
}

.shop_first_section .accordion-button:focus {
    box-shadow: none;
}

.shop_first_section .left_side_filter_part {
    position: sticky;
    top: 10px;
    height: fit-content;
    overflow: hidden !important;
}

.shop_first_section .left_side_filter_part .accordion .accordion-item .accordion-body .browse_part .category_names {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 5px;
}

.shop_first_section .left_side_filter_part .accordion .accordion-item .accordion-body input[type="checkbox"] {
    accent-color: var(--bg_color_1);
    margin-right: 10px;
    width: 15px;
    height: 15px;
    border-radius: 0;
}

.shop_first_section .left_side_filter_part .accordion .accordion-item .accordion-body label {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    margin-top: 3px;
}

.shop_first_section .left_side_filter_part .accordion .accordion-item .accordion-body .range-wrap {
    width: 100%;
}

.shop_first_section .left_side_filter_part .accordion .accordion-item .accordion-body .slider {
    position: relative;
    height: 34px;
    width: 100%;
}

.shop_first_section .left_side_filter_part .accordion .accordion-item .accordion-body .track {
    position: absolute;
    inset: 0;
    top: 50%;
    height: 2px;
    transform: translateY(-50%);
    background: #e5e7eb;
}

.shop_first_section .left_side_filter_part .accordion .accordion-item .accordion-body .range-fill {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    background-color: var(--bg_color_2);
    border-radius: 999px;
    left: 0;
    width: 0;
}

.shop_first_section .left_side_filter_part .accordion .accordion-item .accordion-body .slider input[type="range"] {
    position: absolute;
    inset: 0;
    width: 100%;
    margin: 0;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

.shop_first_section .left_side_filter_part .accordion .accordion-item .accordion-body .slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--bg_color_2);
    pointer-events: auto;
    cursor: pointer;
}

.shop_first_section .left_side_filter_part .accordion .accordion-item .accordion-body .slider input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--bg_color_2);
    cursor: pointer;
}

.shop_first_section .left_side_filter_part .accordion .accordion-item .accordion-body .slider input[type="range"]::-webkit-slider-runnable-track {
    background: transparent;
}

.shop_first_section .left_side_filter_part .accordion .accordion-item .accordion-body .slider input[type="range"]::-moz-range-track {
    background: transparent;
}

.shop_first_section .left_side_filter_part .accordion .accordion-item .accordion-body .labels {
    display: flex;
    justify-content: space-between;
    font-size: var(--fs_14);
    font-family: var(--Maison_Neue_Book);
    margin-top: 6px;
}

.shop_first_section .left_side_filter_part .accordion .accordion-item .accordion-body .color_accordion_part .colour_name {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
}

.shop_first_section .left_side_filter_part .accordion .accordion-item .accordion-body .color_accordion_part .color_selection_part {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 100%;
}

.shop_first_section .left_side_filter_part .accordion .accordion-item .accordion-body .color_accordion_part .color-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--bg_color_2) !important;
    position: relative;
}

.shop_first_section .left_side_filter_part .accordion .accordion-item .accordion-body .color_accordion_part .color-dot.active {
    border-color: var(--bg_color_2);
}

.shop_first_section .left_side_filter_part .accordion .accordion-item .accordion-body .color_accordion_part1 .colour_name {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
}

.shop_first_section .left_side_filter_part .accordion .accordion-item .accordion-body .color_accordion_part1 .color_selection_part {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 100%;
}

.shop_first_section .left_side_filter_part .accordion .accordion-item .accordion-body .color_accordion_part1 .color-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
}

.shop_first_section .left_side_filter_part .accordion .accordion-item .accordion-body .color_accordion_part1 .color-dot.active {
    border-color: var(--bg_color_2);
}

.shop_first_section .left_side_filter_part .accordion .accordion-item .accordion-body .size_part .size_names {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 5px;
    cursor: pointer;
}

.shop_first_section .left_side_filter_part .accordion .accordion-item .accordion-body input[type="checkbox"] {
    accent-color: var(--bg_color_1);
    margin-right: 10px;
    width: 15px;
    height: 15px;
    border-radius: 0;
}

.shop_first_section .left_side_filter_part .accordion .accordion-item .accordion-body label {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    margin-top: 3px;
}

.shop_first_section .right_side_item_part .product_card_part .card {
    border-radius: 0;
    border: none;
}

.shop_first_section .right_side_item_part .product_card_part .card a {
    text-decoration: none;
}

.shop_first_section .right_side_item_part .product_card_part .card .image_wrapper img {
    width: 100%;
    border-radius: 0;
    height: 400px;
    object-fit: cover;
    object-position: top;
}

.shop_first_section .right_side_item_part .product_card_part .card .card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 10px;
}

.shop_first_section .right_side_item_part .product_card_part .card .card-body .card-title {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_18);
    color: var(--text_color_1);
}

.shop_first_section .right_side_item_part .product_card_part .card .card-body .card-text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.shop_first_section .right_side_item_part .product_card_part .card .card-body .card-text .discounted_price {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    color: #1AAC27;
}

.shop_first_section .right_side_item_part .product_card_part .card .card-body .card-text .actual_price {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    color: #F50F0F;
    text-decoration: line-through;
}

.shop_first_section .right_side_item_part .product_card_part .card .btn_addto_cart {
    font-family: var(--Maison_Neue_Book);
    background-color: transparent;
    border-radius: 0;
    font-size: var(--fs_14);
    color: var(--text_color_2);
    padding: 8px 16px 7px 16px;
    border: 1px solid var(--text_color_2);
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.shop_first_section .right_side_item_part .product_card_part .card .btn_addto_cart:hover {
    background-color: var(--bg_color_2);
    border: 1px solid var(--text_color_2);
    color: var(--text_color_3);
}

.shop_first_section .right_side_item_part .product_card_part .image_wrapper {
    position: relative;
    overflow: hidden;
}

.shop_first_section .right_side_item_part .product_card_part .wishlist_icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.shop_first_section .right_side_item_part .product_card_part .card:hover .wishlist_icon {
    opacity: 1;
    transform: scale(1);
}

.shop_first_section .right_side_item_part .product_card_part .wishlist_icon svg {
    width: 20px;
    height: 20px;
    color: #333;
    transition: all 0.2s ease;
}

.shop_first_section .right_side_item_part .product_card_part .wishlist_icon:hover {
    background-color: var(--bg_color_2);
    border: 1px solid var(--text_color_2);
}

.shop_first_section .right_side_item_part .product_card_part .wishlist_icon:hover svg {
    color: var(--text_color_3);
}

.shop_first_section .right_side_item_part .product_card_part .wishlist_icon.active {
    background-color: #F50F0F;
    border: 1px solid #F50F0F;
}

.shop_first_section .right_side_item_part .product_card_part .wishlist_icon.active svg {
    color: #fff;
}

.about_first_section {
    padding: 70px 0;
    background-color: var(--bg_color_4);
}

.about_first_section .main_page {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_first_section .main_page p {
    font-size: var(--fs_32);
    font-family: var(--Maison_Neue_Book);
    font-weight: 600;
}

.about_first_section .breadcumb_part {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_first_section .breadcumb_part span {
    font-size: var(--fs_14);
    color: var(--text_color_2);
    font-family: var(--Maison_Neue_Book);
}

.about_first_section .breadcumb_part span svg {
    height: 16px;
    margin: 0 10px;
}

.about_second_section {
    padding: 100px 0;
}

.about_second_section .left_side_part .title {
    font-family: var(--Maison_Neue_Book);
    font-weight: 600;
    font-size: var(--fs_32);
    color: var(--text_color_2);
    letter-spacing: 1px;
}

.about_second_section .left_side_part .subtitle {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_18);
    color: var(--text_color_2);
    margin-bottom: 0;
}

.about_second_section .right_side_part .desc {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    color: var(--text_color_2);
    margin-bottom: 0;
}

.about_second_section .main_image_part {
    margin-top: 50px;
}

.about_second_section .main_image_part img {
    border-radius: 20px;
}

.about_third_section {
    padding: 0 0 100px 0;
}

.about_third_section .top_part .title {
    text-align: center;
    font-family: var(--Maison_Neue_Book);
    font-weight: 600;
    font-size: var(--fs_32);
    color: var(--text_color_2);
    letter-spacing: 1px;
}

.about_third_section .top_part .desc {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    color: var(--text_color_2);
    margin-bottom: 0;
    text-align: center;
}

.about_third_section .content_part {
    margin-top: 100px;
}

.about_third_section .content_part .left_side_part .info {
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid #dcdcdc;
}

.about_third_section .content_part .left_side_part .info .title {
    font-family: var(--Maison_Neue_Book);
    font-weight: 600;
    font-size: var(--fs_24);
    color: var(--text_color_2);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about_third_section .content_part .left_side_part .info .desc {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    color: var(--text_color_2);
    margin-bottom: 0;
    line-height: 1.4;
}

.about_third_section .content_part .right_side_part {
    margin-left: 50px;
}

.about_third_section .content_part .right_side_part img {
    border-radius: 20px;
}

.cart_first_section {
    padding: 70px 0;
    background-color: var(--bg_color_4);
}

.cart_first_section .main_page {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart_first_section .main_page p {
    font-size: var(--fs_32);
    font-family: var(--Maison_Neue_Book);
    font-weight: 600;
}

.cart_first_section .breadcumb_part {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart_first_section .breadcumb_part span {
    font-size: var(--fs_14);
    color: var(--text_color_2);
    font-family: var(--Maison_Neue_Book);
}

.cart_first_section .breadcumb_part span svg {
    height: 16px;
    margin: 0 10px;
}

.cart_second_section {
    padding: 100px 0 100px 0;
}

.cart_second_section .cart_layout {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
}

.cart_second_section .cart_layout .left_side_part {
    display: block;
    width: 100%;
}

.cart_second_section .cart_layout .right_side_part {
    display: block;
    width: 100%;
    max-width: 420px;
}

.cart_second_section .left_side_part .cart_table_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_2);
}

.cart_second_section .left_side_part .cart_table_head .h_product {
    font-family: var(--Maison_Neue_Bold);
    text-align: start;
    width: 55%;
}

.cart_second_section .left_side_part .cart_table_head .h_price,
.cart_second_section .left_side_part .cart_table_head .h_qty {
    font-family: var(--Maison_Neue_Bold);
    text-align: start;
    width: 15%;
}

.cart_second_section .left_side_part .cart_table_head .h_total {
    font-family: var(--Maison_Neue_Bold);
    text-align: end;
    width: 15%;
}

.cart_second_section .left_side_part .cart_table_head .h_price {
    /* margin-left: auto; */
    /* padding-left: 24px; */
    /* padding-right: 55px; */
}

.cart_second_section .left_side_part .cart_table_head .h_qty {
    /* padding-left: 24px; */
    /* padding-right: 60px; */
}

/* .cart_second_section .left_side_part .cart_table_head .h_total {
    padding-left: 24px;
} */

.cart_second_section .left_side_part .cart_item_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 26px 0;
    border-bottom: 1px solid #eaeaea;
}

.cart_second_section .left_side_part .cart_item_row .cell {
    min-width: 0;
}

.cart_second_section .left_side_part .cart_item_row .cell_product {
    display: block;
    width: 55%;
}

.cart_second_section .left_side_part .cart_item_row .cell_price {
    /* margin-left: auto; */
    display: flex;
    /* justify-content: center; */
    align-items: center;
    /* padding-left: 24px; */
    width: 15%;
}

.cart_second_section .left_side_part .cart_item_row .cell_qty {
    display: flex;
    justify-content: start;
    align-items: center;
    /* padding-left: 24px; */
    width: 15%;
}

.cart_second_section .left_side_part .cart_item_row .cell_total {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /* padding-left: 24px; */
    width: 15%;
}

.cart_second_section .left_side_part .cart_item_row .product_info {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cart_second_section .left_side_part .cart_item_row .product_img {
    /* width: 90px;
    min-width: 90px; */
    border-radius: 0;
    overflow: hidden;
    background: #f6f6f6;
}

.cart_second_section .left_side_part .cart_item_row .product_img img {
    height: 100px;
    width: 100px;
    min-height: 100px;
    max-width: 100px;
    object-fit: contain;
}

.cart_second_section .left_side_part .cart_item_row .product_meta .title {
    margin: 0;
    font-size: var(--fs_16);
    font-family: var(--Maison_Neue_Bold);
    color: var(--text_color_1);
    overflow-wrap: anywhere;
}

.cart_second_section .left_side_part .cart_item_row .product_meta .variant {
    margin: 6px 0 6px 0;
    font-size: var(--fs_14);
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_4);
}

.cart_second_section .left_side_part .cart_item_row .product_meta .remove_link {
    font-size: var(--fs_14);
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_4);
    text-decoration: underline;
}

.cart_second_section .left_side_part .cart_item_row .price_text,
.cart_second_section .left_side_part .cart_item_row .total_text {
    font-size: var(--fs_16);
    font-family: var(--Maison_Neue_Bold);
    color: var(--text_color_1);
}

.cart_second_section .left_side_part .cart_item_row .qty_pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 0;
    background: #f2f2f2;
}

.cart_second_section .left_side_part .cart_item_row .qty_btn {
    border: 0;
    background: transparent;
    cursor: pointer;
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-family: var(--Maison_Neue_Bold);
    color: var(--text_color_1);
}

.cart_second_section .left_side_part .cart_item_row .qty_val {
    min-width: 18px;
    text-align: center;
    font-size: var(--fs_14);
    font-family: var(--Maison_Neue_Bold);
    color: var(--text_color_1);
}

.cart_second_section .left_side_part .cart_bottom {
    padding-top: 18px;
}

.cart_second_section .left_side_part .cart_bottom .gift_wrap {
    padding: 14px 0;
}

.cart_second_section .left_side_part .cart_bottom .gift_check input[type="checkbox"] {
    height: 14px;
    width: 14px;
    margin-top: -3px;
}

.cart_second_section .left_side_part .cart_bottom .gift_check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs_14);
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_2);
}

.cart_second_section .left_side_part .cart_bottom .discount_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin: 14px 0 22px;
    max-width: 520px;
}

.cart_second_section .left_side_part .cart_bottom .discount_input {
    width: 100%;
    border-radius: 0;
    padding: 12px 14px;
    border: 1px solid #e6e6e6;
    font-family: var(--Maison_Neue_Book);
    outline: none;
}

.cart_second_section .left_side_part .cart_bottom .discount_btn {
    padding: 15px 35px 13px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_3);
    background-color: var(--bg_color_2);
    border-radius: 0;
    font-size: var(--fs_14);
    border: none;
}

.cart_second_section .left_side_part .cart_bottom .notes_part {
    margin-top: 6px;
}

.cart_second_section .left_side_part .cart_bottom .notes_title {
    margin: 0 0 10px;
    font-size: var(--fs_16);
    font-family: var(--Maison_Neue_Bold);
    color: var(--text_color_1);
}

.cart_second_section .left_side_part .cart_bottom .notes_area {
    width: 100%;
    border: 1px solid #e6e6e6;
    border-radius: 0;
    padding: 12px 14px;
    font-family: var(--Maison_Neue_Book);
    outline: none;
    resize: vertical;
}

.cart_second_section .left_side_part .card_box {
    border: 1px solid #eaeaea;
    border-radius: 0;
    padding: 22px;
    background: #ffffff;
}

.cart_second_section .left_side_part .card_box.card_box_space {
    margin-top: 18px;
}

.cart_second_section .left_side_part .box_title {
    margin: 0 0 18px;
    font-size: var(--fs_18);
    font-family: var(--Maison_Neue_Bold);
    color: var(--text_color_1);
}

.cart_second_section .left_side_part .form_group {
    margin-bottom: 14px;
}

.cart_second_section .left_side_part .form_label {
    display: block;
    margin-bottom: 8px;
    font-size: var(--fs_14);
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_2);
}

.cart_second_section .left_side_part .form_control {
    width: 100%;
    border-radius: 0;
    border: 1px solid #e6e6e6;
    padding: 12px 14px;
    font-family: var(--Maison_Neue_Book);
    outline: none;
}

.cart_second_section .left_side_part .cart_page_btn {
    display: flex;
    justify-content: end;
}

.cart_second_section .left_side_part .cart_page_btn .primary_btn {
    padding: 12px 35px 10px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_3);
    background-color: var(--bg_color_2);
    border-radius: 0;
    font-size: var(--fs_14);
    border: none;
    margin-top: 20px;
}


.cart_second_section .left_side_part .cart_page_btn .primary_btn a {
    text-decoration: none;
    color: var(--text_color_3);
}

.cart_second_section .left_side_part .total_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.cart_second_section .left_side_part .total_label,
.cart_second_section .left_side_part .total_amount {
    margin: 0;
    font-size: var(--fs_18);
    font-family: var(--Maison_Neue_Bold);
    color: var(--text_color_1);
}

.cart_second_section .left_side_part .tax_note {
    margin: 10px 0 14px;
    font-size: var(--fs_14);
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_4);
}

.cart_second_section .left_side_part .terms_row {
    margin-top: 6px;
    margin-bottom: 10px;
}

.cart_second_section .left_side_part .terms_check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: var(--fs_14);
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_2);
}

.cart_second_section .left_side_part .terms_check a {
    color: var(--text_color_2);
    text-decoration: underline;
    font-family: var(--Maison_Neue_Bold);
}

/*.cart_second_section .right_side_part .card_box {
    border: 1px solid #eaeaea;
    border-radius: 0;
    padding: 22px;
    background: #ffffff;
}

 .cart_second_section .right_side_part .card_box.card_box_space {
    margin-top: 18px;
}

.cart_second_section .right_side_part .box_title {
    margin: 0 0 18px;
    font-size: var(--fs_18);
    font-family: var(--Maison_Neue_Bold);
    color: var(--text_color_1);
}

.cart_second_section .right_side_part .form_group {
    margin-bottom: 14px;
}

.cart_second_section .right_side_part .form_label {
    display: block;
    margin-bottom: 8px;
    font-size: var(--fs_14);
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_2);
}

.cart_second_section .right_side_part .form_control {
    width: 100%;
    border-radius: 0;
    border: 1px solid #e6e6e6;
    padding: 12px 14px;
    font-family: var(--Maison_Neue_Book);
    outline: none;
}

.cart_second_section .right_side_part .primary_btn {
    padding: 12px 35px 10px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_3);
    background-color: var(--bg_color_2);
    border-radius: 0;
    font-size: var(--fs_14);
    border: none;
}

.cart_second_section .right_side_part .total_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.cart_second_section .right_side_part .total_label,
.cart_second_section .right_side_part .total_amount {
    margin: 0;
    font-size: var(--fs_18);
    font-family: var(--Maison_Neue_Bold);
    color: var(--text_color_1);
}

.cart_second_section .right_side_part .tax_note {
    margin: 10px 0 14px;
    font-size: var(--fs_14);
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_4);
}

.cart_second_section .right_side_part .terms_row {
    margin-top: 6px;
    margin-bottom: 10px;
}

.cart_second_section .right_side_part .terms_check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: var(--fs_14);
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_2);
}

.cart_second_section .right_side_part .terms_check a {
    color: var(--text_color_2);
    text-decoration: underline;
    font-family: var(--Maison_Neue_Bold);
} */


@media only screen and (max-width: 992px) {
    .cart_second_section .cart_layout {
        flex-direction: column;
    }

    .cart_second_section .cart_layout .right_side_part {
        max-width: 100%;
    }
}

/* @media only screen and (max-width: 768px) {
    .cart_second_section .left_side_part .cart_table_head {
        display: none;
    }

    .cart_second_section .left_side_part .cart_item_row {
        flex-wrap: wrap;
        gap: 12px;
    }

    .cart_second_section .left_side_part .cart_item_row .cell_product {
        width: 100%;
    }

    .cart_second_section .left_side_part .cart_item_row .cell_price,
    .cart_second_section .left_side_part .cart_item_row .cell_qty,
    .cart_second_section .left_side_part .cart_item_row .cell_total {
        margin-left: 0;
        padding-left: 0;
        justify-content: flex-start;
    }

    .cart_second_section .left_side_part .cart_bottom .discount_row {
        flex-direction: column;
        max-width: 100%;
    }

    .cart_second_section .left_side_part .cart_bottom .discount_btn {
        width: 100%;
    }
} */

@media only screen and (max-width: 768px) {
    .cart_second_section .left_side_part .cart_table_head {
        display: none;
    }

    .cart_second_section .left_side_part .cart_item_row {
        flex-wrap: wrap;
        gap: 10px;
        align-items: flex-start;
    }

    .cart_second_section .left_side_part .cart_item_row .cell_product {
        width: 100%;
    }

    .cart_second_section .left_side_part .cart_item_row .cell_price,
    .cart_second_section .left_side_part .cart_item_row .cell_qty,
    .cart_second_section .left_side_part .cart_item_row .cell_total {
        width: 100%;
        margin-left: 0;
        padding-left: 0;
        justify-content: flex-start;
    }

    .cart_second_section .left_side_part .cart_item_row .cell_price::before,
    .cart_second_section .left_side_part .cart_item_row .cell_qty::before,
    .cart_second_section .left_side_part .cart_item_row .cell_total::before {
        display: inline-block;
        min-width: 80px;
        font-family: var(--Maison_Neue_Bold);
        color: var(--text_color_1);
        margin-right: 8px;
    }

    .cart_second_section .left_side_part .cart_item_row .cell_price::before {
        content: "Price";
        font-family: var(--Maison_Neue_Book);
    }

    .cart_second_section .left_side_part .cart_item_row .cell_qty::before {
        content: "Quantity";
        font-family: var(--Maison_Neue_Book);
    }

    .cart_second_section .left_side_part .cart_item_row .cell_total::before {
        content: "Total";
        font-family: var(--Maison_Neue_Book);
    }

    .cart_second_section .left_side_part .cart_item_row .cell_price,
    .cart_second_section .left_side_part .cart_item_row .cell_qty,
    .cart_second_section .left_side_part .cart_item_row .cell_total {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    .cart_second_section .left_side_part .cart_item_row .qty_pill {
        padding: 6px 10px;
        border-radius: 0;
    }

    .cart_second_section .left_side_part .cart_bottom .discount_row {
        flex-direction: column;
        max-width: 100%;
    }

    .cart_second_section .left_side_part .cart_bottom .discount_btn {
        width: 100%;
    }
}

.shipping_policy_first_section {
    padding: 70px 0;
    background-color: var(--bg_color_4);
}

.shipping_policy_first_section .main_page {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shipping_policy_first_section .main_page p {
    font-size: var(--fs_32);
    font-family: var(--Maison_Neue_Book);
    font-weight: 600;
    text-align: center;
}

.shipping_policy_first_section .breadcumb_part {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.shipping_policy_first_section .breadcumb_part span {
    font-size: var(--fs_14);
    color: var(--text_color_2);
    font-family: var(--Maison_Neue_Book);
}

.shipping_policy_first_section .breadcumb_part span svg {
    height: 16px;
    margin: 0 10px;
}

.shipping_policy_second_section {
    padding: 100px 0;
}

.shipping_policy_second_section .top_part .subtitle {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    color: var(--text_color_2);
    margin-bottom: 0;
}

.shipping_policy_second_section .top_part .subtitlepoints {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    color: var(--text_color_2);
    margin-bottom: 0;
    margin-top: 15px;
}

.shipping_policy_second_section .top_part ul {
    padding-left: 0;
}

.shipping_policy_second_section .top_part ul li {
    list-style-type: none;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    color: var(--text_color_2);
    margin-bottom: 0;
}

.shipping_policy_second_section .title {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_20);
    color: var(--text_color_2);
    font-weight: 600;
}

.shipping_policy_second_section .info1 ul li {
    list-style-type: decimal;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    color: var(--text_color_2);
    margin-bottom: 0;
}

.shipping_policy_second_section .info2 ul li {
    list-style-type: decimal;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    color: var(--text_color_2);
    margin-bottom: 0;
}

.shipping_policy_second_section .info2 p {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    color: var(--text_color_2);
    margin-bottom: 0;
}

.shipping_policy_second_section .info3 {
    margin-top: 20px;
}

.shipping_policy_second_section .info3 ul li {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    color: var(--text_color_2);
    margin-bottom: 0;
}

.shipping_policy_second_section .info3 p {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    color: var(--text_color_2);
    margin-bottom: 0;
}

.shipping_policy_second_section .info4 p {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    color: var(--text_color_2);
    margin-bottom: 0;
}

.size_guide_first_section {
    padding: 70px 0;
    background-color: var(--bg_color_4);
}

.size_guide_first_section .main_page {
    display: flex;
    justify-content: center;
    align-items: center;
}

.size_guide_first_section .main_page p {
    font-size: var(--fs_32);
    font-family: var(--Maison_Neue_Book);
    font-weight: 600;
}

.size_guide_first_section .breadcumb_part {
    display: flex;
    justify-content: center;
    align-items: center;
}

.size_guide_first_section .breadcumb_part span {
    font-size: var(--fs_14);
    color: var(--text_color_2);
    font-family: var(--Maison_Neue_Book);
}

.size_guide_first_section .breadcumb_part span svg {
    height: 16px;
    margin: 0 10px;
}

.size_guide_second_section {
    padding: 100px 0;
}

.size_guide_second_section .left_side_part .size_image {
    max-height: 500px;
}

.size_guide_second_section .middle_side_part .info {
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid #dcdcdc;
}

.size_guide_second_section .middle_side_part .info .title {
    font-family: var(--Maison_Neue_Book);
    font-weight: 600;
    font-size: var(--fs_24);
    color: var(--text_color_2);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.size_guide_second_section .middle_side_part .info .desc {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    color: var(--text_color_2);
    margin-bottom: 0;
    line-height: 1.4;
}

.size_guide_second_section .right_side_part {
    border: 1px solid #dcdcdc;
}

.size_guide_second_section .right_side_part .measurements_title_wrap {
    width: 100%;
    background-color: var(--bg_color_4);
    padding: 20px 20px 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.size_guide_second_section .right_side_part .measurements_title {
    font-family: var(--Maison_Neue_Book);
    font-weight: 600;
    font-size: var(--fs_24);
    color: var(--text_color_2);
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 0;
}

.size_guide_second_section .right_side_part .measurements_table_wrap {
    width: 100%;
}

.size_guide_second_section .right_side_part .measurements_table_responsive {
    width: 100%;
}

.size_guide_second_section .right_side_part .measurements_table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.size_guide_second_section .right_side_part .measurements_table tbody tr td {
    border: 0;
}

.size_guide_second_section .right_side_part .measurements_table .add-info {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    color: var(--text_color_2);
    padding: 14px;
    text-align: center;
    vertical-align: middle;
}

.size_guide_second_section .right_side_part .measurements_head_row .add-info {
    font-family: var(--Maison_Neue_Bold);
    font-size: var(--fs_16);
}

.size_guide_second_section .right_side_part .measurements_table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.size_guide_second_section .right_side_part .measurements_table tbody tr:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.shop_detail_first_section {
    padding: 100px 0;
}

.shop_detail_first_section .left_side_part .product_gallery {
    width: 100%;
}

.shop_detail_first_section .left_side_part .productMainSwiper {
    width: 100%;
    background: #fff;
    overflow: hidden;
    border-radius: 2px;
}

.shop_detail_first_section .left_side_part .productMainSwiper .swiper-slide {
    width: 100%;
}

.shop_detail_first_section .left_side_part .productMainSwiper img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
    background: #f5f4f4;
}

.shop_detail_first_section .left_side_part .productThumbSwiper {
    margin-top: 20px;
    padding: 0 2px;
}

.shop_detail_first_section .left_side_part .productThumbSwiper .swiper-slide {
    opacity: 0.55;
    cursor: pointer;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: 0.2s ease;
    max-width: 80px;
}

.shop_detail_first_section .left_side_part .productThumbSwiper .swiper-slide img {
    width: 100%;
    max-width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
}

.shop_detail_first_section .left_side_part .productThumbSwiper .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #000;
}

.shop_detail_first_section .left_side_part .product_nav {
    color: #000;
}

.shop_detail_first_section .left_side_part .productMainSwiper .swiper-button-prev,
.shop_detail_first_section .left_side_part .productMainSwiper .swiper-button-next {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
}

.shop_detail_first_section .left_side_part .productMainSwiper .swiper-button-prev:after,
.shop_detail_first_section .left_side_part .productMainSwiper .swiper-button-next:after {
    font-size: 16px;
    font-weight: 700;
}

.shop_detail_first_section .right_side_part .product_name {
    font-family: var(--Maison_Neue_Bold);
    font-size: var(--fs_28);
    color: var(--text_color_2);
    margin-bottom: 12px;
}

.shop_detail_first_section .right_side_part .price_part .discounted_price {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    color: #1AAC27;
}

.shop_detail_first_section .right_side_part .price_part .original_price {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    text-decoration: line-through;
    color: #F50F0F;
    margin-left: 12px;
}

.shop_detail_first_section .right_side_part .product_description p {
    margin-top: 8px;
    margin-bottom: 0;
}

.shop_detail_first_section .right_side_part .size_selection_part {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shop_detail_first_section .right_side_part .size_label {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    color: var(--text_color_1);
    letter-spacing: 0.5px;
}

.shop_detail_first_section .right_side_part .size_select_wrapper {
    position: relative;
    /* width: 350px; */
    max-width: 115px;
}

.shop_detail_first_section .right_side_part .size_selection_part select {
    width: 100%;
    padding: 10px 38px 10px 14px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    border: 1px solid #dcdcdc;
    background-color: var(--bg_color_3);
    cursor: pointer;
    appearance: none;
    outline: none;
    transition: all 0.2s ease;
}

.shop_detail_first_section .right_side_part .size_select_wrapper::after {
    content: "▾";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    pointer-events: none;
    color: var(--text_color_1);
}

.shop_detail_first_section .right_side_part .size_selection_part select:hover {
    border-color: var(--bg_color_1);
}

.shop_detail_first_section .right_side_part .size_selection_part select:focus {
    border-color: var(--bg_color_1);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.shop_detail_first_section .right_side_part .color_selection_part {
    margin-top: 15px;
}

.shop_detail_first_section .right_side_part .color_selection_part .color_header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.shop_detail_first_section .right_side_part .color_selection_part .color_label {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    color: var(--text_color_1);
}

.shop_detail_first_section .right_side_part .color_selection_part .color_label .req {
    color: var(--text_color_2);
}

.shop_detail_first_section .right_side_part .color_selection_part .color_name {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    color: var(--text_color_4);
}

.shop_detail_first_section .right_side_part .color_selection_part .color_options {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.shop_detail_first_section .right_side_part .color_selection_part .color_item {
    position: relative;
    display: inline-flex;
    cursor: pointer;
}

.shop_detail_first_section .right_side_part .color_selection_part .color_item input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.shop_detail_first_section .right_side_part .color_selection_part .color_item .dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--c);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
    display: inline-block;
}

.shop_detail_first_section .right_side_part .color_selection_part .color_item input:checked+.dot {
    box-shadow:
        0 0 0 2px var(--bg_color_3),
        0 0 0 3px var(--bg_color_1);
}

.shop_detail_first_section .right_side_part .color_selection_part .color_item::after {
    content: attr(data-name);
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bg_color_1);
    color: var(--text_color_3);
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_12);
    padding: 6px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.15s ease;
}

/* .shop_detail_first_section .right_side_part .color_selection_part .color_item::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--bg_color_1);
    opacity: 0;
    transition: 0.15s ease;
} */

/* .shop_detail_first_section .right_side_part .color_selection_part .color_item:hover::after,
.shop_detail_first_section .right_side_part .color_selection_part .color_item:hover::before {
    opacity: 1;
} */

@media (max-width: 576px) {
    .shop_detail_first_section .right_side_part .color_selection_part .size_select_wrapper {
        width: 100%;
    }
}

/* .shop_detail_first_section .right_side_part .addto_cart_btn_part .add_to_cart_btn {
    font-family: var(--Maison_Neue_Book);
    background-color: transparent;
    border-radius: 0;
    font-size: var(--fs_14);
    color: var(--text_color_2);
    padding: 12px 30px 10px 30px;
    border: 1px solid var(--text_color_2);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    margin-top: 25px;
}

.shop_detail_first_section .right_side_part .addto_cart_btn_part .add_to_cart_btn:hover {
    background-color: var(--bg_color_2);
    border: 1px solid var(--text_color_2);
    color: var(--text_color_3);
} */

.shop_detail_first_section .right_side_part .accordion_part {
    margin-top: 20px;
}

.shop_detail_first_section .right_side_part .accordion_part .custom_product_accordion .accordion-item {
    border: 0;
    border-bottom: 1px solid #d9d9d9;
}

.shop_detail_first_section .right_side_part .accordion_part .custom_product_accordion .accordion-button {
    background-color: transparent;
    box-shadow: none;
    padding: 18px 0;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    letter-spacing: 5%;
    color: var(--text_color_2);
}

.shop_detail_first_section .right_side_part .accordion_part .custom_product_accordion .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--text_color_2);
    box-shadow: none;
}

.shop_detail_first_section .right_side_part .accordion_part .custom_product_accordion .accordion-body {
    padding: 0 0 18px 0;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    color: var(--text_color_2);
    line-height: 1.6;
}

.shop_detail_first_section .right_side_part .accordion_part .acc_list {
    padding-left: 18px;
    display: grid;
    gap: 10px;
}

/* @media only screen and (max-width: 992px) {
    .shop_detail_first_section .left_side_part .productMainSwiper img {
        height: 58vh;
        max-height: 620px;
    }

    .shop_detail_first_section .left_side_part .productThumbSwiper .swiper-slide img {
        height: 64px;
    }
}

@media only screen and (max-width: 576px) {
    .shop_detail_first_section .left_side_part .productMainSwiper img {
        height: 52vh;
        max-height: 520px;
    }

    .shop_detail_first_section .left_side_part .productThumbSwiper {
        margin-top: 8px;
    }

    .shop_detail_first_section .left_side_part .productThumbSwiper .swiper-slide img {
        height: 58px;
    }
} */

.login_first_first_section {
    padding: 100px 0;
}

.login_first_first_section .login_card {
    background-color: var(--bg_color_3);
    padding: 30px;
    border: 1px solid var(--text_color_5);
}

.login_first_first_section .login_card .login_title {
    font-family: var(--Maison_Neue_Bold);
    font-size: var(--fs_28);
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 3%;
}

.login_first_first_section .login_card .form-label {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
}

.login_first_first_section .login_card .custom_input {
    border-radius: 0;
    border: 1px solid var(--text_color_5);
    padding: 10px 14px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    box-shadow: none;
}

.login_first_first_section .login_card .custom_input:focus {
    border-color: var(--bg_color_1);
    box-shadow: none;
}

.login_first_first_section .login_card .login_btn {
    padding: 12px 35px 10px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_3);
    background-color: var(--bg_color_2);
    border-radius: 0;
    font-size: var(--fs_14);
    border: none;
    transition: 0.3s ease;
}

.login_first_first_section .login_card .login_btn:hover {
    background-color: var(--bg_color_1);
    color: var(--text_color_3);
}

.login_first_first_section .login_card .forgot_password .forgot_password_link {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    color: var(--text_color_2);
    text-decoration: none;
    transition: all 0.5s ease;
    display: flex;
    justify-content: end;
}

.login_first_first_section .login_card .forgot_password .forgot_password_link:hover {
    text-decoration: underline;
    color: var(--text_color_1);
}

.login_first_first_section .login_card .signup_link_part {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.login_first_first_section .login_card .signup_link_part .signup_link {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    color: var(--text_color_2);
    text-decoration: none;
    transition: all 0.5s ease;
    margin-bottom: 0;
}

.login_first_first_section .login_card .signup_link_part .signup_link:hover {
    text-decoration: underline;
    color: var(--text_color_1);
}

.login_first_first_section .login_card .signup_link_part .signup_text {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    color: var(--text_color_4);
}





















.signup_first_first_section {
    padding: 100px 0;
}

.signup_first_first_section .signup_card {
    background-color: var(--bg_color_3);
    padding: 30px;
    border: 1px solid var(--text_color_5);
}

.signup_first_first_section .signup_card .signup_title {
    font-family: var(--Maison_Neue_Bold);
    font-size: var(--fs_28);
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 3%;
}

.signup_first_first_section .signup_card .form-label {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
}

.signup_first_first_section .signup_card .custom_input {
    border-radius: 0;
    border: 1px solid var(--text_color_5);
    padding: 10px 14px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    box-shadow: none;
}

.signup_first_first_section .signup_card .custom_input:focus {
    border-color: var(--bg_color_1);
    box-shadow: none;
}

.signup_first_first_section .signup_card .signup_btn {
    padding: 12px 35px 10px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_3);
    background-color: var(--bg_color_2);
    border-radius: 0;
    font-size: var(--fs_14);
    border: none;
    transition: 0.3s ease;
}

.signup_first_first_section .signup_card .signup_btn:hover {
    background-color: var(--bg_color_1);
    color: var(--text_color_3);
}

.signup_first_first_section .signup_card .forgot_password .forgot_password_link {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    color: var(--text_color_2);
    text-decoration: none;
    transition: all 0.5s ease;
    display: flex;
    justify-content: end;
}

.signup_first_first_section .signup_card .forgot_password .forgot_password_link:hover {
    text-decoration: underline;
    color: var(--text_color_1);
}

.signup_first_first_section .signup_card .signup_link_part {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.signup_first_first_section .signup_card .signup_link_part .signup_link {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    color: var(--text_color_2);
    text-decoration: none;
    transition: all 0.5s ease;
    margin-bottom: 0;
}

.signup_first_first_section .signup_card .signup_link_part .signup_link:hover {
    text-decoration: underline;
    color: var(--text_color_1);
}

.signup_first_first_section .signup_card .signup_link_part .signup_text {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    color: var(--text_color_4);
}


.checkout_first_section {
    padding: 100px 0 100px 0;
}

.checkout_first_section .checkout_title {
    font-size: var(--fs_18);
    font-family: var(--Maison_Neue_Bold);
    color: var(--text_color_1);
    margin: 30px 0 15px 0;
}

.checkout_first_section .form_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.checkout_first_section .form_group.full {
    grid-column: span 2;
}

.checkout_first_section .form_label {
    display: block;
    font-size: var(--fs_14);
    color: var(--text_color_2);
    margin-bottom: 8px;
    font-family: var(--Maison_Neue_Book);
}

.checkout_first_section .form_input {
    width: 100%;
    border-radius: 0;
    padding: 12px 14px;
    border: 1px solid #e6e6e6;
    font-family: var(--Maison_Neue_Book);
    outline: none;
    background: #fff;
}

.checkout_first_section .form_input:focus {
    border-color: #000;
}

.checkout_first_section .form_textarea {
    width: 100%;
    border-radius: 0;
    padding: 12px 14px;
    border: 1px solid #e6e6e6;
    font-family: var(--Maison_Neue_Book);
    outline: none;
    resize: vertical;
    background: #fff;
}

.checkout_first_section .form_row {
    margin-top: 18px;
}

.checkout_first_section .check_row {
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    color: var(--text_color_2);
}

.checkout_first_section .option_box {
    border: 1px solid #e6e6e6;
    padding: 14px;
}

.checkout_first_section .radio_row {
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    color: var(--text_color_2);
    padding: 10px 0;
    cursor: pointer;
}

.checkout_first_section .radio_row+.radio_row {
    border-top: 1px solid #ededed;
}

.checkout_first_section .left_side_part .buttons_part {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout_first_section .left_side_part .buttons_part .return_to_cart {
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_2);
    text-decoration: none;
    font-size: var(--fs_16);
    margin-top: 20px;
    transition: color 0.3s ease;
}

.checkout_first_section .left_side_part .buttons_part .return_to_cart svg {
    height: 16px;
}

.checkout_first_section .left_side_part .buttons_part .return_to_cart:hover {
    color: var(--bg_color_1);
}

.checkout_first_section .left_side_part .primary_btn {
    padding: 12px 35px 10px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_3);
    background-color: var(--bg_color_2);
    border-radius: 0;
    font-size: var(--fs_14);
    border: none;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .checkout_first_section {
        padding: 60px 0;
    }

    .checkout_first_section .form_grid {
        grid-template-columns: 1fr;
    }

    .checkout_first_section .form_group.full {
        grid-column: span 1;
    }
}

.checkout_first_section .right_side_part .cart_bottom .gift_wrap {
    padding: 30px 0 0 0;
}

.checkout_first_section .right_side_part .cart_bottom .gift_check input[type="checkbox"] {
    height: 14px;
    width: 14px;
    margin-top: -3px;
}

.checkout_first_section .right_side_part .cart_bottom .gift_check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs_14);
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_2);
}

.checkout_first_section .right_side_part .cart_bottom .discount_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin: 14px 0 22px;
    max-width: 520px;
}

.checkout_first_section .right_side_part .cart_bottom .discount_input {
    width: 100%;
    border-radius: 0;
    padding: 12px 14px;
    border: 1px solid #e6e6e6;
    font-family: var(--Maison_Neue_Book);
    outline: none;
}

.checkout_first_section .right_side_part .cart_bottom .discount_btn {
    padding: 15px 35px 13px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_3);
    background-color: var(--bg_color_2);
    border-radius: 0;
    font-size: var(--fs_14);
    border: none;
}

.checkout_first_section .right_side_part .cart_bottom .notes_part {
    margin-top: 6px;
}

.checkout_first_section .right_side_part .cart_bottom .notes_title {
    margin: 0 0 10px;
    font-size: var(--fs_16);
    font-family: var(--Maison_Neue_Bold);
    color: var(--text_color_1);
}

.checkout_first_section .right_side_part .cart_bottom .notes_area {
    width: 100%;
    border: 1px solid #e6e6e6;
    border-radius: 0;
    padding: 12px 14px;
    font-family: var(--Maison_Neue_Book);
    outline: none;
    resize: vertical;
}

.checkout_first_section .right_side_part .card_box {
    border: 1px solid #eaeaea;
    border-radius: 0;
    padding: 22px;
    background: #ffffff;
}

.checkout_first_section .right_side_part .card_box.card_box_space {
    margin-top: 18px;
}

.checkout_first_section .right_side_part .box_title {
    margin: 0 0 18px;
    font-size: var(--fs_18);
    font-family: var(--Maison_Neue_Bold);
    color: var(--text_color_1);
}

.checkout_first_section .right_side_part .form_group {
    margin-bottom: 14px;
}

.checkout_first_section .right_side_part .form_label {
    display: block;
    margin-bottom: 8px;
    font-size: var(--fs_14);
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_2);
}

.checkout_first_section .right_side_part .form_control {
    width: 100%;
    border-radius: 0;
    border: 1px solid #e6e6e6;
    padding: 12px 14px;
    font-family: var(--Maison_Neue_Book);
    outline: none;
}

.checkout_first_section .right_side_part .primary_btn {
    padding: 12px 35px 10px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_3);
    background-color: var(--bg_color_2);
    border-radius: 0;
    font-size: var(--fs_14);
    border: none;
    margin-top: 20px;
}

.checkout_first_section .right_side_part .total_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.checkout_first_section .right_side_part .total_row span {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    color: var(--text_color_1);
}

.checkout_first_section .right_side_part .total_row .total_title {
    font-family: var(--Maison_Neue_Bold);
    font-size: var(--fs_16);
    color: var(--text_color_1);
}

.checkout_first_section .right_side_part .total_label,
.checkout_first_section .right_side_part .total_amount {
    margin: 0;
    font-size: var(--fs_18);
    font-family: var(--Maison_Neue_Bold);
    color: var(--text_color_1);
}

.checkout_first_section .right_side_part .tax_note {
    margin: 10px 0 14px;
    font-size: var(--fs_14);
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_4);
}

.checkout_first_section .right_side_part .terms_row {
    margin-top: 6px;
    margin-bottom: 10px;
}

.checkout_first_section .right_side_part .terms_check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: var(--fs_14);
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_2);
}

.checkout_first_section .right_side_part .terms_check a {
    color: var(--text_color_2);
    text-decoration: underline;
    font-family: var(--Maison_Neue_Bold);
}

.checkout_first_section .right_side_part .checkout_items_part {
    margin: 30px 0 0 0;
}

.checkout_first_section .right_side_part .checkout_items_part .all_item_detail_part {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.checkout_first_section .right_side_part .checkout_items_part .all_item_detail_part .item_detail {
    display: flex;
    justify-content: space-between;
}

.checkout_first_section .right_side_part .checkout_items_part .all_item_detail_part .item_detail .img_wrap {
    background-color: var(--bg_color_4);
    border: 1px solid var(--bg_color_4);
    height: 75px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.checkout_first_section .right_side_part .checkout_items_part .all_item_detail_part .item_detail .img_wrap img {
    height: 65px;
    width: 100%;
    object-fit: contain;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkout_first_section .right_side_part .checkout_items_part .all_item_detail_part .item_detail .data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.checkout_first_section .right_side_part .checkout_items_part .all_item_detail_part .item_detail .data .item_name {
    margin-bottom: 0;
    font-size: var(--fs_14);
}

.checkout_first_section .right_side_part .checkout_items_part .all_item_detail_part .item_detail .data .item_color_size {
    margin-bottom: 0;
    font-size: var(--fs_14);
}

.checkout_first_section .right_side_part .checkout_items_part .all_item_detail_part .price {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    font-family: var(--Maison_Neue_Bold);
}


.checkout_first_section .payment_method {
    margin-top: 20px;
    display: flex;
    gap: 14px;
    width: 100%;
}

.checkout_first_section .payment_method .payment_option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid #e6e6e6;
    background: var(--bg_color_3);
    cursor: pointer;
    transition: all 0.3s ease;
    width: calc(50% - 10px);
}

.checkout_first_section .payment_method .payment_option:hover {
    border-color: var(--text_color_1);
    background: var(--bg_color_4);
}

.checkout_first_section .payment_method .payment_option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkout_first_section .payment_method .payment_option_custom {
    height: 20px;
    width: 20px;
    min-width: 20px;
    border: 1.5px solid var(--text_color_4);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    background: var(--bg_color_3);
}

.checkout_first_section .payment_method .payment_option_custom::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--bg_color_1);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.3s ease;
}

.checkout_first_section .payment_method .payment_option_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
    width: 100%;
}

.checkout_first_section .payment_method .payment_option_content .text_part {
    display: flex;
    flex-direction: column;
}

.checkout_first_section .payment_method .payment_option_content .logo_part img {
    height: 40px;
}

.checkout_first_section .payment_method .payment_option_title {
    font-family: var(--Maison_Neue_Bold);
    font-size: var(--fs_16);
    color: var(--text_color_1);
    line-height: 1.3;
}

.checkout_first_section .payment_method .payment_option_subtitle {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    color: var(--text_color_4);
    line-height: 1.5;
}

.checkout_first_section .payment_method .payment_option input[type="radio"]:checked+.payment_option_custom {
    border-color: var(--text_color_1);
}

.checkout_first_section .payment_method .payment_option input[type="radio"]:checked+.payment_option_custom::after {
    transform: translate(-50%, -50%) scale(1);
}

.checkout_first_section .payment_method .payment_option:has(input[type="radio"]:checked) {
    border-color: var(--text_color_1);
    background: var(--bg_color_4);
}

@media only screen and (max-width: 768px) {
    .checkout_first_section .payment_method .payment_option {
        padding: 16px;
        gap: 14px;
    }

    .checkout_first_section .payment_method .payment_option_title {
        font-size: var(--fs_14);
    }

    .checkout_first_section .payment_method .payment_option_subtitle {
        font-size: var(--fs_12);
    }
}

.empty_cart_section {
    padding: 80px 20px;
    background: var(--bg_color_3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.empty_cart_section .empty_cart_inner {
    max-width: 500px;
    width: 100%;
}

.empty_cart_section .empty_cart_icon {
    font-size: var(--fs_60);
    margin-bottom: 20px;
}

.empty_cart_section .empty_cart_title {
    font-family: var(--Maison_Neue_Bold);
    font-size: var(--fs_28);
    color: var(--text_color_1);
    margin-bottom: 15px;
}

.empty_cart_section .empty_cart_text {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    color: var(--text_color_4);
    margin-bottom: 30px;
}

.empty_cart_section .start_shopping_btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--bg_color_1);
    color: var(--text_color_3);
    text-decoration: none;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.empty_cart_section .start_shopping_btn:hover {
    background: var(--bg_color_2);
    color: var(--text_color_3);
}

@media only screen and (max-width: 992px) {
    header .middle_part {
        display: flex;
        justify-content: start;
    }

    .homepage_sixth_section .talkingSwiper .swiper-button-prev,
    .homepage_sixth_section .talkingSwiper .swiper-button-next {
        top: 64%;
    }
}

@media only screen and (max-width: 1200px) {
    .homepage_third_section .image_wrapper img {
        height: 500px;
    }
}

@media only screen and (max-width: 992px) {
    .homepage_third_section .image_wrapper img {
        height: 400px;
    }
}

@media only screen and (max-width: 576px) {
    .homepage_second_section {
        padding: 50px 0;
    }

    .homepage_second_section .heading_part .heading {
        margin-bottom: 15px;
    }

    .homepage_third_section .image_wrapper img {
        height: 300px;
    }

    .homepage_fourth_section {
        padding: 50px 0;
    }

    /* .homepage_fourth_section .content_part .text1 {
        font-size: var(--fs_24);
    } */

    .homepage_fourth_section .content_part {
        padding: 0 5px;
    }

    .homepage_fifth_section .everlaneSwiper .product_card img {
        height: 300px;
    }

    .homepage_sixth_section {
        padding: 50px 0;
    }

    .homepage_sixth_section .talkingSwiper .talking_slide .talking_right img {
        height: 350px;
    }

    .homepage_sixth_section .talkingSwiper .swiper-button-prev,
    .homepage_sixth_section .talkingSwiper .swiper-button-next {
        top: 64%;
    }

    .homepage_seventh_section .container-fluid .info_part {
        padding: 30px 0;
        margin: 0;
    }

    .homepage_seventh_section .card {
        padding: 0;
    }

    .about_second_section {
        padding: 50px 0;
    }

    .about_third_section .content_part .right_side_part {
        margin-left: 0;
    }

    .shipping_policy_second_section {
        padding: 50px 0;
    }

    .terms-wrapper ul,
    .shipping_policy_second_section ul,
    .terms-wrapper ul {
        margin-left: 20px;
    }

    .shop_first_section {
        padding: 50px 0;
    }

    .login_first_first_section {
        padding: 50px 0;
    }

    .signup_first_first_section {
        padding: 50px 0;
    }

    .shop_detail_first_section {
        padding: 50px 0;
    }

    .shop_detail_first_section .right_side_part .product_name {
        margin-bottom: 0;
        font-size: var(--fs_24);
    }

    .shop_detail_first_section .right_side_part .color_selection_part {
        margin-top: 10px;
    }

    header .right_side_part a {
        margin-left: 15px;
    }
}










/* .shop_detail_first_section .right_side_part .qty_shop_detail_part {
    display: flex;
    flex-wrap: wrap;
}

.shop_detail_first_section .right_side_part .cell_qty {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 24px;
    margin-top: 25px;
}

.shop_detail_first_section .right_side_part .cell_qty .qty_pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 0;
    background: #f2f2f2;
}

.shop_detail_first_section .right_side_part .cell_qty .qty_btn {
    border: 0;
    background: transparent;
    cursor: pointer;
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-family: var(--Maison_Neue_Bold);
    color: var(--text_color_1);
}

.shop_detail_first_section .right_side_part .cell_qty .qty_val {
    min-width: 18px;
    text-align: center;
    font-size: var(--fs_14);
    font-family: var(--Maison_Neue_Bold);
    color: var(--text_color_1);
} */

@media only screen and (max-width: 1200px) {
    .shop_first_section .right_side_item_part .product_card_part .card .image_wrapper img {
        height: 370px;
    }
}

@media only screen and (max-width: 992px) {
    .shop_first_section .right_side_item_part .product_card_part .card .image_wrapper img {
        height: 350px;
    }
}

@media only screen and (max-width: 768px) {
    .homepage_second_section .categorySwiper .card .model_image {
        height: 300px;
    }

    .shop_first_section .right_side_item_part .product_card_part .card .image_wrapper img {
        height: 330px;
    }
}

@media only screen and (max-width: 576px) {
    .homepage_third_section .card-title p {
        font-size: var(--fs_16);
        margin-bottom: 10px;
    }

    .homepage_third_section .shop_now_btn {
        padding: 8px 10px;
    }

    .homepage_fourth_section .content_part .text1 {
        font-size: var(--fs_24);
        line-height: 1.3;
    }

    .homepage_fifth_section .heading_part .desc {
        font-size: var(--fs_14);
    }

    .homepage_fourth_section .content_part .text2 {
        font-size: var(--fs_14);
    }

    .homepage_second_section .categorySwiper {
        padding: 0;
    }

    .homepage_fifth_section .everlaneSwiper {
        padding: 0;
    }

    .shop_first_section .right_side_item_part .product_card_part .card .image_wrapper img {
        height: 300px;
    }

    .homepage_eighth_section .mail_field .email_field {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: var(--bg_color_3);
    }

    .homepage_eighth_section .mail_field .email_field input {
        flex: 1;
        border: 1px solid #DDDBDC;
        padding: 14px 16px;
        width: 100%;
        outline: none;
        font-size: var(--fs_14);
        color: var(--text_color_1);
        font-family: var(--Maison_Neue_Book);
    }

    .homepage_eighth_section .mail_field .email_field button {
        padding: 13px 16px;
        background: var(--bg_color_2);
        color: var(--text_color_3);
        border: none;
        font-size: var(--fs_20);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .homepage_eighth_section .mail_field .email_field button svg {
        width: 25px;
    }

    .homepage_eighth_section .all_rights_part p {
        margin: 0;
    }

    header {
        padding: 15px 10px;
    }

    .shop_detail_first_section .right_side_part .cell_qty {
        padding-right: 10px;
    }

    .shop_detail_first_section .right_side_part .addto_cart_btn_part .add_to_cart_btn {
        width: 100%;
        max-width: 300px;
    }
}

@media only screen and (max-width: 420px) {
    .shop_first_section .right_side_item_part .product_card_part .card .image_wrapper img {
        height: 200px;
    }
}





.shop_first_section .mobile-filter-btn-wrap {
    display: none;
}

.shop_first_section .mobile-filter-btn {
    width: fit-content;
    border-radius: 0;
    padding: 8px 20px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop_first_section .mobile-filter-btn svg {
    height: 20px;
    margin-right: 10px;
}

@media only screen and (max-width: 992px) {
    .shop_first_section .desktop-filter-wrap {
        display: none;
    }

    .shop_first_section .mobile-filter-btn-wrap {
        display: block;
    }

    .shop_first_section .offcanvas.offcanvas-start {
        width: 320px;
    }
}

.mobileFilterOffcanvaspart .offcanvas-title {
    color: var(--text_color_1);
    font-family: var(--Maison_Neue_Bold);
    font-size: var(--fs_18);
}

.mobileFilterOffcanvaspart .offcanvas-body {
    margin: 0;
    padding: 0;
}

.mobileFilterOffcanvaspart .accordion-button {
    color: var(--text_color_1);
    font-family: var(--Maison_Neue_Bold);
    font-size: var(--fs_16);
}

.mobileFilterOffcanvaspart .accordion-button:not(.collapsed) {
    background-color: transparent;
}

.mobileFilterOffcanvaspart .accordion-item {
    border-left: none;
    border-right: none;
    border-top: none;
}

.mobileFilterOffcanvaspart .accordion-item:first-of-type>.accordion-header .accordion-button {
    border-radius: 0 !important;
}

.mobileFilterOffcanvaspart .accordion-button:focus {
    box-shadow: none;
}

.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body .browse_part .category_names {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 5px;
}

.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body input[type="checkbox"] {
    accent-color: var(--bg_color_1);
    margin-right: 10px;
    width: 15px;
    height: 15px;
    border-radius: 0;
}

.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body label {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    margin-top: 3px;
}

.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body .range-wrap {
    width: 100%;
}

.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body .slider {
    position: relative;
    height: 34px;
    width: 100%;
}

.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body .track {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    transform: translateY(-50%);
    background: #e5e7eb;
    border-radius: 999px;
    z-index: 1;
}

.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body .range-fill {
    position: absolute;
    top: 50%;
    height: 3px;
    transform: translateY(-50%);
    background: var(--bg_color_2);
    border-radius: 999px;
    z-index: 2;
    left: 0;
    width: 0;
}

.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body .slider input[type="range"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 34px;
    margin: 0;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    z-index: 3;
}

.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body .slider input[type="range"]::-webkit-slider-runnable-track {
    height: 3px;
    background: transparent;
    border: none;
}

.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body .slider input[type="range"]::-moz-range-track {
    height: 3px;
    background: transparent;
    border: none;
}

.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body .slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    margin-top: -6px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--bg_color_2);
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 4;
}

.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body .slider input[type="range"]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--bg_color_2);
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 4;
}

.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body .labels {
    display: flex;
    justify-content: space-between;
    font-size: var(--fs_14);
    font-family: var(--Maison_Neue_Book);
    margin-top: 6px;
}

.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body .color_accordion_part .colour_name {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
}

.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body .color_accordion_part .color_selection_part {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 100%;
}

.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body .color_accordion_part .color-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--text_color_2) !important;
    position: relative;
}

.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body .color_accordion_part .color-dot.active {
    border-color: var(--bg_color_2);
}

.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body .color_accordion_part1 .colour_name {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
}

.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body .color_accordion_part1 .color_selection_part {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 100%;
}

.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body .color_accordion_part1 .color-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
}

.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body .color_accordion_part1 .color-dot.active {
    border-color: var(--bg_color_2);
}

.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body .size_part .size_names {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 5px;
    cursor: pointer;
}

.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body input[type="checkbox"] {
    accent-color: var(--bg_color_1);
    margin-right: 10px;
    width: 15px;
    height: 15px;
    border-radius: 0;
}

.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body label {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    margin-top: 3px;
}

.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body .color_accordion_part .color-dot,
.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body .color_accordion_part1 .color-dot {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    box-sizing: border-box;
}

.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body .color_accordion_part .color-dot.active,
.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body .color_accordion_part1 .color-dot.active {
    border-color: var(--bg_color_2);
    transform: scale(1.4);
    /* box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--bg_color_2); */
}

.mobileFilterOffcanvaspart .accordion .accordion-item .accordion-body .range-fill {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    left: 0;
    width: 0;
    background: var(--bg_color_2, var(--bg_color_2));
    z-index: 2;
    border-radius: 999px;
}

.mobileFilterOffcanvaspart .offcanvas-header .btn-close:focus {
    box-shadow: none;
}

.mobileFilterOffcanvaspart .apply_btn_part {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.mobileFilterOffcanvaspart .apply_btn_part .apply_btn {
    width: fit-content;
    border-radius: 0;
    padding: 8px 30px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg_color_2) !important;
    text-decoration: none;
    margin-top: 30px;
    color: var(--text_color_3) !important;
    border: none;
}

@media only screen and (max-width: 576px) {
    .cart_second_section {
        padding: 50px 0 100px 0;
    }
}

.shop_detail_first_section .right_side_part .qty_shop_detail_part {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.shop_detail_first_section .right_side_part .cell_qty {
    margin-top: 0;
    padding-right: 0;
    flex: 0 0 auto;
}

.shop_detail_first_section .right_side_part .cell_qty .qty_pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 0;
    background: #f2f2f2;
}

.shop_detail_first_section .right_side_part .cell_qty .qty_btn {
    border: 0;
    background: transparent;
    cursor: pointer;
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-family: var(--Maison_Neue_Bold);
    color: var(--text_color_1);
}

.shop_detail_first_section .right_side_part .cell_qty .qty_val {
    min-width: 18px;
    text-align: center;
    font-size: var(--fs_14);
    font-family: var(--Maison_Neue_Bold);
    color: var(--text_color_1);
}

.shop_detail_first_section .right_side_part .addto_cart_btn_part {
    flex: 1;
    margin-top: 0;
    text-wrap-mode: nowrap;
}

.shop_detail_first_section .right_side_part .addto_cart_btn_part form {
    width: 100%;
}

.shop_detail_first_section .right_side_part .addto_cart_btn_part .add_to_cart_btn {
    font-family: var(--Maison_Neue_Book);
    background-color: transparent;
    border-radius: 0;
    font-size: var(--fs_14);
    color: var(--text_color_2);
    padding: 12px 30px 10px 30px;
    border: 1px solid var(--text_color_2);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    width: 100%;
}

.shop_detail_first_section .right_side_part .addto_cart_btn_part .add_to_cart_btn:hover {
    background-color: var(--bg_color_2);
    border: 1px solid var(--text_color_2);
    color: var(--text_color_3);
}

.shop_detail_first_section .right_side_part .wishlist_btn_part {
    flex: 0 0 auto;
}

.shop_detail_first_section .right_side_part .wishlist_btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--text_color_2);
    background-color: var(--bg_color_3);
    color: var(--text_color_2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.shop_detail_first_section .right_side_part .wishlist_btn:hover {
    background-color: var(--bg_color_2);
    border: 1px solid var(--text_color_2);
}

.shop_detail_first_section .right_side_part .wishlist_btn.active {
    background-color: #F50F0F;
    border: 1px solid #F50F0F;
}

.shop_detail_first_section .right_side_part .wishlist_btn.active svg {
    color: var(--text_color_3);
}

.shop_detail_first_section .right_side_part .wishlist_btn:hover svg {
    color: var(--bg_color_3);
}

.shop_detail_first_section .right_side_part .wishlist_btn svg {
    width: 20px;
    height: 20px;
}

@media only screen and (max-width: 576px) {
    .shop_detail_first_section .right_side_part .qty_shop_detail_part {
        gap: 10px;
    }

    .shop_detail_first_section .right_side_part .cell_qty .qty_pill {
        min-width: 96px;
        height: 44px;
        gap: 14px;
        padding: 0 14px;
    }

    .shop_detail_first_section .right_side_part .addto_cart_btn_part .add_to_cart_btn {
        height: 43px;
        font-size: 13px;
    }

    .shop_detail_first_section .right_side_part .wishlist_btn {
        width: 43px;
        height: 43px;
    }
}

.wishlist_second_section {
    padding: 60px 0;
    background-color: var(--bg_color_3);
}

.wishlist_second_section .wishlist_card {
    background-color: var(--bg_color_3);
    /* border: 1px solid var(--text_color_5); */
    overflow: hidden;
    height: 100%;
}

.wishlist_second_section .wishlist_card .wishlist_img_part {
    position: relative;
    background-color: var(--bg_color_4);
}

.wishlist_second_section .wishlist_card .wishlist_img_part img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.wishlist_second_section .wishlist_card .remove_btn {
    width: 100%;
    background-color: transparent;
    border: none;
    color: var(--text_color_4);
    padding: 0;
    font-size: var(--fs_14);
    font-family: var(--Maison_Neue_Book);
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s ease;
}

.wishlist_second_section .wishlist_card .remove_btn:hover {
    color: var(--text_color_1);
}

.wishlist_second_section .wishlist_card .wishlist_content {
    padding: 16px 0 16px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.wishlist_second_section .wishlist_card .product_name {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_18);
    color: var(--text_color_1);
    margin: 0;
}

.wishlist_second_section .wishlist_card .price_part {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
}

.wishlist_second_section .wishlist_card .new_price {
    font-size: var(--fs_16);
    color: #1AAC27;
    font-family: var(--Maison_Neue_Book);
}

.wishlist_second_section .wishlist_card .old_price {
    font-size: var(--fs_14);
    color: #F50F0F;
    font-family: var(--Maison_Neue_Book);
    text-decoration: line-through;
}

.wishlist_second_section .shopnow_btn {
    font-family: var(--Maison_Neue_Book);
    background-color: transparent;
    border-radius: 0;
    font-size: var(--fs_14);
    color: var(--text_color_2);
    padding: 12px 30px 10px 30px;
    border: 1px solid var(--text_color_2);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    width: fit-content;
}

.wishlist_second_section .shopnow_btn:hover {
    background-color: var(--bg_color_2);
    color: var(--text_color_3);
}

@media only screen and (max-width: 768px) {

    .wishlist_second_section {
        padding: 40px 0;
    }

    .wishlist_second_section .wishlist_card .wishlist_img_part img {
        height: 240px;
    }

    .wishlist_second_section .wishlist_card .product_name {
        font-size: var(--fs_16);
    }

}

.cookie-banner {
    position: sticky;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.cookie-banner .cookie-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background-color: var(--bg_color_4);
    border: 1px solid #e7e4e4;
    border-radius: 0;
    padding: 18px 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.cookie-banner .cookie-banner__content .cookie-banner__text {
    flex: 1;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    line-height: 1.7;
    color: var(--text_color_2);
}

.cookie-banner .cookie-banner__content .cookie-banner__text a {
    color: var(--text_color_1);
    font-family: var(--Maison_Neue_Bold);
    text-decoration: underline;
}

.cookie-banner .cookie-banner__content .cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-banner .cookie-banner__content .cookie-btn {
    min-width: 130px;
    padding: 10px 20px;
    border-radius: 0;
    font-size: var(--fs_14);
    cursor: pointer;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

.cookie-banner .cookie-banner__content .cookie-btn--primary {
    background-color: var(--bg_color_1);
    color: var(--text_color_3);
}

.cookie-banner .cookie-banner__content .cookie-btn--secondary {
    background-color: transparent;
    color: var(--text_color_1);
    border: 1px solid #b1b1b1;
}

.cookie-banner .cookie-banner__content .cookie-btn--secondary:hover {
    background-color: var(--bg_color_4);
}

@media only screen and (max-width: 768px) {

    .cookie-banner .cookie-banner__content {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .cookie-banner .cookie-banner__content .cookie-banner__actions {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .cookie-banner .cookie-banner__content .cookie-btn {
        width: 100%;
    }
}




:root {
    --Maison_Neue_Mono: "Maison_Neue_Mono";
    --Maison_Neue_Book: "Maison_Neue_Book";
    --Maison_Neue_Bold: "Maison_Neue_Bold";
    --Maison_Neue_Light: "Maison_Neue_Light";

    --fs_12: 12px;
    --fs_14: 14px;
    --fs_16: 16px;
    --fs_18: 18px;
    --fs_20: 20px;
    --fs_22: 22px;
    --fs_24: 24px;
    --fs_26: 26px;
    --fs_28: 28px;
    --fs_30: 30px;
    --fs_32: 32px;
    --fs_34: 34px;
    --fs_36: 36px;
    --fs_38: 38px;
    --fs_40: 40px;
    --fs_42: 42px;
    --fs_44: 44px;
    --fs_46: 46px;
    --fs_48: 48px;
    --fs_50: 50px;
    --fs_52: 52px;
    --fs_54: 54px;
    --fs_60: 60px;

    --bg_color_1: #000000;
    --bg_color_2: #262626;
    --bg_color_3: #FFFFFF;
    --bg_color_4: #F5F4F4;

    --text_color_1: #000000;
    --text_color_2: #262626;
    --text_color_3: #FFFFFF;
    --text_color_4: #737373;
    --text_color_5: #DDDBDC;
}

.blog_page_section {
    padding: 80px 0;
    background-color: var(--bg_color_3);
}

.blog_page_section .container {
    max-width: 1320px;
    margin: 0 auto;
}

.blog_page_section .row {
    row-gap: 30px;
}

.blog_page_section .blog_category_block {
    margin-bottom: 60px;
}

.blog_page_section .blog_category_block a {
    text-decoration: none;
}

.blog_page_section .blog_category_heading {
    margin-bottom: 25px;
}

.blog_page_section .blog_category_heading h3 {
    margin: 0;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_26);
    color: var(--text_color_1);
    line-height: 1.3;
    text-transform: capitalize;
}

.blog_page_section .blog_item {
    height: 100%;
    /* background-color: var(--bg_color_3); */
    /* border: 1px solid #e8e8e8; */
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog_page_section .blog_item_image {
    width: 100%;
    max-height: 320px;
    overflow: hidden;
    background-color: var(--bg_color_4);
}

.blog_page_section .blog_item_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog_page_section .blog_item_content {
    padding: 16px 0 0 0;
    display: flex;
    flex-direction: column;
    /* min-height: 220px; */
}

.blog_page_section .blog_item_content h5 {
    margin: 0 0 6px 0;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_22);
    color: var(--text_color_2);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog_page_section .blog_item_content h5:hover {
    color: var(--text_color_1);
}

.blog_page_section .blog_item_content p {
    margin: 0 0 20px 0;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    color: var(--text_color_4);
    line-height: 1.5;
    /* flex-grow: 1; */
}

.blog_page_section .blog_read_more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 10px 20px;
    background-color: var(--bg_color_3);
    color: var(--text_color_2);
    border: 1px solid var(--bg_color_2);
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog_page_section .blog_read_more:hover {
    background-color: var(--bg_color_2);
    color: var(--text_color_3);
}

.about_first_section .breadcrumb_icon {
    width: 18px;
    height: 18px;
}

@media only screen and (max-width: 992px) {
    .blog_page_section {
        padding: 60px 0;
    }

    .blog_page_section .blog_category_heading h3 {
        font-size: var(--fs_22);
    }

    .blog_page_section .blog_item_content {
        padding: 20px;
        min-height: auto;
    }

    .blog_page_section .blog_item_content h5 {
        font-size: var(--fs_20);
    }
}

@media only screen and (max-width: 768px) {
    .blog_page_section {
        padding: 50px 0;
    }

    .blog_page_section .blog_category_block {
        margin-bottom: 45px;
    }

    .blog_page_section .blog_category_heading {
        margin-bottom: 20px;
    }

    .blog_page_section .blog_category_heading h3 {
        font-size: var(--fs_20);
    }

    .blog_page_section .blog_item_image {
        max-height: 220px;
    }

    .blog_page_section .blog_item_content {
        padding: 18px;
    }

    .blog_page_section .blog_item_content h5 {
        font-size: var(--fs_18);
    }

    .blog_page_section .blog_item_content p {
        font-size: var(--fs_14);
    }

    .blog_page_section .blog_read_more {
        padding: 10px 18px;
    }
}

.about_first_section .breadcrumb_icon {
    width: 18px;
    height: 18px;
}

/* 
.blog_detail_page_section {
    padding: 100px 0;
    background-color: var(--bg_color_3);
}

.blog_detail_page_section .blog_detail_header {
    margin-bottom: 10px;
}

.blog_detail_page_section .blog_detail_title {
    font-family: var(--Maison_Neue_Bold);
    font-size: var(--fs_32);
    color: var(--text_color_1);
}

.blog_detail_page_section .blog_detail_date {
    margin: 0;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    line-height: 1.6;
    color: var(--text_color_4);
}

.blog_detail_page_section .blog_detail_image {
    margin-bottom: 40px;
    overflow: hidden;
    background-color: var(--bg_color_4);
}

.blog_detail_page_section .blog_detail_image img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    display: block;
}

.blog_detail_page_section .content_area {
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_2);
}

.blog_detail_page_section .content_area h1,
.blog_detail_page_section .content_area .content_h1 {
    margin: 0 0 20px;
    font-family: var(--Maison_Neue_Bold);
    font-size: var(--fs_42);
    line-height: 1.3;
    color: var(--text_color_1);
}

.blog_detail_page_section .content_area h2,
.blog_detail_page_section .content_area .content_h2 {
    margin: 0 0 10px 0;
    font-family: var(--Maison_Neue_Bold);
    font-size: var(--fs_28);
    color: var(--text_color_1);
}

.blog_detail_page_section .content_area h3,
.blog_detail_page_section .content_area .content_h3 {
    margin: 0 0 10px 0;
    font-family: var(--Maison_Neue_Bold);
    font-size: var(--fs_24);
    color: var(--text_color_1);
}

.blog_detail_page_section .content_area h4,
.blog_detail_page_section .content_area .content_h4 {
    margin: 0 0 10px 0;
    font-family: var(--Maison_Neue_Bold);
    font-size: var(--fs_22);
    color: var(--text_color_1);
}

.blog_detail_page_section .content_area h5,
.blog_detail_page_section .content_area .content_h5 {
    margin: 0 0 10px 0;
    font-family: var(--Maison_Neue_Bold);
    font-size: var(--fs_20);
    color: var(--text_color_1);
}

.blog_detail_page_section .content_area h6,
.blog_detail_page_section .content_area .content_h6 {
    margin: 0 0 10px;
    font-family: var(--Maison_Neue_Bold);
    font-size: var(--fs_18);
    color: var(--text_color_1);
}

.blog_detail_page_section .content_area p,
.blog_detail_page_section .content_area .content_p {
    margin: 0 0 18px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    color: var(--text_color_2);
}

.blog_detail_page_section .content_area span,
.blog_detail_page_section .content_area .content_span {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    line-height: 1.8;
    color: var(--text_color_2);
}

.blog_detail_page_section .content_area a,
.blog_detail_page_section .content_area .content_link {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    line-height: 1.8;
    color: var(--text_color_1);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.blog_detail_page_section .content_area a:hover,
.blog_detail_page_section .content_area .content_link:hover {
    opacity: 0.7;
}

.blog_detail_page_section .content_area ul,
.blog_detail_page_section .content_area .content_ul {
    margin: 0 0 20px;
    padding-left: 22px;
}

.blog_detail_page_section .content_area ol,
.blog_detail_page_section .content_area .content_ol {
    margin: 0 0 20px;
    padding-left: 22px;
}

.blog_detail_page_section .content_area ul li,
.blog_detail_page_section .content_area .content_ul li,
.blog_detail_page_section .content_area ol li,
.blog_detail_page_section .content_area .content_ol li {
    margin-bottom: 10px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    line-height: 1.8;
    color: var(--text_color_2);
}

.blog_detail_page_section .content_area img,
.blog_detail_page_section .content_area .content_image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
}

.blog_detail_page_section .content_area blockquote,
.blog_detail_page_section .content_area .content_blockquote {
    margin: 25px 0;
    padding: 20px 24px;
    border-left: 3px solid var(--bg_color_1);
    background-color: var(--bg_color_3);
    font-family: var(--Maison_Neue_Light);
    font-size: var(--fs_18);
    line-height: 1.8;
    color: var(--text_color_2);
}

.blog_detail_page_section .content_area table,
.blog_detail_page_section .content_area .content_table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
}

.blog_detail_page_section .content_area table th,
.blog_detail_page_section .content_area table td,
.blog_detail_page_section .content_area .content_table th,
.blog_detail_page_section .content_area .content_table td {
    padding: 14px 16px;
    border: 1px solid #dddddd;
    text-align: left;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    color: var(--text_color_2);
}

.blog_detail_page_section .content_area table th,
.blog_detail_page_section .content_area .content_table th {
    font-family: var(--Maison_Neue_Bold);
    background-color: var(--bg_color_3);
    color: var(--text_color_1);
}

.blog_detail_page_section .search_widget {
    margin-bottom: 30px;
}

.blog_detail_page_section .search_input_group {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--bg_color_2);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog_detail_page_section .search_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
    color: var(--text_color_2);
    flex-shrink: 0;
}

.blog_detail_page_section .search_input_group input {
    width: 100%;
    height: 44px;
    border: none;
    outline: none;
    background: transparent;
    padding: 0 14px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_15);
    color: var(--text_color_2);
}

.blog_detail_page_section .search_input_group input::placeholder {
    color: #9a9a9a;
}

.blog_detail_page_section .search_input_group button {
    height: 44px;
    margin-right: 0;
    padding: 0 18px;
    border: 1px solid var(--bg_color_2);
    border-radius: 0;
    background: var(--bg_color_2);
    color: #fff;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.blog_detail_page_section .sidebar_title {
    font-size: var(--fs_20);
    margin-bottom: 30px;
}

.blog_detail_page_section .other_blog_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog_detail_page_section .other_blog_item {
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #ececec;
    padding-bottom: 16px;
    transition: all 0.3s ease;
}

.blog_detail_page_section .other_blog_item:last-child {
    border-bottom: none;
}

.blog_detail_page_section .other_blog_inner {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog_detail_page_section .other_blog_thumb {
    width: 80px;
    height: 80px;
    min-width: 80px;
    overflow: hidden;
    background-color: #ececec;
}

.blog_detail_page_section .other_blog_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog_detail_page_section .other_blog_content h5 {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.4;
    color: var(--text_color_1);
    font-weight: 500;
}

.blog_detail_page_section .other_blog_content p {
    margin: 0;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
}

.blog_detail_page_section .other_blog_item:hover h5 {
    color: var(--bg_color_1);
}

@media only screen and (max-width: 992px) {
    .blog_detail_page_section {
        padding: 60px 0;
    }

    .blog_detail_page_section .blog_detail_title {
        font-size: var(--fs_28);
    }

    .blog_detail_page_section .content_area h1,
    .blog_detail_page_section .content_area .content_h1 {
        font-size: var(--fs_34);
    }

    .blog_detail_page_section .content_area h2,
    .blog_detail_page_section .content_area .content_h2 {
        font-size: var(--fs_24);
    }

    .blog_detail_page_section .content_area h3,
    .blog_detail_page_section .content_area .content_h3 {
        font-size: var(--fs_24);
    }
}

@media only screen and (max-width: 768px) {
    .blog_detail_page_section {
        padding: 50px 0;
    }

    .blog_detail_page_section .blog_detail_title {
        font-size: var(--fs_24);
    }

    .blog_detail_page_section .blog_detail_date {
        font-size: var(--fs_14);
    }

    .blog_detail_page_section .blog_detail_image {
        margin-bottom: 30px;
    }

    .blog_detail_page_section .blog_detail_image img {
        max-height: 300px;
    }

    .blog_detail_page_section .content_area h1,
    .blog_detail_page_section .content_area .content_h1 {
        font-size: var(--fs_28);
    }

    .blog_detail_page_section .content_area h2,
    .blog_detail_page_section .content_area .content_h2 {
        font-size: var(--fs_20);
    }

    .blog_detail_page_section .content_area h3,
    .blog_detail_page_section .content_area .content_h3 {
        font-size: var(--fs_20);
    }

    .blog_detail_page_section .content_area h4,
    .blog_detail_page_section .content_area .content_h4 {
        font-size: var(--fs_18);
    }

    .blog_detail_page_section .content_area h5,
    .blog_detail_page_section .content_area .content_h5 {
        font-size: var(--fs_18);
    }

    .blog_detail_page_section .content_area h6,
    .blog_detail_page_section .content_area .content_h6 {
        font-size: var(--fs_16);
    }

    .blog_detail_page_section .content_area p,
    .blog_detail_page_section .content_area .content_p,
    .blog_detail_page_section .content_area span,
    .blog_detail_page_section .content_area .content_span,
    .blog_detail_page_section .content_area a,
    .blog_detail_page_section .content_area .content_link,
    .blog_detail_page_section .content_area ul li,
    .blog_detail_page_section .content_area .content_ul li,
    .blog_detail_page_section .content_area ol li,
    .blog_detail_page_section .content_area .content_ol li {
        font-size: var(--fs_14);
    }

    .blog_detail_page_section .content_area blockquote,
    .blog_detail_page_section .content_area .content_blockquote {
        padding: 16px 18px;
        font-size: var(--fs_16);
    }
}

@media only screen and (max-width: 576px) {

    .blog_detail_page_section .other_blog_inner {
        align-items: flex-start;
    }

    .blog_detail_page_section .other_blog_thumb {
        width: 80px;
        min-width: 80px;
        height: 70px;
    }

    .blog_detail_page_section .blog_sidebar_widget.search_widget {
        padding: 18px;
        border-radius: 12px;
    }

    .blog_detail_page_section .search_input_group {
        flex-wrap: nowrap;
        border-radius: 12px;
    }

    .blog_detail_page_section .search_input_group input {
        height: 50px;
        font-size: var(--fs_14);
        padding: 0 10px;
    }

    .blog_detail_page_section .search_icon {
        padding-left: 12px;
    }

    .blog_detail_page_section .search_input_group button {
        height: 38px;
        padding: 0 14px;
        font-size: 13px;
        margin-right: 5px;
    }

} */

.shopnow_btn {
    font-family: var(--Maison_Neue_Book);
    background-color: transparent;
    border-radius: 0;
    font-size: var(--fs_14);
    color: var(--text_color_2);
    padding: 12px 30px 10px 30px;
    border: 1px solid var(--text_color_2);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    width: fit-content;
}

.shopnow_btn:hover {
    background-color: var(--bg_color_2);
    color: var(--text_color_3);
}

.name_with_share_icon {
    display: flex;
    align-items: start;
}

.product-share-icon-part svg {
    height: 22px;
    width: 22px;
}

.share-btn {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    padding: 8px 16px 8px 14px;
    border-radius: 0;
    border: 1px solid var(--text_color_2);
    background-color: var(--bg_color_2);
    color: var(--text_color_3);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.share-btn i {
    font-size: 14px;
}
















.contact_page_section {
    padding: 100px 0;
    background-color: var(--bg_color_3);
}

.contact_page_section .contact_custom_row {
    display: flex;
    flex-wrap: wrap;
}

.contact_page_section .contact_custom_row .contact_info_main {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact_page_section .contact_custom_row .contact_info_main .contact_info_card {
    background-color: var(--bg_color_4);
    padding: 24px;
    margin-bottom: 14px;
    border: 1px solid #e5e5e5;
}

.contact_page_section .contact_custom_row .contact_info_main .contact_info_card .contact_label {
    font-size: 14px;
    letter-spacing: 1px;
    color: #555;
    display: block;
    margin-bottom: 8px;
}

.contact_page_section .contact_custom_row .contact_info_main .contact_info_card h4 {
    font-size: 20px;
    margin-bottom: 6px;
}

.contact_page_section .contact_custom_row .contact_info_main .contact_info_card p,
.contact_page_section .contact_custom_row .contact_info_main .contact_info_card a {
    font-size: 15px;
    color: #555;
    text-decoration: none;
    margin-bottom: 0;
    display: block;
}

.contact_page_section .contact_custom_row .contact_info_main .contact_info_card p:hover,
.contact_page_section .contact_custom_row .contact_info_main .contact_info_card a:hover {
    color: var(--text_color_1);
}

.contact_page_section .contact_custom_row .contact_map_box {
    height: 400px;
    background-color: var(--bg_color_4);
    border: 1px solid var(--bg_color_4);
    overflow: hidden;
    margin-top: 10px;
}

.contact_page_section .contact_custom_row .contact_map_box iframe {
    width: 100%;
    height: 100%;
}

.contact_page_section .contact_custom_row .contact_form_main {
    background-color: var(--bg_color_4);
    border: 1px solid #e5e5e5;
    padding: 24px;
}

.contact_page_section .contact_custom_row .contact_form_main h3 {
    font-size: 26px;
    margin-bottom: 25px;
    font-weight: 400;
}

.contact_page_section .contact_custom_row {
    margin-left: -8px;
    margin-right: -8px;
}

.contact_page_section .contact_custom_row .contact_form_col {
    width: 50%;
    padding: 0 8px;
    margin-bottom: 18px;
}

.contact_page_section .contact_custom_row .contact_form_full {
    margin-bottom: 22px;
}

.contact_page_section .contact_custom_row .contact_form_wrap .form-control {
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    border-radius: 0;
    padding: 10px 0;
    height: 50px;
    font-size: 14px;
}

.contact_page_section .contact_custom_row .contact_form_wrap textarea {
    min-height: 115px;
}

.contact_page_section .contact_custom_row .contact_form_wrap .form-control:focus,
.contact_page_section .contact_custom_row .contact_form_wrap textarea:focus {
    box-shadow: none;
}

.contact_page_section .contact_custom_row .contact_form_wrap .contact_submit_btn {
    background-color: transparent;
    color: var(--text_color_2);
    padding: 12px 22px;
    border: 1px solid var(--text_color_2);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.contact_page_section .contact_custom_row .contact_form_wrap .contact_submit_btn:hover {
    background-color: var(--bg_color_2);
    color: var(--text_color_3);
}

@media only screen and (max-width: 768px) {

    .contact_page_section .contact_custom_row .contact_form_wrap .contact_form_col {
        width: 100%;
    }

    .contact_page_section {
        padding: 50px 0;
    }

}
















/* .blog_list_page_section {
    padding: 100px 0;
    background-color: var(--bg_color_3);
}

.blog_list_page_section .blog_list_header {
    margin-bottom: 10px;
}

.blog_list_page_section .blog_list_title {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_32);
    color: var(--text_color_1);
}

.blog_list_page_section .blog_list_wrapper {
    padding-bottom: 25px;
    border-bottom: 1px solid #E4E1E0;
}

.blog_list_page_section .blog_list_wrapper .continue_reading_wrapper {
    margin-top: 40px;
}

.blog_list_page_section .blog_list_wrapper .continue_reading_wrapper .continue_reading {
    text-decoration: none;
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_4);
    font-size: var(--fs_16);
    transition: all 0.3s ease;
}

.blog_list_page_section .blog_list_wrapper .continue_reading_wrapper .continue_reading:hover {
    color: var(--text_color_1);
}

.blog_list_page_section .blog_list_date {
    margin: 4px 0;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    line-height: 1.6;
    color: var(--text_color_4);
}

.blog_list_page_section .blog_list_image {
    margin-bottom: 30px;
    overflow: hidden;
    background-color: var(--bg_color_4);
}

.blog_list_page_section .blog_list_image img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    display: block;
}

.blog_list_page_section .content_area {
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_2);
}

.blog_list_page_section .content_area h1,
.blog_list_page_section .content_area .content_h1 {
    margin: 0 0 20px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_42);
    line-height: 1.3;
    color: var(--text_color_1);
}

.blog_list_page_section .content_area h2,
.blog_list_page_section .content_area .content_h2 {
    margin: 0 0 10px 0;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_28);
    color: var(--text_color_1);
}

.blog_list_page_section .content_area h3,
.blog_list_page_section .content_area .content_h3 {
    margin: 0 0 10px 0;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_24);
    color: var(--text_color_1);
}

.blog_list_page_section .content_area h4,
.blog_list_page_section .content_area .content_h4 {
    margin: 0 0 10px 0;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_22);
    color: var(--text_color_1);
}

.blog_list_page_section .content_area h5,
.blog_list_page_section .content_area .content_h5 {
    margin: 0 0 10px 0;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_20);
    color: var(--text_color_1);
}

.blog_list_page_section .content_area h6,
.blog_list_page_section .content_area .content_h6 {
    margin: 0 0 10px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_18);
    color: var(--text_color_1);
}

.blog_list_page_section .content_area p,
.blog_list_page_section .content_area .content_p {
    margin: 0 0 18px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    color: var(--text_color_2);
}

.blog_list_page_section .content_area span,
.blog_list_page_section .content_area .content_span {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    line-height: 1.8;
    color: var(--text_color_2);
}

.blog_list_page_section .content_area a,
.blog_list_page_section .content_area .content_link {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    line-height: 1.8;
    color: var(--text_color_1);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.blog_list_page_section .content_area a:hover,
.blog_list_page_section .content_area .content_link:hover {
    opacity: 0.7;
}

.blog_list_page_section .content_area ul,
.blog_list_page_section .content_area .content_ul {
    margin: 0 0 20px;
    padding-left: 22px;
}

.blog_list_page_section .content_area ol,
.blog_list_page_section .content_area .content_ol {
    margin: 0 0 20px;
    padding-left: 22px;
}

.blog_list_page_section .content_area ul li,
.blog_list_page_section .content_area .content_ul li,
.blog_list_page_section .content_area ol li,
.blog_list_page_section .content_area .content_ol li {
    margin-bottom: 10px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    line-height: 1.8;
    color: var(--text_color_2);
}

.blog_list_page_section .content_area img,
.blog_list_page_section .content_area .content_image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
}

.blog_list_page_section .content_area blockquote,
.blog_list_page_section .content_area .content_blockquote {
    margin: 25px 0;
    padding: 20px 24px;
    border-left: 3px solid var(--bg_color_1);
    background-color: var(--bg_color_3);
    font-family: var(--Maison_Neue_Light);
    font-size: var(--fs_18);
    line-height: 1.8;
    color: var(--text_color_2);
}

.blog_list_page_section .content_area table,
.blog_list_page_section .content_area .content_table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
}

.blog_list_page_section .content_area table th,
.blog_list_page_section .content_area table td,
.blog_list_page_section .content_area .content_table th,
.blog_list_page_section .content_area .content_table td {
    padding: 14px 16px;
    border: 1px solid #dddddd;
    text-align: left;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    color: var(--text_color_2);
}

.blog_list_page_section .content_area table th,
.blog_list_page_section .content_area .content_table th {
    font-family: var(--Maison_Neue_Book);
    background-color: var(--bg_color_3);
    color: var(--text_color_1);
}

.blog_list_page_section .search_widget {
    margin-bottom: 30px;
}

.blog_list_page_section .search_input_group {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--bg_color_2);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog_list_page_section .search_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
    color: var(--text_color_2);
    flex-shrink: 0;
}

.blog_list_page_section .search_input_group input {
    width: 100%;
    height: 44px;
    border: none;
    outline: none;
    background: transparent;
    padding: 0 14px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_15);
    color: var(--text_color_2);
}

.blog_list_page_section .search_input_group input::placeholder {
    color: #9a9a9a;
}

.blog_list_page_section .search_input_group button {
    height: 44px;
    margin-right: 0;
    padding: 0 18px;
    border: 1px solid var(--bg_color_2);
    border-radius: 0;
    background: var(--bg_color_2);
    color: #fff;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.blog_list_page_section .category_alllist_part .category_list_part {
    margin-bottom: 30px;
}

.blog_list_page_section .category_alllist_part .category_list_part .category_list a {
    font-size: var(--fs_16);
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
    color: var(--text_color_2);
}

.blog_list_page_section .category_alllist_part .sidebar_title {
    font-size: var(--fs_20);
    margin-bottom: 20px;
}

.blog_list_page_section .sidebar_title {
    font-size: var(--fs_20);
    margin-bottom: 30px;
}

.blog_list_page_section .other_blog_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog_list_page_section .other_blog_item {
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #ececec;
    padding-bottom: 16px;
    transition: all 0.3s ease;
}

.blog_list_page_section .other_blog_item:last-child {
    border-bottom: none;
}

.blog_list_page_section .other_blog_inner {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog_list_page_section .other_blog_thumb {
    width: 80px;
    height: 80px;
    min-width: 80px;
    overflow: hidden;
    background-color: #ececec;
}

.blog_list_page_section .other_blog_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog_list_page_section .other_blog_content h5 {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.4;
    color: var(--text_color_1);
    font-weight: 500;
}

.blog_list_page_section .other_blog_content p {
    margin: 0;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
}

.blog_list_page_section .other_blog_item:hover h5 {
    color: var(--bg_color_1);
}

@media only screen and (max-width: 992px) {
    .blog_list_page_section {
        padding: 60px 0;
    }

    .blog_list_page_section .blog_list_title {
        font-size: var(--fs_28);
    }

    .blog_list_page_section .content_area h1,
    .blog_list_page_section .content_area .content_h1 {
        font-size: var(--fs_34);
    }

    .blog_list_page_section .content_area h2,
    .blog_list_page_section .content_area .content_h2 {
        font-size: var(--fs_24);
    }

    .blog_list_page_section .content_area h3,
    .blog_list_page_section .content_area .content_h3 {
        font-size: var(--fs_24);
    }
}

@media only screen and (max-width: 768px) {
    .blog_list_page_section {
        padding: 50px 0;
    }

    .blog_list_page_section .blog_list_title {
        font-size: var(--fs_24);
    }

    .blog_list_page_section .blog_list_date {
        font-size: var(--fs_14);
    }

    .blog_list_page_section .blog_list_image {
        margin-bottom: 30px;
    }

    .blog_list_page_section .blog_list_image img {
        max-height: 300px;
    }

    .blog_list_page_section .content_area h1,
    .blog_list_page_section .content_area .content_h1 {
        font-size: var(--fs_28);
    }

    .blog_list_page_section .content_area h2,
    .blog_list_page_section .content_area .content_h2 {
        font-size: var(--fs_20);
    }

    .blog_list_page_section .content_area h3,
    .blog_list_page_section .content_area .content_h3 {
        font-size: var(--fs_20);
    }

    .blog_list_page_section .content_area h4,
    .blog_list_page_section .content_area .content_h4 {
        font-size: var(--fs_18);
    }

    .blog_list_page_section .content_area h5,
    .blog_list_page_section .content_area .content_h5 {
        font-size: var(--fs_18);
    }

    .blog_list_page_section .content_area h6,
    .blog_list_page_section .content_area .content_h6 {
        font-size: var(--fs_16);
    }

    .blog_list_page_section .content_area p,
    .blog_list_page_section .content_area .content_p,
    .blog_list_page_section .content_area span,
    .blog_list_page_section .content_area .content_span,
    .blog_list_page_section .content_area a,
    .blog_list_page_section .content_area .content_link,
    .blog_list_page_section .content_area ul li,
    .blog_list_page_section .content_area .content_ul li,
    .blog_list_page_section .content_area ol li,
    .blog_list_page_section .content_area .content_ol li {
        font-size: var(--fs_14);
    }

    .blog_list_page_section .content_area blockquote,
    .blog_list_page_section .content_area .content_blockquote {
        padding: 16px 18px;
        font-size: var(--fs_16);
    }
}

@media only screen and (max-width: 576px) {

    .blog_list_page_section .other_blog_inner {
        align-items: flex-start;
    }

    .blog_list_page_section .other_blog_thumb {
        width: 80px;
        min-width: 80px;
        height: 70px;
    }

    .blog_list_page_section .blog_sidebar_widget.search_widget {
        padding: 18px;
        border-radius: 12px;
    }

    .blog_list_page_section .search_input_group {
        flex-wrap: nowrap;
        border-radius: 12px;
    }

    .blog_list_page_section .search_input_group input {
        height: 50px;
        font-size: var(--fs_14);
        padding: 0 10px;
    }

    .blog_list_page_section .search_icon {
        padding-left: 12px;
    }

    .blog_list_page_section .search_input_group button {
        height: 38px;
        padding: 0 14px;
        font-size: 13px;
        margin-right: 5px;
    }

} */




.blog_list_page_section {
    padding: 100px 0;
    background-color: var(--bg_color_3);
}

.blog_list_page_section .blog_list_wrapper .blog_list_part {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e9e5e3;
}

.blog_list_page_section .blog_list_image {
    display: block;
    margin-bottom: 34px;
    overflow: hidden;
    background-color: var(--bg_color_4);
    text-decoration: none;
}

.blog_list_page_section .blog_list_image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.blog_list_page_section .blog_list_image:hover img {
    transform: scale(1.04);
}

.blog_list_page_section .blog_list_header {
    margin-bottom: 18px;
}

.blog_list_page_section .blog_list_date {
    margin: 0 0 10px;
    font-family: var(--Maison_Neue_Mono);
    font-size: var(--fs_14);
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--text_color_2);
}

.blog_list_page_section .blog_list_title {
    margin: 0;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_36);
    line-height: 1.25;
    color: var(--text_color_1);
}

.blog_list_page_section .blog_list_content {
    max-width: 92%;
}

.blog_list_page_section .content_area {
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_2);
}

.blog_list_page_section .content_area p,
.blog_list_page_section .content_area .content_p {
    margin: 0 0 18px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    line-height: 1.6;
    color: var(--text_color_2);
}

.blog_list_page_section .continue_reading_wrapper {
    margin-top: 34px;
}

.blog_list_page_section .continue_reading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_1);
    font-size: var(--fs_16);
    transition: all 0.3s ease;
}

.blog_list_page_section .continue_reading span {
    transition: transform 0.3s ease;
}

.blog_list_page_section .continue_reading:hover {
    color: var(--text_color_4);
}

.blog_list_page_section .continue_reading:hover span {
    transform: translateX(4px);
}

.blog_list_page_section .blog_sidebar {
    padding-left: 18px;
}

.blog_list_page_section .blog_sidebar_widget {
    margin-bottom: 38px;
}

.blog_list_page_section .blog_sidebar_widget:last-child {
    margin-bottom: 0;
}

.blog_list_page_section .sidebar_title {
    margin: 0 0 22px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_22);
    line-height: 1.3;
    color: var(--text_color_1);
}

.blog_list_page_section .category_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog_list_page_section .category_list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: 1px solid #e5e0de;
    text-decoration: none;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    color: var(--text_color_2);
    background: var(--bg_color_3);
    transition: all 0.3s ease;
}

.blog_list_page_section .category_list a:hover {
    background: var(--bg_color_1);
    color: var(--text_color_3);
    border-color: var(--bg_color_1);
}

.blog_list_page_section .search_widget {
    padding: 10px 20px;
    border: 1px solid #ece8e6;
    background: #faf8f7;
}

.blog_list_page_section .search_input_group {
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.blog_list_page_section .search_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text_color_2);
    flex-shrink: 0;
    padding-right: 10px;
}

.blog_list_page_section .search_input_group input {
    width: 100%;
    height: 48px;
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_15);
    color: var(--text_color_2);
}

.blog_list_page_section .search_input_group input::placeholder {
    color: #999;
}

.blog_list_page_section .search_input_group:focus-within {
    border-color: var(--text_color_1);
}

.blog_list_page_section .other_blog_list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.blog_list_page_section .other_blog_item {
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #efebea;
    padding-bottom: 18px;
    transition: all 0.3s ease;
}

.blog_list_page_section .other_blog_item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blog_list_page_section .other_blog_inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.blog_list_page_section .other_blog_thumb {
    width: 92px;
    height: 92px;
    min-width: 92px;
    overflow: hidden;
    background-color: #ececec;
}

.blog_list_page_section .other_blog_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog_list_page_section .other_blog_item:hover .other_blog_thumb img {
    transform: scale(1.05);
}

.blog_list_page_section .other_blog_content h5 {
    margin: 0 0 8px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    line-height: 1.5;
    color: var(--text_color_1);
    font-weight: 400;
    transition: color 0.3s ease;
}

.blog_list_page_section .other_blog_content p {
    margin: 0;
    font-family: var(--Maison_Neue_Mono);
    font-size: var(--fs_12);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text_color_4);
}

.blog_list_page_section .other_blog_item:hover .other_blog_content h5 {
    color: var(--text_color_4);
}

.blog_list_page_section .content_area h1,
.blog_list_page_section .content_area .content_h1 {
    margin: 0 0 20px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_42);
    line-height: 1.3;
    color: var(--text_color_1);
}

.blog_list_page_section .content_area h2,
.blog_list_page_section .content_area .content_h2 {
    margin: 0 0 12px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_28);
    line-height: 1.4;
    color: var(--text_color_1);
}

.blog_list_page_section .content_area h3,
.blog_list_page_section .content_area .content_h3 {
    margin: 0 0 12px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_24);
    line-height: 1.4;
    color: var(--text_color_1);
}

.blog_list_page_section .content_area h4,
.blog_list_page_section .content_area .content_h4 {
    margin: 0 0 10px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_22);
    line-height: 1.4;
    color: var(--text_color_1);
}

.blog_list_page_section .content_area h5,
.blog_list_page_section .content_area .content_h5 {
    margin: 0 0 10px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_20);
    line-height: 1.4;
    color: var(--text_color_1);
}

.blog_list_page_section .content_area h6,
.blog_list_page_section .content_area .content_h6 {
    margin: 0 0 10px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_18);
    line-height: 1.4;
    color: var(--text_color_1);
}

.blog_list_page_section .content_area span,
.blog_list_page_section .content_area .content_span {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    line-height: 1.8;
    color: var(--text_color_2);
}

.blog_list_page_section .content_area a,
.blog_list_page_section .content_area .content_link {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    line-height: 1.8;
    color: var(--text_color_1);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.blog_list_page_section .content_area a:hover,
.blog_list_page_section .content_area .content_link:hover {
    opacity: 0.7;
}

.blog_list_page_section .content_area ul,
.blog_list_page_section .content_area .content_ul,
.blog_list_page_section .content_area ol,
.blog_list_page_section .content_area .content_ol {
    margin: 0 0 20px;
    padding-left: 22px;
}

.blog_list_page_section .content_area ul li,
.blog_list_page_section .content_area .content_ul li,
.blog_list_page_section .content_area ol li,
.blog_list_page_section .content_area .content_ol li {
    margin-bottom: 10px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    line-height: 1.8;
    color: var(--text_color_2);
}

.blog_list_page_section .content_area img,
.blog_list_page_section .content_area .content_image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
}

.blog_list_page_section .content_area blockquote,
.blog_list_page_section .content_area .content_blockquote {
    margin: 28px 0;
    padding: 20px 24px;
    border-left: 2px solid var(--bg_color_1);
    background-color: #faf8f7;
    font-family: var(--Maison_Neue_Light);
    font-size: var(--fs_18);
    line-height: 1.8;
    color: var(--text_color_2);
}

.blog_list_page_section .content_area table,
.blog_list_page_section .content_area .content_table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
}

.blog_list_page_section .content_area table th,
.blog_list_page_section .content_area table td,
.blog_list_page_section .content_area .content_table th,
.blog_list_page_section .content_area .content_table td {
    padding: 14px 16px;
    border: 1px solid #dddddd;
    text-align: left;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    color: var(--text_color_2);
}

.blog_list_page_section .content_area table th,
.blog_list_page_section .content_area .content_table th {
    background-color: #faf8f7;
    color: var(--text_color_1);
}

@media only screen and (max-width: 1199px) {
    .blog_list_page_section .blog_sidebar {
        padding-left: 0;
    }

    .blog_list_page_section .blog_list_image img {
        height: 420px;
    }
}

@media only screen and (max-width: 992px) {
    .blog_list_page_section {
        padding: 70px 0;
    }

    .blog_list_page_section .blog_list_title {
        font-size: var(--fs_30);
    }

    .blog_list_page_section .content_area h1,
    .blog_list_page_section .content_area .content_h1 {
        font-size: var(--fs_34);
    }

    .blog_list_page_section .content_area h2,
    .blog_list_page_section .content_area .content_h2 {
        font-size: var(--fs_24);
    }

    .blog_list_page_section .content_area h3,
    .blog_list_page_section .content_area .content_h3 {
        font-size: var(--fs_22);
    }

    .blog_list_page_section .blog_list_content {
        max-width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .blog_list_page_section {
        padding: 55px 0;
    }

    .blog_list_page_section .blog_list_image {
        margin-bottom: 24px;
    }

    .blog_list_page_section .blog_list_image img {
        height: 300px;
    }

    .blog_list_page_section .blog_list_title {
        font-size: var(--fs_24);
    }

    .blog_list_page_section .blog_list_date {
        font-size: var(--fs_12);
    }

    .blog_list_page_section .content_area h1,
    .blog_list_page_section .content_area .content_h1 {
        font-size: var(--fs_28);
    }

    .blog_list_page_section .content_area h2,
    .blog_list_page_section .content_area .content_h2 {
        font-size: var(--fs_20);
    }

    .blog_list_page_section .content_area h3,
    .blog_list_page_section .content_area .content_h3,
    .blog_list_page_section .content_area h4,
    .blog_list_page_section .content_area .content_h4,
    .blog_list_page_section .content_area h5,
    .blog_list_page_section .content_area .content_h5 {
        font-size: var(--fs_18);
    }

    .blog_list_page_section .content_area h6,
    .blog_list_page_section .content_area .content_h6,
    .blog_list_page_section .content_area p,
    .blog_list_page_section .content_area .content_p,
    .blog_list_page_section .content_area span,
    .blog_list_page_section .content_area .content_span,
    .blog_list_page_section .content_area a,
    .blog_list_page_section .content_area .content_link,
    .blog_list_page_section .content_area ul li,
    .blog_list_page_section .content_area .content_ul li,
    .blog_list_page_section .content_area ol li,
    .blog_list_page_section .content_area .content_ol li {
        font-size: var(--fs_14);
    }

    .blog_list_page_section .search_widget {
        padding: 10px 20px;
    }

    .blog_list_page_section .other_blog_thumb {
        width: 82px;
        height: 82px;
        min-width: 82px;
    }

    .blog_list_page_section .content_area blockquote,
    .blog_list_page_section .content_area .content_blockquote {
        padding: 16px 18px;
        font-size: var(--fs_16);
    }
}

@media only screen and (max-width: 576px) {
    .blog_list_page_section .other_blog_inner {
        align-items: flex-start;
    }

    .blog_list_page_section .other_blog_thumb {
        width: 76px;
        min-width: 76px;
        height: 72px;
    }

    .blog_list_page_section .search_input_group input {
        height: 44px;
        font-size: var(--fs_14);
    }

    .blog_list_page_section .search_icon {
        padding-right: 8px;
    }
}


.blog_detail_page_section {
    padding: 100px 0;
    background-color: var(--bg_color_3);
}

.blog_detail_page_section .blog_detail_wrapper {
    padding-bottom: 10px;
}

.blog_detail_page_section .blog_detail_image {
    margin-bottom: 36px;
    overflow: hidden;
    background-color: var(--bg_color_4);
}

.blog_detail_page_section .blog_detail_image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.blog_detail_page_section .blog_detail_header {
    margin: 0 auto 25px auto;
}

.blog_detail_page_section .blog_detail_date {
    margin: 0 0 10px;
    font-family: var(--Maison_Neue_Mono);
    font-size: var(--fs_14);
    line-height: 1.5;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--text_color_2);
}

.blog_detail_page_section .blog_detail_title {
    margin: 0;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_42);
    line-height: 1.22;
    color: var(--text_color_1);
    font-weight: 400;
}

.blog_detail_page_section .content_area {
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_2);
}

.blog_detail_page_section .content_area h1,
.blog_detail_page_section .content_area .content_h1 {
    margin: 0 0 20px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_42);
    line-height: 1.3;
    color: var(--text_color_1);
}

.blog_detail_page_section .content_area h2,
.blog_detail_page_section .content_area .content_h2 {
    margin: 34px 0 14px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_28);
    line-height: 1.35;
    color: var(--text_color_1);
}

.blog_detail_page_section .content_area h3,
.blog_detail_page_section .content_area .content_h3 {
    margin: 28px 0 12px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_24);
    line-height: 1.4;
    color: var(--text_color_1);
}

.blog_detail_page_section .content_area h4,
.blog_detail_page_section .content_area .content_h4 {
    margin: 24px 0 10px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_22);
    line-height: 1.4;
    color: var(--text_color_1);
}

.blog_detail_page_section .content_area h5,
.blog_detail_page_section .content_area .content_h5 {
    margin: 20px 0 10px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_20);
    line-height: 1.4;
    color: var(--text_color_1);
}

.blog_detail_page_section .content_area h6,
.blog_detail_page_section .content_area .content_h6 {
    margin: 20px 0 10px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_18);
    line-height: 1.4;
    color: var(--text_color_1);
}

.blog_detail_page_section .content_area p,
.blog_detail_page_section .content_area .content_p {
    margin: 0 0 20px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    line-height: 1.6;
    color: var(--text_color_2);
}

.blog_detail_page_section .content_area span,
.blog_detail_page_section .content_area .content_span {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    line-height: 1.6;
    color: var(--text_color_2);
}

.blog_detail_page_section .content_area a,
.blog_detail_page_section .content_area .content_link {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    line-height: 1.8;
    color: var(--text_color_1);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.blog_detail_page_section .content_area a:hover,
.blog_detail_page_section .content_area .content_link:hover {
    opacity: 0.7;
}

.blog_detail_page_section .content_area ul,
.blog_detail_page_section .content_area .content_ul,
.blog_detail_page_section .content_area ol,
.blog_detail_page_section .content_area .content_ol {
    margin: 0 0 22px;
    padding-left: 22px;
}

.blog_detail_page_section .content_area ul li,
.blog_detail_page_section .content_area .content_ul li,
.blog_detail_page_section .content_area ol li,
.blog_detail_page_section .content_area .content_ol li {
    margin-bottom: 10px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    line-height: 1.6;
    color: var(--text_color_2);
}

.blog_detail_page_section .content_area img,
.blog_detail_page_section .content_area .content_image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
}

.blog_detail_page_section .content_area blockquote,
.blog_detail_page_section .content_area .content_blockquote {
    margin: 30px 0;
    padding: 24px 26px;
    border-left: 2px solid var(--bg_color_1);
    background-color: #faf8f7;
    font-family: var(--Maison_Neue_Light);
    font-size: var(--fs_18);
    line-height: 1.9;
    color: var(--text_color_2);
}

.blog_detail_page_section .content_area table,
.blog_detail_page_section .content_area .content_table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.blog_detail_page_section .content_area table th,
.blog_detail_page_section .content_area table td,
.blog_detail_page_section .content_area .content_table th,
.blog_detail_page_section .content_area .content_table td {
    padding: 14px 16px;
    border: 1px solid #dddddd;
    text-align: left;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    color: var(--text_color_2);
}

.blog_detail_page_section .content_area table th,
.blog_detail_page_section .content_area .content_table th {
    background-color: #faf8f7;
    color: var(--text_color_1);
}

@media only screen and (max-width: 992px) {
    .blog_detail_page_section {
        padding: 70px 0;
    }

    .blog_detail_page_section .blog_detail_image img {
        height: 420px;
    }

    .blog_detail_page_section .blog_detail_title {
        font-size: var(--fs_34);
    }

    .blog_detail_page_section .content_area h1,
    .blog_detail_page_section .content_area .content_h1 {
        font-size: var(--fs_34);
    }

    .blog_detail_page_section .content_area h2,
    .blog_detail_page_section .content_area .content_h2 {
        font-size: var(--fs_24);
    }

    .blog_detail_page_section .content_area h3,
    .blog_detail_page_section .content_area .content_h3 {
        font-size: var(--fs_22);
    }
}

@media only screen and (max-width: 768px) {
    .blog_detail_page_section {
        padding: 55px 0;
    }

    .blog_detail_page_section .blog_detail_image {
        margin-bottom: 26px;
    }

    .blog_detail_page_section .blog_detail_image img {
        height: 300px;
    }

    .blog_detail_page_section .blog_detail_header {
        margin-bottom: 22px;
    }

    .blog_detail_page_section .blog_detail_title {
        font-size: var(--fs_26);
    }

    .blog_detail_page_section .blog_detail_date {
        font-size: var(--fs_12);
    }

    .blog_detail_page_section .content_area h1,
    .blog_detail_page_section .content_area .content_h1 {
        font-size: var(--fs_28);
    }

    .blog_detail_page_section .content_area h2,
    .blog_detail_page_section .content_area .content_h2 {
        font-size: var(--fs_20);
    }

    .blog_detail_page_section .content_area h3,
    .blog_detail_page_section .content_area .content_h3,
    .blog_detail_page_section .content_area h4,
    .blog_detail_page_section .content_area .content_h4,
    .blog_detail_page_section .content_area h5,
    .blog_detail_page_section .content_area .content_h5 {
        font-size: var(--fs_18);
    }

    .blog_detail_page_section .content_area h6,
    .blog_detail_page_section .content_area .content_h6,
    .blog_detail_page_section .content_area p,
    .blog_detail_page_section .content_area .content_p,
    .blog_detail_page_section .content_area span,
    .blog_detail_page_section .content_area .content_span,
    .blog_detail_page_section .content_area a,
    .blog_detail_page_section .content_area .content_link,
    .blog_detail_page_section .content_area ul li,
    .blog_detail_page_section .content_area .content_ul li,
    .blog_detail_page_section .content_area ol li,
    .blog_detail_page_section .content_area .content_ol li {
        font-size: var(--fs_14);
    }

    .blog_detail_page_section .content_area blockquote,
    .blog_detail_page_section .content_area .content_blockquote {
        padding: 16px 18px;
        font-size: var(--fs_16);
    }
}

.shipping_policy_second_section a {
    text-decoration: none;
    color: var(--text_color_1);
    transition: color 0.3s ease;
}

.shipping_policy_second_section a:hover {
    font-weight: 600;
}

/* .blog_detail_page_section {
    padding: 100px 0;
    background-color: var(--bg_color_3);
}

.blog_detail_page_section .blog_detail_wrapper {
    padding-bottom: 25px;
    border-bottom: 1px solid #E4E1E0;
}

.blog_detail_page_section .blog_detail_header {
    margin-bottom: 10px;
}

.blog_detail_page_section .blog_detail_title {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_32);
    color: var(--text_color_1);
}

.blog_detail_page_section .blog_detail_date {
    margin: 4px 0;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    line-height: 1.6;
    color: var(--text_color_4);
}

.blog_detail_page_section .blog_detail_image {
    margin-bottom: 40px;
    overflow: hidden;
    background-color: var(--bg_color_4);
}

.blog_detail_page_section .blog_detail_image img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    display: block;
}

.blog_detail_page_section .content_area {
    font-family: var(--Maison_Neue_Book);
    color: var(--text_color_2);
}

.blog_detail_page_section .content_area h1,
.blog_detail_page_section .content_area .content_h1 {
    margin: 0 0 20px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_42);
    line-height: 1.3;
    color: var(--text_color_1);
}

.blog_detail_page_section .content_area h2,
.blog_detail_page_section .content_area .content_h2 {
    margin: 0 0 10px 0;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_28);
    color: var(--text_color_1);
}

.blog_detail_page_section .content_area h3,
.blog_detail_page_section .content_area .content_h3 {
    margin: 0 0 10px 0;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_24);
    color: var(--text_color_1);
}

.blog_detail_page_section .content_area h4,
.blog_detail_page_section .content_area .content_h4 {
    margin: 0 0 10px 0;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_22);
    color: var(--text_color_1);
}

.blog_detail_page_section .content_area h5,
.blog_detail_page_section .content_area .content_h5 {
    margin: 0 0 10px 0;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_20);
    color: var(--text_color_1);
}

.blog_detail_page_section .content_area h6,
.blog_detail_page_section .content_area .content_h6 {
    margin: 0 0 10px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_18);
    color: var(--text_color_1);
}

.blog_detail_page_section .content_area p,
.blog_detail_page_section .content_area .content_p {
    margin: 0 0 18px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    color: var(--text_color_2);
}

.blog_detail_page_section .content_area span,
.blog_detail_page_section .content_area .content_span {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    line-height: 1.8;
    color: var(--text_color_2);
}

.blog_detail_page_section .content_area a,
.blog_detail_page_section .content_area .content_link {
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    line-height: 1.8;
    color: var(--text_color_1);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.blog_detail_page_section .content_area a:hover,
.blog_detail_page_section .content_area .content_link:hover {
    opacity: 0.7;
}

.blog_detail_page_section .content_area ul,
.blog_detail_page_section .content_area .content_ul {
    margin: 0 0 20px;
    padding-left: 22px;
}

.blog_detail_page_section .content_area ol,
.blog_detail_page_section .content_area .content_ol {
    margin: 0 0 20px;
    padding-left: 22px;
}

.blog_detail_page_section .content_area ul li,
.blog_detail_page_section .content_area .content_ul li,
.blog_detail_page_section .content_area ol li,
.blog_detail_page_section .content_area .content_ol li {
    margin-bottom: 10px;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_16);
    line-height: 1.8;
    color: var(--text_color_2);
}

.blog_detail_page_section .content_area img,
.blog_detail_page_section .content_area .content_image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
}

.blog_detail_page_section .content_area blockquote,
.blog_detail_page_section .content_area .content_blockquote {
    margin: 25px 0;
    padding: 20px 24px;
    border-left: 3px solid var(--bg_color_1);
    background-color: var(--bg_color_3);
    font-family: var(--Maison_Neue_Light);
    font-size: var(--fs_18);
    line-height: 1.8;
    color: var(--text_color_2);
}

.blog_detail_page_section .content_area table,
.blog_detail_page_section .content_area .content_table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
}

.blog_detail_page_section .content_area table th,
.blog_detail_page_section .content_area table td,
.blog_detail_page_section .content_area .content_table th,
.blog_detail_page_section .content_area .content_table td {
    padding: 14px 16px;
    border: 1px solid #dddddd;
    text-align: left;
    font-family: var(--Maison_Neue_Book);
    font-size: var(--fs_14);
    color: var(--text_color_2);
}

.blog_detail_page_section .content_area table th,
.blog_detail_page_section .content_area .content_table th {
    font-family: var(--Maison_Neue_Book);
    background-color: var(--bg_color_3);
    color: var(--text_color_1);
}

@media only screen and (max-width: 992px) {
    .blog_detail_page_section {
        padding: 60px 0;
    }

    .blog_detail_page_section .blog_detail_title {
        font-size: var(--fs_28);
    }

    .blog_detail_page_section .content_area h1,
    .blog_detail_page_section .content_area .content_h1 {
        font-size: var(--fs_34);
    }

    .blog_detail_page_section .content_area h2,
    .blog_detail_page_section .content_area .content_h2 {
        font-size: var(--fs_24);
    }

    .blog_detail_page_section .content_area h3,
    .blog_detail_page_section .content_area .content_h3 {
        font-size: var(--fs_24);
    }
}

@media only screen and (max-width: 768px) {
    .blog_detail_page_section {
        padding: 50px 0;
    }

    .blog_detail_page_section .blog_detail_title {
        font-size: var(--fs_24);
    }

    .blog_detail_page_section .blog_detail_date {
        font-size: var(--fs_14);
    }

    .blog_detail_page_section .blog_detail_image {
        margin-bottom: 30px;
    }

    .blog_detail_page_section .blog_detail_image img {
        max-height: 300px;
    }

    .blog_detail_page_section .content_area h1,
    .blog_detail_page_section .content_area .content_h1 {
        font-size: var(--fs_28);
    }

    .blog_detail_page_section .content_area h2,
    .blog_detail_page_section .content_area .content_h2 {
        font-size: var(--fs_20);
    }

    .blog_detail_page_section .content_area h3,
    .blog_detail_page_section .content_area .content_h3 {
        font-size: var(--fs_20);
    }

    .blog_detail_page_section .content_area h4,
    .blog_detail_page_section .content_area .content_h4 {
        font-size: var(--fs_18);
    }

    .blog_detail_page_section .content_area h5,
    .blog_detail_page_section .content_area .content_h5 {
        font-size: var(--fs_18);
    }

    .blog_detail_page_section .content_area h6,
    .blog_detail_page_section .content_area .content_h6 {
        font-size: var(--fs_16);
    }

    .blog_detail_page_section .content_area p,
    .blog_detail_page_section .content_area .content_p,
    .blog_detail_page_section .content_area span,
    .blog_detail_page_section .content_area .content_span,
    .blog_detail_page_section .content_area a,
    .blog_detail_page_section .content_area .content_link,
    .blog_detail_page_section .content_area ul li,
    .blog_detail_page_section .content_area .content_ul li,
    .blog_detail_page_section .content_area ol li,
    .blog_detail_page_section .content_area .content_ol li {
        font-size: var(--fs_14);
    }

    .blog_detail_page_section .content_area blockquote,
    .blog_detail_page_section .content_area .content_blockquote {
        padding: 16px 18px;
        font-size: var(--fs_16);
    }
} */