* {
    padding: 0;
    margin: 0;
    /* overflow-x: hidden !important; */
    box-sizing: border-box;
}

@font-face {
    font-family: "inter_regular";
    src: url(../font/zen/ZenPrithvi.ttf);
}

@font-face {
    font-family: "inter_medium";
    src: url(../font/zen/ZenPrithvi.ttf);
}

@font-face {
    font-family: "inter_semibold";
    src: url(../font/zen/ZenPrithvi.ttf);
}

@font-face {
    font-family: "inter_bold";
    src: url(../font/zen/ZenPrithviBold.ttf);
}

/* html,
body {
    overflow-x: hidden !important;
} */

:root {
    --inter_regular: "inter_regular";
    --inter_medium: "inter_medium";
    --inter_semibold: "inter_semibold";
    --inter_bold: "inter_bold";

    --bg_color_1: #01ADCE;
    --bg_color_2: #078C00;
    --bg_color_3: #2D2D2D;
    --bg_color_4: #B1B1B1;
    --bg_color_5: #A23167;
    --bg_color_6: #FFFFFF;
    --bg_color_7: #CCCCCC;
    --bg_color_8: #F9F9F9;
    --bg_color_9: #0494b1;

    --text_color_1: #01ADCE;
    --text_color_2: #078C00;
    --text_color_3: #2D2D2D;
    --text_color_4: #B1B1B1;
    --text_color_5: #A23167;
    --text_color_6: #FFFFFF;
    --text_color_7: #CCCCCC;
    --text_color_8: #F9F9F9;

}

.custom-header {
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    padding: 10px 0;
    position: relative;
    z-index: 1000;
}

.custom-header .nav-link {
    font-size: 22px;
    color: var(--text_color_3);
    font-family: var(--inter_medium);
    padding: 0 20px;
    text-decoration: none;
    text-wrap-mode: nowrap;
}

.custom-header .nav-link:hover {
    color: var(--bg_color_1);
}

.custom-header .NavMenu .main_search_field {
    position: relative;
    border-radius: 25px;
    font-size: 14px;
    border: 1px solid var(--text_color_7);
    color: var(--text_color_4);
    font-family: var(--inter_regular);
    padding: 10px 20px 10px 30px;
    text-wrap-mode: nowrap;
}

.custom-header .NavMenu .main_search_field .toggle {
    margin-left: 10px;
}

.custom-header .NavMenu .main_search_field .search-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: var(--text_color_7);
    font-size: 18px;
    pointer-events: none;
    padding: 10px 10px 10px 15px;
}

.custom-header .btn-info {
    background: var(--bg_color_1);
    border: none;
    padding: 10px 20px;
    border-radius: 70px;
    font-size: 22px;
    color: var(--text_color_6);
    font-family: var(--inter_regular);
    transition: background-color 0.3s ease, color 0.3s ease;
    text-wrap-mode: nowrap;
}

.custom-header .btn-info:hover {
    background-color: var(--bg_color_9);
}

.custom-header .navbar-toggler {
    background: none;
    border: none;
    padding: 0;
}

.custom-header .navbar-toggler i {
    font-size: 30px;
    color: var(--bg_color_1);
}

.custom-header .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg_color_6);
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 9999;
    padding: 70px 20px 30px;
    overflow-y: auto;
    font-family: var(--inter_regular);
}

.custom-header .mobile-menu.active {
    transform: translateY(0);
}

.custom-header .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.custom-header .mobile-menu ul li {
    margin: 15px 0;
}

.custom-header .mobile-menu ul li ul li {
    margin: 0 0;
}

.custom-header .mobile-menu ul li a {
    text-decoration: none;
    color: var(--text_color_3);
    font-size: 18px;
    font-weight: 500;
}

.custom-header .mobile-menu form {
    margin-top: 20px;
}

.custom-header .mobile-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 36px;
    color: var(--text_color_3);
}

.custom-header .mobile-menu ul li input[type="checkbox"] {
    display: none;
}

.custom-header .mobile-menu ul li input[type="checkbox"]:checked+ul {
    display: block;
}

.custom-header .mobile-menu ul li ul.mobile-submenu {
    display: none;
    background: #E5E5E5;
    border-radius: 5px;
    text-align: left;
    margin-top: 20px;
    /* height: 220px;
    overflow: scroll;
    background: brown; */
}

.custom-header .mobile-menu ul li ul.mobile-submenu .mobile-submenu {
    margin-top: 0;
    height: 220px;
    overflow: scroll;
    background: #F3F3F3;
}

.custom-header .mobile-menu ul li ul.mobile-submenu li a {
    display: block;
    padding: 8px 12px;
    font-size: 18px;
    color: var(--text_color_3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.custom-header .mobile-menu ul li ul.mobile-submenu .submenu-search {
    padding: 8px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.custom-header .mobile-menu ul li ul.mobile-submenu .submenu-search-field {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--text_color_7);
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    color: var(--text_color_3);
    text-align: left;
}

.custom-header .mobile-menu ul li ul.mobile-submenu.author_part a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.custom-header .mobile-menu ul li ul.mobile-submenu.author_part .author_image_icon {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: block;
}

.custom-header .mobile-menu .main_search_field {
    display: flex;
    align-items: center;
    border: 1px solid #CCCCCC;
    padding: 10px 10px 10px 15px;
    border-radius: 30px;
}

.custom-header .mobile-menu .main_search_field .toggle {
    margin-left: 10px;
    margin-right: 12px;
}

.custom-header .mobile-menu ul li>a label.toggle {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: left;
    padding-right: 25px;
}

.custom-header .mobile-menu ul li>a label.toggle::after {
    /* content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 25px;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--text_color_3); */

    content: "\f285";
    font-family: "bootstrap-icons";
    font-size: 15px;
    position: absolute;
    right: 0;
    top: 0;
    color: var(--text_color_3);
}

.custom-header .mobile-menu ul li input[type="checkbox"]:checked+ul {
    display: block;
}

.custom-header .mobile-menu ul li input[type="checkbox"]:checked~a label.toggle::after {
    content: "−";
    transform: rotate(180deg);
}

.custom-header .NavMenu {
    flex: 10;
    list-style: none;
    position: relative;
    display: flex;
    justify-content: start;
    margin-bottom: 0;
    padding-left: 0;
}

.custom-header .NavMenu li {
    display: inline-block;
}

.custom-header .NavMenu li input[type="checkbox"] {
    display: none;
}

.custom-header .NavMenu li a {
    display: block;
    text-decoration: none;
    position: relative;
    font-size: 22px;
    color: var(--text_color_3);
    font-family: var(--inter_medium);
    padding: 0 20px;
}

.custom-header .NavMenu li a label {
    cursor: pointer;
    appearance: none;
    display: block;
    position: relative;
    margin-bottom: 0;
}

.custom-header .NavMenu li ul a label::after {
    content: "\f285";
    font-family: "bootstrap-icons";
    font-size: 15px;
    position: absolute;
    right: 0;
    top: 0;
    color: var(--text_color_3);
}

.custom-header .NavMenu>li>ul>a label::after {
    right: -15px;
    top: -3px;
}

.custom-header .NavMenu li ul {
    position: absolute;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    min-width: 250px;
    border-bottom: 2px solid var(--bg_color_1);
    top: 170%;
    box-shadow: 0 3px 5px rgb(0 0 0/20%);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    visibility: hidden;
    opacity: 0;
    padding-left: 0;
}

.custom-header .NavMenu li ul li ul {
    min-width: 250px;
}

.custom-header .NavMenu li ul li {
    position: relative;
}

.custom-header .NavMenu li ul li a {
    color: var(--text_color_3);
    padding: 8px 10px;
    display: block;
    border-left: 2px solid transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.custom-header .NavMenu li ul li ul {
    position: absolute;
    left: 100%;
    top: 0;
}

.custom-header .NavMenu li ul .submenu_part {
    max-height: 530px;
    overflow-y: scroll;
}

.custom-header .NavMenu li ul .submenu_part::-webkit-scrollbar {
    display: none;
}

.custom-header .NavMenu ul li .author_part a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.custom-header .NavMenu ul li .author_part .author_image_icon {
    height: 30px;
    width: 30px;
    display: block;
    border-radius: 100%;
}

.submenu-search {
    padding: 8px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.submenu-search-field {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--text_color_7);
    border-radius: 6px;
    font-size: 18px;
    outline: none;
    transition: all 0.3s ease;
    color: var(--text_color_3);
    font-family: var(--inter_regular);
}

.submenu-search-field:focus {
    border-color: var(--bg_color_1);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.homepage_first_section {
    padding: 20px 0 20px 0;
}

.homepage_first_section .main_img {
    width: 100%;
    height: auto;
    /* height: 430px; */
    object-fit: cover;
    cursor: pointer;
}

.homepage_second_section {
    border-bottom: 1px solid var(--bg_color_7);
}

.homepage_second_section .heading_part {
    padding: 20px 0;
}

.homepage_second_section .heading_part h3 {
    font-size: 32px;
    font-family: var(--inter_semibold);
}

.homepage_second_section .new_arrival_product_part .card {
    border: none;
    cursor: pointer;
}

.homepage_second_section .new_arrival_product_part .card .image_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.homepage_second_section .new_arrival_product_part .card .image_wrapper img {
    min-height: 240px;
    max-height: 240px;
    object-fit: contain;
}

.homepage_second_section .new_arrival_product_part .card .card-title {
    font-size: 20px;
    font-family: var(--inter_medium);
    font-weight: bold;
}

.homepage_second_section .new_arrival_product_part .card .card-text {
    font-size: 18px;
    font-family: var(--inter_semibold);
    color: var(--text_color_4);
    margin-bottom: 8px;
    font-weight: bold;
}

.homepage_second_section .new_arrival_product_part .card .card-body .author {
    font-size: 18px;
    font-family: var(--inter_semibold);
    color: var(--text_color_4);
    margin-bottom: 8px;
    font-weight: bold;
}

.homepage_second_section .new_arrival_product_part .card .card-body .book-description {
    font-size: 18px;
    font-family: var(--inter_regular);
    color: var(--text_color_3);
    margin-bottom: 8px;
}

.homepage_second_section .new_arrival_product_part .card .card-body span {
    font-size: 18px !important;
    font-family: var(--inter_semibold);
    color: var(--text_color_3);
    margin-bottom: 8px;
}

.homepage_second_section .new_arrival_product_part .card .price {
    font-size: 20px;
    font-family: var(--inter_semibold);
    color: var(--text_color_3);
}

.homepage_second_section .new_arrival_product_part .col-lg-5th {
    flex: 0 0 20%;
    max-width: 20%;
}

.homepage_second_section .new_arrival_product_part .card .button_wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.homepage_second_section .new_arrival_product_part .card .button_wrapper a {
    flex: 1;
    text-align: center;
    color: var(--text_color_1);
    font-size: 18px;
    font-family: var(--inter_semibold);
    padding: 12px 0;
    text-decoration: none;
}

.homepage_second_section .new_arrival_product_part .card .button_wrapper .addtocart_btn {
    background-color: #E0F1F5;
}

.homepage_second_section .new_arrival_product_part .card .button_wrapper .buynow_btn {
    background-color: #CAEAF1;
}

.homepage_third_section {
    min-height: 68vh;
}

.homepage_third_section .heading_part {
    padding: 25px 0 20px 0;
}

.homepage_third_section .heading_part h3 {
    font-size: 32px;
    font-family: var(--inter_semibold);
}

.homepage_third_section .book_category_card .card {
    border: none;
    background-color: var(--bg_color_8);
    cursor: pointer;
    height: 100%;
}

.homepage_third_section .book_category_card .card .image_wrapper {
    position: relative;
}

.homepage_third_section .book_category_card .card .image_wrapper .book-top-icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.homepage_third_section .book_category_card .card .image_wrapper .book-top-icons .pdf-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text_color_5);
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.homepage_third_section .book_category_card .card .image_wrapper .book-top-icons i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text_color_5);
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.homepage_third_section .book_category_card .card .image_wrapper .book-top-icons i::after {
    content: attr(data-title);
    position: absolute;
    right: 110%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 1);
    color: var(--text_color_5);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--inter_regular);
    font-weight: 100;
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.homepage_third_section .book_category_card .card .image_wrapper .book-top-icons i:hover::after {
    opacity: 1;
}

.homepage_third_section .book_category_card .card .image_wrapper .wishlist-icon.text-danger {
    color: #e63946;
}

/* .homepage_third_section .book_category_card .card .image_wrapper {
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    background: #f8f8f8;
    border-radius: 6px;
    transition: all 0.4s ease;
} */

.homepage_third_section .book_category_card .card .image_wrapper .book-image {
    transition: transform 0.6s ease, filter 0.3s ease;
    transform-origin: left center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.homepage_third_section .book_category_card .card .image_wrapper .book-image img {
    min-height: 240px;
    max-height: 240px;
    object-fit: contain;
    border-radius: 4px;
}

/* .homepage_third_section .book_category_card .card .image_wrapper .book-info {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: var(--inter_semibold);
    border-radius: 4px;
    transition: all 0.6s ease;
}

.homepage_third_section .book_category_card .card .image_wrapper .book-info p {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text_color_6);
} */

.homepage_third_section .book_category_card .card .image_wrapper .book-info span {
    margin-bottom: 8px !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    color: var(--text_color_6) !important;
}

.homepage_third_section .book_category_card .card .image_wrapper:hover .book-info {
    right: 0;
}

.homepage_third_section .book_category_card .card .card-body {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.homepage_third_section .book_category_card .card .card-body .audio_video_part {
    display: flex;
}

.homepage_third_section .book_category_card .card .watch_video_part {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 10px;
    gap: 5px;
    background: linear-gradient(90deg, rgba(162, 49, 103, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 4px;
    margin-left: 16px;
    margin-right: 16px;
    width: 100%;
}

.homepage_third_section .book_category_card .card .watch_video_part .video_icon {
    height: 16px;
    width: 16px;
}

.homepage_third_section .book_category_card .card .watch_video_part p {
    margin-bottom: 0;
    font-family: var(--inter_semibold);
    font-size: 14px;
    color: var(--text_color_5);
}

.homepage_third_section .book_category_card .card .card-title {
    font-size: 20px;
    font-family: var(--inter_medium);
    color: var(--text_color_3);
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    font-weight: bold;
}

.homepage_third_section .book_category_card .card .card-title a {
    font-size: 20px;
    font-family: var(--inter_medium);
    color: var(--text_color_3);
    padding-right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    font-weight: bold;
    text-decoration: none;
}

.homepage_third_section .book_category_card .card .book-info {
    font-size: 18px;
    font-family: var(--inter_regular);
    color: var(--text_color_3);
    margin-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
    font-weight: bold;
}

.homepage_third_section .book_category_card .card .wishlist-icon {
    font-size: 18px;
    color: var(--text_color_3);
    cursor: pointer;
    transition: color 0.3s ease;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.homepage_third_section .book_category_card .card .wishlist-icon.active {
    color: #e63946;
}

.homepage_third_section .book_category_card .card .card-text {
    font-size: 18px;
    font-family: var(--inter_semibold);
    color: var(--text_color_4);
    margin-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
    font-weight: bold;
}

.homepage_third_section .book_category_card .card .card-text a {
    font-size: 18px;
    font-family: var(--inter_semibold);
    color: var(--text_color_4) !important;
    margin-bottom: 8px;
    padding-right: 16px;
    font-weight: bold;
    text-decoration: none;
}

.homepage_third_section .book_category_card .card .book-description {
    font-size: 18px;
    font-family: var(--inter_regular);
    color: var(--text_color_3);
    margin-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
}

.homepage_third_section .book_category_card .card .price {
    font-size: 20px;
    font-family: var(--inter_semibold);
    color: var(--text_color_3);
    margin-top: 10px;
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 5px;
}

.homepage_third_section .book_category_card .card .listen_audio_part {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 10px;
    gap: 5px;
    background: linear-gradient(90deg, rgba(162, 49, 103, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 4px;
    margin-left: 16px;
    width: 100%;
}

.homepage_third_section .book_category_card .card .listen_audio_part p {
    margin-bottom: 0;
    font-family: var(--inter_semibold);
    font-size: 14px;
    color: var(--text_color_5);
}

.homepage_third_section .book_category_card .card .button_wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.homepage_third_section .book_category_card .card .button_wrapper a {
    flex: 1;
    text-align: center;
    color: var(--text_color_1);
    font-size: 18px;
    font-family: var(--inter_semibold);
    padding: 12px 0;
    text-decoration: none;
}

.homepage_third_section .book_category_card .card .button_wrapper .addtocart_btn {
    background-color: #E0F1F5;
}

.homepage_third_section .book_category_card .card .button_wrapper .buynow_btn {
    background-color: #CAEAF1;
}

.homepage_third_section .loadmore_button_part {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.homepage_third_section .loadmore_button_part .loadmore-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--bg_color_1);
    color: var(--text_color_6);
    font-size: 18px;
    font-family: var(--inter_medium);
    border-radius: 70px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.homepage_third_section .loadmore_button_part .loadmore-btn:hover {
    background-color: var(--bg_color_9);
}

.homepage_third_section .loader {
    text-align: center;
    margin: 50px 0 10px 0;
}

.homepage_third_section .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ddd;
    border-top-color: var(--bg_color_1);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
}

.homepage_third_section .book_category_card .card .modal-backdrop.show {
    opacity: 0.95;
    background-color: #111;
}

.video-modal-content {
    background-color: transparent !important;
    border: none;
    box-shadow: none;
    position: relative;
}

.video-modal-content .video_wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background-color: #222;
    border-radius: 8px;
    overflow: hidden;
}

.video-modal-content .video_wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-content .custom-close {
    position: absolute;
    top: -50px;
    right: 12px;
    z-index: 20;
    background: rgb(255, 255, 255);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.video-modal-content .custom-close:hover {
    background: rgba(255, 255, 255, 0.3);
}


@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.homepage_fourth_section {
    padding: 70px 0 100px 0;
}

.homepage_fourth_section .row {
    position: relative;
    text-align: center;
}

.homepage_fourth_section .row .readytofind-image {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.14);
    border-radius: 16px;
    padding: 0;
    object-fit: cover;
}

.homepage_fourth_section .row .readytofind-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 255px;
}

.homepage_fourth_section .row .readytofind-overlay .readytofind-text {
    font-size: 40px;
    font-family: var(--inter_semibold);
    color: var(--text_color_6);
    line-height: 1.3;
}

.homepage_fourth_section .row .readytofind-overlay .join-subtext {
    font-size: 18px;
    font-family: var(--inter_regular);
    color: var(--text_color_6);
    margin-bottom: 30px;
    line-height: 1.3;
}

.homepage_fourth_section .row .readytofind-overlay .readytofind-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--bg_color_1);
    color: var(--text_color_6);
    font-size: 18px;
    font-family: var(--inter_medium);
    border-radius: 70px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.homepage_fourth_section .row .readytofind-overlay .readytofind-btn:hover {
    background-color: var(--bg_color_9);
}

.custom-footer .footer-logo {
    font-family: var(--inter_bold);
    font-size: 22px;
    color: #000;
}

.custom-footer .footer-links li {
    margin-right: 20px;
}

.custom-footer .footer-links li a {
    color: var(--text_color_3);
    font-family: var(--inter_regular);
    text-decoration: none;
    font-size: 22px;
}

.custom-footer .footer-links li a:hover {
    color: var(--bg_color_1);
}

.custom-footer .footer-right .newsletter-label {
    font-family: var(--inter_semibold);
    font-size: 18px;
    color: var(--text_color_3);
    /* padding-left: 155px; */
    text-align: start !important;
}

.custom-footer .footer-input {
    border-radius: 25px;
    font-size: 14px;
    padding: 8px 16px;
    background-color: #F8F8F8;
    border: 1px solid #ddd;
    width: 100%;
    font-family: var(--inter_regular);
}

.custom-footer .footer-input::placeholder {
    font-family: var(--inter_regular);
}

.custom-footer .btn-subscribe {
    background-color: var(--bg_color_1);
    color: var(--text_color_6);
    font-family: var(--inter_regular);
    border: none;
    border-radius: 25px;
    padding: 8px 20px;
}

.custom-footer .footer-copy {
    color: #666;
    font-size: 20px;
    font-family: var(--inter_regular);
}

.custom-footer .footer-bottom-links li {
    margin-left: 20px;
}

.custom-footer .footer-bottom-links li a {
    text-decoration: none;
    font-size: 20px;
    color: #666;
    font-family: var(--inter_regular);
}

.custom-footer .footer-bottom-links li a:hover {
    color: var(--bg_color_1);
}

.audio-modal {
    border-radius: 15px;
    overflow: hidden;
    background: url('../images/modal_bg.png') no-repeat center center;
    background-size: cover;
    position: relative;
}

.audio-modal .custom-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.audio-modal .custom-close img {
    width: 20px;
    height: 20px;
}

.audio-modal .audio_image_wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.audio-modal .audio_image_wrapper .book-cover {
    max-width: 250px;
    border-radius: 8px;
}

.audio-modal .book-title {
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 0;
    font-family: var(--inter_medium);
}

.audio-modal .book-author {
    font-size: 14px;
    color: var(--text_color_4);
    font-family: var(--inter_semibold);
    margin-bottom: 10px;
}

.audio-modal .audio-controls {
    display: flex;
    justify-content: center;
    align-items: center;
}

.audio-modal .audio-controls button {
    background: none;
    border: none;
    font-size: 45px;
    color: var(--text_color_1);
    margin: 0 15px;
    transition: 0.3s;
    display: flex;
}

.audio-modal .audio-controls button:hover {
    color: var(--text_color_1);
}

.audio-modal range-slider {
    --thumb-size: 16px;
    position: relative;
    display: flex;
    align-items: center;
    height: 24px;
    width: 100%;
    min-width: 130px;
    margin: 2px;
    overflow: visible;
    cursor: pointer;
    touch-action: none;
}

.audio-modal range-slider::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(var(--bg_color_5), var(--bg_color_5)) 0 / var(--value-percent, 0) 100% no-repeat #b1dae2 !important;
}

.audio-modal .thumb {
    background-color: var(--bg_color_5);
}

.audio-modal .audio-progress {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.audio-modal .audio-progress .time-info {
    margin-top: 4px;
    padding: 0 2px;
}

.audio-modal .audio-progress .time-info span {
    font-size: 12px;
    color: var(--text_color_3);
    font-family: var(--inter_regular);
}

.audio-modal output {
    display: none;
}

.signup_first_section {
    background: var(--bg_color_6);
    padding: 10px;
}

.signup_first_section .image_part {
    background-image: url("../images/signup_bg.png");
    background-size: cover;
    background-position: center;
    min-height: 97.8vh;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signup_first_section .image_part .image_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 50px auto;
}

.signup_first_section .signup_card {
    background: var(--bg_color_6);
    border-radius: 10px;
    padding: 55px 65px;
    margin: 50px auto;
    text-align: center;
    position: relative;
}

.signup_first_section .signup_card .singup_title_part {
    display: flex;
    justify-content: space-between;
}

.signup_first_section .signup_card .singup_title_part img {
    height: 25px;
    width: 25px;
    position: absolute;
    right: 20px;
    top: 20px;
}

.signup_first_section .signup_card .singup_title_part h2 {
    font-size: 30px;
    color: var(--text_color_3);
    margin-bottom: 30px;
    font-family: var(--inter_medium);
    text-align: left;
}

.signup_first_section .signup_card form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.signup_first_section .signup_card input,
.signup_first_section .signup_card select {
    padding: 12px 15px;
    border: 1px solid #E8E8E8;
    background-color: #F8F7F7;
    border-radius: 10px;
    font-size: 18px;
    outline: none;
    font-family: var(--inter_regular);
    width: 100%;
}

.signup_first_section .signin_btn {
    background-color: #101010;
    color: var(--text_color_6);
    border: none;
    padding: 14px;
    border-radius: 70px;
    font-size: 22px;
    cursor: pointer;
    font-family: var(--inter_medium);
    margin-top: 30px;
}

.signup_first_section .forgot_password {
    text-align: right;
    margin-top: 30px;
    font-family: var(--inter_medium);
    font-size: 20px;
}

.signup_first_section .forgot_password a {
    color: #01ADCE;
    font-size: 22px;
}

.signup_first_section .account {
    text-align: left;
    margin-top: 30px;
    font-family: var(--inter_medium);
    font-size: 14px;
}

.signup_first_section .account a {
    color: #666666;
    font-size: 14px;
    text-decoration: none;
}

.signup_first_section .divider {
    margin: 25px 0 20px;
    position: relative;
    text-align: center;
}

.signup_first_section .divider span {
    padding: 0 10px;
    color: #808080;
    font-size: 18px;
    font-family: var(--inter_regular);
    cursor: pointer;
}

.signup_first_section .social_btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.signup_first_section .social_btns button {
    border: 1px solid #CCCCCC;
    background-color: var(--bg_color_6);
    border-radius: 70px;
    padding: 10px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-family: var(--inter_medium);
}

.signup_first_section .social_btns button:hover {
    background: #f9f9f9;
}

.login_first_section {
    padding: 10px 0;
}

.login_first_section .login_header_part {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login_first_section .login_header_part .sign_up_btn {
    background: #101010;
    border: none;
    padding: 10px 20px;
    border-radius: 70px;
    font-size: 18px;
    color: var(--text_color_6);
    font-family: var(--inter_regular);
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.login_first_section .login_header_part .sign_up_btn:hover {
    background-color: #303030;
}

.login_second_section {
    background: var(--bg_color_6);
    padding: 10px;
    min-height: 68vh;
}

.login_second_section .login_card {
    background: var(--bg_color_6);
    border: none;
    border-radius: 10px;
    padding: 45px 65px 55px 65px;
    margin: 0 auto;
    text-align: center;
}

.login_second_section .login_card h2 {
    font-size: 32px;
    color: var(--text_color_3);
    margin-bottom: 30px;
    font-family: var(--inter_medium);
    text-align: center;
}

.login_second_section .login_card form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login_second_section .login_card input {
    padding: 12px 15px;
    border: 1px solid #E8E8E8;
    background-color: #F8F7F7;
    border-radius: 10px;
    font-size: 22px;
    outline: none;
    font-family: var(--inter_regular);
}

.login_second_section .login_btn {
    background-color: #101010;
    color: var(--text_color_6);
    border: none;
    padding: 14px;
    border-radius: 70px;
    font-size: 22px;
    cursor: pointer;
    font-family: var(--inter_medium);
    margin-top: 5px;
}

.login_second_section .forgot_password {
    margin-top: 30px;
    font-family: var(--inter_medium);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.login_second_section .forgot_password .dontaccount a {
    color: #01ADCE;
    font-size: 20px;
    text-decoration: underline;
}

.login_second_section .forgot_password a {
    color: #666666;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.4s ease;
}

.login_second_section .divider {
    margin: 0 25px 10px 20px;
    position: relative;
    text-align: center;
}

.login_second_section .divider span {
    padding: 0 10px;
    color: #808080;
    font-size: 18px;
    font-family: var(--inter_regular);
    cursor: pointer;
}

.common_social_btn .social_btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.common_social_btn .social_btns a {
    text-decoration: none;
    border: 1px solid #CCCCCC;
    background-color: var(--bg_color_6);
    border-radius: 70px;
    padding: 10px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-family: var(--inter_medium);
    color: var(--text_color_1);
}

.common_social_btn .social_btns a:hover {
    background: #f9f9f9;
}

.detail_first_section {
    background: linear-gradient(90deg, rgba(1, 173, 206, 0.1) 0%, rgba(104, 1, 42, 0.1) 100%);
}

.detail_first_section .breadcrum_part h3 {
    font-size: 50px;
    color: var(--text_color_3);
    font-family: var(--inter_bold);
    padding: 100px 0;
}

.detail_second_section {
    padding: 50px 0 100px 0;
}

.detail_second_section .left_side_filter_option_part {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    /* top: 10px; */
    top: -100%;
    align-self: end;
    height: fit-content;

}

.detail_second_section .left_side_filter_option_part .filter_box {
    background: #fff;
    border: 1px solid #CCCCCC;
    border-radius: 20px;
    padding: 30px;
    max-height: 530px;
    overflow: scroll;
}

.detail_second_section .left_side_filter_option_part .filter_box::-webkit-scrollbar {
    display: none;
}

.detail_second_section .left_side_filter_option_part .filter_box h5 {
    font-size: 20px;
    color: var(--text_color_3);
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-family: var(--inter_semibold);
    border-bottom: 1px solid #CCCCCC;
}

.detail_second_section .left_side_filter_option_part .filter_box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail_second_section .left_side_filter_option_part .filter_box ul li {
    margin-bottom: 10px;
}

.detail_second_section .left_side_filter_option_part .filter_box ul li:last-child {
    margin-bottom: 0;
}

.detail_second_section .left_side_filter_option_part .filter_box label {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #818181;
    gap: 12px;
    cursor: pointer;
    font-family: var(--inter_regular)
}

.detail_second_section .left_side_filter_option_part .filter_box label input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1.5px solid #CCCCCC;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    background-color: var(--bg_color_6);
    transition: 0.2s ease;
}

.detail_second_section .left_side_filter_option_part .filter_box label input[type="checkbox"]:checked {
    background-color: var(--bg_color_1);
    border-color: var(--bg_color_1);
}

.detail_second_section .left_side_filter_option_part .filter_box label input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid var(--bg_color_6);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.detail_second_section .left_side_filter_option_part .filter_box label span {
    color: #818181;
    font-size: 18px;
    font-family: var(--inter_regular);
    margin-left: auto;
}

.detail_second_section .right_side_book_part .book_count {
    font-size: 20px;
    color: var(--text_color_3);
    font-family: var(--inter_semibold);
}

.detail_second_section .right_side_book_part .book_category_card .card {
    border: none;
    background-color: var(--bg_color_8);
    cursor: pointer;
    height: 100%;
}

/* .detail_second_section .right_side_book_part .book_category_card .card .image_wrapper {
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    background: #f8f8f8;
    border-radius: 6px;
    transition: all 0.4s ease;
} */

.detail_second_section .right_side_book_part .book_category_card .card .image_wrapper {
    position: relative;
}

.detail_second_section .right_side_book_part .book_category_card .card .image_wrapper .book-top-icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.detail_second_section .right_side_book_part .book_category_card .card .image_wrapper .book-top-icons i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text_color_5);
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.detail_second_section .right_side_book_part .book_category_card .card .image_wrapper .book-top-icons i::after {
    content: attr(data-title);
    position: absolute;
    right: 110%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 1);
    color: var(--text_color_5);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--inter_regular);
    font-weight: 100;
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.detail_second_section .right_side_book_part .book_category_card .card .image_wrapper .book-top-icons i:hover::after {
    opacity: 1;
}

.detail_second_section .right_side_book_part .book_category_card .card .image_wrapper .wishlist-icon.text-danger {
    color: #e63946;
}

.detail_second_section .right_side_book_part .book_category_card .card .image_wrapper .book-image {
    transition: transform 0.6s ease, filter 0.3s ease;
    transform-origin: left center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.detail_second_section .right_side_book_part .book_category_card .card .image_wrapper .book-image img {
    min-height: 240px;
    max-height: 240px;
    object-fit: contain;
    border-radius: 4px;
}

.detail_second_section .right_side_book_part .book_category_card .card .book-info a {
    text-decoration: none;
}

.detail_second_section .right_side_book_part .book_category_card .card .book-info p {
    font-size: 18px;
    font-family: var(--inter_regular);
    color: var(--text_color_3);
    margin-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
}

/* .detail_second_section .right_side_book_part .book_category_card .card .image_wrapper .book-info {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: var(--inter_semibold);
    border-radius: 4px;
    transition: all 0.6s ease;
}

.detail_second_section .right_side_book_part .book_category_card .card .image_wrapper .book-info p {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.5;
}

.detail_second_section .right_side_book_part .book_category_card .card .image_wrapper:hover .book-info {
    right: 0;
}   

.detail_second_section .right_side_book_part .book_category_card .card .image_wrapper:hover .book-info span {
    margin-bottom: 8px !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    color: var(--text_color_6) !important;
}  */

.detail_second_section .right_side_book_part .book_category_card .card .card-body {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.detail_second_section .right_side_book_part .book_category_card .card .card-title {
    font-size: 20px;
    font-family: var(--inter_medium);
    color: var(--text_color_3);
    padding-left: 16px;
    padding-right: 16px;
    font-weight: bold;
}

.detail_second_section .right_side_book_part .book_category_card .card .card-text {
    font-size: 18px;
    font-family: var(--inter_semibold);
    color: var(--text_color_4);
    margin-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
    font-weight: bold;
}

.detail_second_section .right_side_book_part .book_category_card .card .price {
    font-size: 20px;
    font-family: var(--inter_semibold);
    color: var(--text_color_3);
    margin-top: 10px;
    padding-left: 16px;
    padding-right: 16px;
    font-weight: bold;
}

.detail_second_section .right_side_book_part .book_category_card .card .listen_audio_part {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 10px;
    gap: 5px;
    background: linear-gradient(90deg, rgba(162, 49, 103, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 4px;
    margin-left: 16px;
    margin-right: 16px;
}

.detail_second_section .right_side_book_part .book_category_card .card .listen_audio_part p {
    margin-bottom: 0;
    font-family: var(--inter_semibold);
    font-size: 14px;
    color: var(--text_color_5);
}

.detail_second_section .right_side_book_part .book_category_card .card .button_wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.detail_second_section .right_side_book_part .book_category_card .card .button_wrapper .add_to_cart_btn {
    background-color: #E0F1F5;
}

.detail_second_section .right_side_book_part .book_category_card .card .button_wrapper a {
    flex: 1;
    text-align: center;
    color: var(--text_color_1);
    font-size: 18px;
    font-family: var(--inter_semibold);
    padding: 12px 0;
    text-decoration: none;
}

.detail_second_section .right_side_book_part .book_category_card .card .button_wrapper .addtocart_btn {
    background-color: #E0F1F5;
}

.detail_second_section .right_side_book_part .book_category_card .card .button_wrapper .buynow_btn {
    background-color: #CAEAF1;
}

.book_category_card .no_books_found {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.book_category_card .no_books_found h4 {
    color: var(--text_color_3);
    font-family: var(--inter_semibold);
    font-size: 24px;
}

.book_category_card .no_books_found p {
    color: var(--text_color_3);
    font-family: var(--inter_regular);
    font-size: 18px;
}

.bookdetail_first_section {
    padding: 50px 0 100px 0;
}

.bookdetail_first_section .heading_part h3 {
    font-family: var(--inter_medium);
    font-size: 20px;
    color: var(--text_color_3);
    margin-bottom: 60px;
}

.bookdetail_first_section .heading_part h3 span {
    color: var(--text_color_2);
}

.bookdetail_first_section .image_wrapper {
    background: #f8f8f8;
    border-radius: 6px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bookdetail_first_section .product-slider-container {
    display: flex;
    border: 1px solid #D4D4D4;
    border-radius: 20px;
    /* padding: 30px 20px; */
}

.bookdetail_first_section .product-slider-container .main-swiper {
    height: auto;
    width: 100%;
    /* padding: 30px 20px 30px 0; */
    padding: 30px 20px 30px 20px;
}

.bookdetail_first_section .product-slider-container .main-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.bookdetail_first_section .product-slider-container .main-swiper .swiper-slide .main_img_wrapper {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bookdetail_first_section .product-slider-container .main-swiper .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.bookdetail_first_section .product-slider-container .thumb-swiper {
   padding: 30px 0;
    max-height: 400px;
    overflow-y: scroll;
}

::-webkit-scrollbar {
    display: none;
}

.bookdetail_first_section .product-slider-container .thumb-swiper .swiper-slide {
    height: 85px !important;
    width: 85px !important;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #D4D4D4;
    background-color: #F0F0F0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bookdetail_first_section .product-slider-container .thumb-swiper .swiper-wrapper {
    display: flex;
    flex-direction: column;
}

.bookdetail_first_section .product-slider-container .thumb-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border: 1.5px solid var(--bg_color_1);
}

.bookdetail_first_section .product-slider-container .thumb-swiper .swiper-slide {
    margin-bottom: 10px;
}

.bookdetail_first_section .product-slider-container .thumb-swiper .swiper-slide img {
    height: 100%;
    padding: 10px 5px;
}

.bookdetail_first_section .product-slider-container {
    position: relative;
}

.bookdetail_first_section .product-slider-container .book-top-icons {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.bookdetail_first_section .product-slider-container .book-top-icons i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text_color_5);
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.bookdetail_first_section .product-slider-container .book-top-icons i::after {
    content: attr(data-title);
    position: absolute;
    right: 110%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 1);
    color: var(--text_color_5);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--inter_regular);
    font-weight: 100;
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.bookdetail_first_section .product-slider-container .book-top-icons i:hover::after {
    opacity: 1;
}

.bookdetail_first_section .product-slider-container .wishlist-icon.text-danger {
    color: #e63946;
}

/* .bookdetail_first_section .wishlist-icon {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 22px;
    color: var(--text_color_3);
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.bookdetail_first_section .wishlist-icon.active {
    color: #e63946;
} */

.bookdetail_first_section .right_side_part .main_information_part {
    border: 1px solid #D4D4D4;
    padding: 30px;
    border-radius: 20px 20px 20px 20px;
}

.bookdetail_first_section .right_side_part .info_part .title {
    font-family: var(--inter_medium);
    font-size: 32px;
    color: var(--text_color_3);
    font-weight: bold;
}

.bookdetail_first_section .right_side_part .info_part .author {
    font-family: var(--inter_semibold);
    font-size: 18px;
    color: var(--text_color_4);
    border-bottom: 1px solid #D4D4D4;
    padding-bottom: 10px;
    font-weight: bold;
}

.bookdetail_first_section .right_side_part .info_part .description {
    font-family: var(--inter_regular);
    font-size: 18px;
    color: var(--text_color_4);
}

.bookdetail_first_section .right_side_part .price_part h3 {
    font-family: var(--inter_semibold);
    font-size: 20px;
    color: var(--text_color_3);
    padding: 14px 0;
    border-top: 1px solid #D4D4D4;
    border-bottom: 1px solid #D4D4D4;
    font-weight: bold;
}

.bookdetail_first_section .right_side_part .btn_part {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.bookdetail_first_section .right_side_part .btn_part a {
    display: inline-block;
    text-align: center;
    min-width: 150px;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 50px;
    font-family: var(--inter_medium);
    text-decoration: none;
    transition: all 0.3s ease;
}

.bookdetail_first_section .right_side_part .btn_part .add_to_cart_btn {
    border: 1.5px solid var(--text_color_1);
    color: var(--text_color_1);
    background: transparent;
    width: 100%;
}

.bookdetail_first_section .right_side_part .btn_part .buy_now_btn {
    border: 1.5px solid var(--text_color_1);
    background: var(--text_color_1);
    color: var(--text_color_6);
    width: 100%;
}

.bookdetail_first_section .right_side_part .product_detail_accordion {
    border-radius: 20px;
    background: var(--bg_color_6);
    overflow: hidden;
    border: 1px solid #D4D4D4;
    margin-top: 20px;
    padding: 30px 30px 25px 30px;
}

.bookdetail_first_section .right_side_part .product_detail_accordion .accordion-button {
    background: var(--bg_color_6);
    color: var(--text_color_3);
    font-size: 24px;
    padding: 0 0 10px 0;
    box-shadow: none;
    font-family: var(--inter_medium);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bookdetail_first_section .right_side_part .product_detail_accordion .accordion-button::after {
    content: "";
    background-image: url("../images/accordion_arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    border: 1px solid #D4D4D4;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: inline-block;
    flex-shrink: 0;
}

.bookdetail_first_section .right_side_part .product_detail_accordion .accordion-button[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.bookdetail_first_section .right_side_part .product_detail_accordion .accordion-item {
    border: none;
}

.bookdetail_first_section .right_side_part .product_detail_accordion .accordion-body {
    padding: 0;
    background: var(--bg_color_6);
}

.bookdetail_first_section .right_side_part .product_detail_accordion .accordion-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bookdetail_first_section .right_side_part .product_detail_accordion .accordion-body li:nth-of-type(1) {
    padding-top: 20px;
}

.bookdetail_first_section .right_side_part .product_detail_accordion .accordion-body li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dotted #D4D4D4;
    padding: 10px 0;
    font-size: 18px;
    color: #333;
    font-family: var(--inter_regular);
}

.bookdetail_first_section .right_side_part .product_detail_accordion .accordion-body li:first-child {
    border-top: 1px solid #D4D4D4;
    padding: 10px 0 10px 0;
}

.bookdetail_first_section .right_side_part .product_detail_accordion .accordion-body li:last-child {
    border-bottom: none;
}

.bookdetail_first_section .right_side_part .product_detail_accordion .accordion-body li span {
    color: var(--text_color_4);
    font-size: 18px;
    font-family: var(--inter_regular);
}

.bookdetail_first_section .right_side_part .product_detail_accordion .accordion-body li strong {
    color: var(--text_color_3);
    font-family: var(--inter_semibold);
    font-size: 18px;
}

.bookdetail_first_section .authors_info {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    margin-top: 20px;
    padding: 20px 0;
}

.bookdetail_first_section .authors_info .top_info {
    display: flex;
    align-items: center;
}

.bookdetail_first_section .authors_info .top_info img {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.bookdetail_first_section .authors_info .top_info .author_name {
    font-family: var(--inter_regular);
    font-size: 18px;
    color: var(--text_color_3);
    margin-bottom: 0;
    margin-left: 20px;
}

.bookdetail_first_section .authors_info .top_info .author_name a {
    font-family: var(--inter_regular);
    font-size: 18px;
    color: var(--text_color_3);
    margin-bottom: 0;
    margin-left: 20px;
    text-decoration: none;
}

.bookdetail_first_section .authors_info .bottom_info .desc {
    margin-bottom: 0;
    margin-top: 15px;
}

.bookdetail_second_section {
    padding: 0 0 120px 0;
    position: relative;
}

.bookdetail_second_section .heading_part {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bookdetail_second_section .heading_part h3 {
    font-size: 40px;
    font-family: var(--inter_semibold);
    color: var(--text_color_3);
}

.bookdetail_second_section .heading_part p {
    font-size: var(--fs_16);
    font-family: var(--firasans_regular);
    color: var(--text_color_5);
}

.bookdetail_second_section .product-carousel {
    position: relative;
}

.bookdetail_second_section .product-carousel .owl-nav {
    position: absolute;
    top: 26%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.bookdetail_second_section .product-carousel .owl-nav button.owl-prev,
.bookdetail_second_section .product-carousel .owl-nav button.owl-next {
    background: #F8F8F8;
    border: 1px solid #E8E8E8;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: absolute;
}

.bookdetail_second_section .product-carousel .owl-nav button.owl-prev {
    left: -25px;
}

.bookdetail_second_section .product-carousel .owl-nav button.owl-next {
    right: -25px;
}

.bookdetail_second_section .product-carousel .owl-nav button.owl-prev span,
.bookdetail_second_section .product-carousel .owl-nav button.owl-next span {
    display: none;
}

.bookdetail_second_section .product-carousel .owl-nav button.owl-prev::before,
.bookdetail_second_section .product-carousel .owl-nav button.owl-next::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.bookdetail_second_section .product-carousel .owl-nav button.owl-prev::before {
    background-image: url("../images/prev_icon.svg");
}

.bookdetail_second_section .product-carousel .owl-nav button.owl-next::before {
    background-image: url("../images/next_icon.svg");
}

.bookdetail_second_section .product-carousel .owl-nav button:hover {
    background: var(--bg_color_1);
    border-color: var(--bg_color_1);
}

.bookdetail_second_section .product-carousel .owl-nav button:hover::before {
    filter: brightness(0) invert(1);
}

.bookdetail_second_section .product-carousel .owl-dots {
    display: none;
}

.bookdetail_second_section .heading_part .filter_part {
    display: flex;
    align-items: center;
    justify-content: end;
    cursor: pointer;
}

.bookdetail_second_section .product-carousel .card {
    display: flex;
    border: none;
    border-radius: 16px;
    cursor: pointer;
}

.bookdetail_second_section .owl-carousel .owl-item img {
    width: auto !important;
}

.bookdetail_second_section .product-carousel .card .image_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F8F8F8;
    padding: 20px;
    position: relative;
}

.bookdetail_second_section .qr-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bookdetail_second_section .qr-badge img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.bookdetail_second_section .product-carousel .card .image_wrapper {
    position: relative;
}

.bookdetail_second_section .product-carousel .card .image_wrapper .book-top-icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.bookdetail_second_section .product-carousel .card .image_wrapper .book-top-icons i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text_color_5);
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.bookdetail_second_section .product-carousel .card .image_wrapper .book-top-icons i::after {
    content: attr(data-title);
    position: absolute;
    right: 110%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 1);
    color: var(--text_color_5);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--inter_regular);
    font-weight: 100;
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.bookdetail_second_section .product-carousel .card .image_wrapper .book-top-icons i:hover::after {
    opacity: 1;
}

.bookdetail_second_section .product-carousel .card .image_wrapper .wishlist-icon.text-danger {
    color: #e63946;
}

.bookdetail_second_section .product-carousel .card .image_wrapper .book-img {
    min-height: 240px;
    max-height: 240px;
    object-fit: contain;
}

.bookdetail_second_section .product-carousel .card .card-body {
    padding: 20px 20px 20px 20px;
}

.bookdetail_second_section .product-carousel .card .card-body .card-title {
    font-size: 20px;
    font-family: var(--inter_medium);
}

.bookdetail_second_section .product-carousel .card .card-body .author {
    font-size: 18px;
    font-family: var(--inter_semibold);
    color: var(--text_color_4);
    margin-bottom: 8px;
}

.bookdetail_second_section .product-carousel .card .card-body .price {
    font-size: 18px;
    font-family: var(--inter_semibold);
    color: var(--text_color_3);
    margin-bottom: 0;
}

.checkout_first_section {
    background: linear-gradient(90deg, rgba(1, 173, 206, 0.1) 0%, rgba(104, 1, 42, 0.1) 100%);
}

.checkout_first_section .breadcrum_part h3 {
    font-size: 42px;
    color: var(--text_color_3);
    font-family: var(--inter_bold);
    padding: 100px 0;
}

.checkout_second_section {
    padding: 50px 0;
}

.checkout_second_section .left_side_part .heading_part {
    background-color: var(--bg_color_1);
    padding: 12px 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout_second_section .left_side_part .heading_part h3 {
    font-family: var(--inter_medium);
    font-size: 18px;
    color: var(--text_color_6);
    margin: 0;
}

.checkout_second_section .add_address_btn {
    background: #fff;
    border: none;
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid #E8E8E8;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkout_second_section .cart_items_wrapper {
    margin-top: 20px;
    background-color: #F8F8F8;
    border: 1px solid #CCCCCC;
    padding: 10px 20px;
    border-radius: 10px;
    gap: 30px;
}

/* .checkout_second_section .shipping_address_section {
    margin-top: 20px;
    background-color: #F8F8F8;
    border: 1px solid #CCCCCC;
    padding: 20px;
    border-radius: 10px;
    gap: 30px;
}

.checkout_second_section .shipping_address_section .shipping_title {
    font-family: var(--inter_semibold);
    color: var(--text_color_1);
    font-size: 20px;
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 15px;
} */

.checkout_second_section .address_part {
    display: flex;
    justify-content: space-between;
}

.checkout_second_section .cart_items_wrapper .change_address_part .change_address_btn {
    background-color: var(--bg_color_6);
    color: var(--text_color_1);
    font-family: var(--inter_regular);
    border: 1px solid var(--bg_color_1);
    border-radius: 25px;
    padding: 5px 20px;
}

.checkout_second_section .cart_items_wrapper .user_address {
    font-family: var(--inter_medium);
    font-size: 18px;
    margin-bottom: 0;
    color: var(--text_color_3);
    display: flex;
    align-items: center;
}

.checkout_second_section .cart_items_wrapper .cart_item_card {
    display: flex;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 20px;
    margin-bottom: 15px;
}

.checkout_second_section .cart_items_wrapper .cart_item_card:last-child {
    margin-bottom: 0;
}

.checkout_second_section .cart_items_wrapper .cart_item_card .cart_image {
    background-color: var(--bg_color_6);
    padding: 15px;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
}

.checkout_second_section .cart_items_wrapper .cart_item_card .cart_image img {
    width: 100px;
    height: 120px;
    object-fit: contain;
    border-radius: 6px;
}

.checkout_second_section .cart_items_wrapper .cart_item_card .cart_info {
    flex: 1;
    margin-left: 15px;
}

.checkout_second_section .cart_items_wrapper .cart_item_card .cart_info h5 {
    font-family: var(--inter_medium);
    color: var(--text_color_3);
    font-size: 20px;
    margin-bottom: 5px;
}

.checkout_second_section .cart_items_wrapper .cart_item_card .cart_info .author {
    font-family: var(--inter_regular);
    color: var(--text_color_4);
    font-size: 18px;
    margin-bottom: 5px;
}

.checkout_second_section .cart_items_wrapper .cart_item_card .cart_info .price {
    font-family: var(--inter_bold);
    font-size: 18px;
    color: var(--text_color_3);
    margin: 0;
}

.checkout_second_section .cart_items_wrapper .cart_item_card .cart_qty {
    display: flex;
    align-items: center;
}

.checkout_second_section .cart_items_wrapper .cart_item_card .qty_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.checkout_second_section .cart_items_wrapper .cart_item_card .qty_box button {
    border: none;
    background: none;
}

.checkout_second_section .cart_items_wrapper .cart_item_card .qty_box img {
    width: 16px;
    cursor: pointer;
    border: 1px solid #D4D4D4;
    border-radius: 100%;
    height: 30px;
    width: 30px;
    padding: 5px;
}

.checkout_second_section .cart_items_wrapper .cart_item_card .qty_box .qty_no {
    font-family: var(--inter_medium);
    font-size: 18px;
    color: var(--text_color_3);
    border: 1px solid #D4D4D4;
    padding: 3px 30px;
}

.checkout_second_section .cart_items_wrapper .place_order_btn_wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    background-color: var(--bg_color_6);
    padding: 15px;
}

.checkout_second_section .cart_items_wrapper .edit_cart_btn {
    background-color: var(--bg_color_1);
    color: var(--text_color_6);
    font-family: var(--inter_medium);
    font-size: 18px;
    border: none;
    border-radius: 50px;
    padding: 12px 60px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.checkout_second_section .cart_items_wrapper .edit_cart_btn a {
    text-decoration: none;
    color: var(--text_color_6);
}

.checkout_second_section .cart_items_wrapper .edit_cart_btn:hover {
    background-color: var(--bg_color_9);
}

.checkout_second_section .cart_items_wrapper .place_order_btn {
    background-color: var(--bg_color_1);
    color: var(--text_color_6);
    font-family: var(--inter_medium);
    font-size: 18px;
    border: none;
    border-radius: 50px;
    padding: 12px 60px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.checkout_second_section .cart_items_wrapper .place_order_btn:hover {
    background-color: var(--bg_color_9);
}

.checkout_second_section .right_side_part {
    background-color: #F8F8F8;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
}

.checkout_second_section .apply_coupon_part {
    margin-bottom: 20px;
}

.checkout_second_section .apply_coupon_part .form-control {
    padding: 10px 15px;
    border: 1px solid #E8E8E8;
    background-color: #F8F7F7;
    border-radius: 10px;
    font-size: 18px;
    outline: none;
    font-family: var(--inter_regular);
}

.checkout_second_section .apply_coupon_part .form-control:focus {
    box-shadow: none;
}

.checkout_second_section .apply_coupon_part .btn-applycoupon {
    background-color: var(--bg_color_1);
    color: var(--text_color_6);
    font-family: var(--inter_regular);
    border: none;
    border-radius: 10px;
    padding: 8px 20px;
    transition: background 0.3s ease;
    margin-left: 10px;
}

.checkout_second_section .apply_coupon_part .btn-applycoupon:hover {
    background-color: var(--bg_color_9);
}

.checkout_second_section .right_side_part .heading_part h3 {
    font-family: var(--inter_medium);
    font-size: 18px;
    color: var(--text_color_3);
    border-bottom: 2px solid #CCCCCC;
    padding: 20px;
}

.checkout_second_section .right_side_part .price_details {
    margin-top: 15px;
    padding: 0 20px;
}

.checkout_second_section .right_side_part .price_row,
.checkout_second_section .right_side_part .total_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.checkout_second_section .right_side_part .price_row p {
    margin: 0;
    font-family: var(--inter_medium);
    font-size: 18px;
    color: #818181;
}

.checkout_second_section .right_side_part .total_row p {
    margin: 0;
    font-family: var(--inter_medium);
    font-size: 18px;
    color: #000000;
}

.checkout_second_section .right_side_part .price_row .discount {
    font-weight: var(--inter_medium);
    color: var(--text_color_2);
}

.checkout_second_section .right_side_part .total_row {
    border-top: 1px dashed #CCCCCC;
    padding: 15px 0 0 0;
    font-family: var(--inter_semibold);
    margin: 20px 0 0 0;
}

.checkout_second_section .right_side_part .save_text {
    color: var(--text_color_2);
    font-family: var(--inter_medium);
    font-size: 14px;
    margin-top: 10px;
    border-top: 1px solid #CCCCCC;
    padding: 15px 0 5px 0;
}

.address_first_section {
    padding: 100px 0 150px 0;
}

.address_first_section .address_box .shipping_address_part {
    margin-top: 20px;
    background-color: #F8F8F8;
    border: none;
    padding: 20px;
    border-radius: 10px;
    gap: 30px;
}

.address_first_section .address_box h5 {
    font-size: 20px;
    font-family: var(--inter_semibold);
    color: var(--text_color_3);
}

.address_first_section .address_box .form-control,
.address_first_section .address_box .form-select {
    background: #F8F8F8;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    padding: 10px 20px;
    color: var(--text_color_3);
    font-family: var(--inter_medium);
    font-size: 18px;
}

.address_first_section .address_box .form-control:focus,
.address_first_section .address_box .form-select:focus {
    outline: none;
    box-shadow: none;
}

.address_first_section .address_box textarea.form-control {
    resize: none;
    height: 150px;
    color: var(--text_color_3);
}

.address_first_section .address_box .billing_address_part {
    margin-top: 12px;
    background-color: #F8F8F8;
    border: none;
    padding: 20px;
    border-radius: 10px;
    gap: 30px;
}

.address_first_section .address_box .same-address {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
}

.address_first_section .address_box .same-address input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--bg_color_2);
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #CCCCCC;
    outline: none;
}

.address_first_section .address_box .same-address input[type="checkbox"]:checked {
    background-color: var(--bg_color_2);
    border-color: var(--bg_color_2);
}

.address_first_section .address_box .same-address label {
    font-family: var(--inter_medium);
    font-size: 14px;
    color: var(--bg_color_2);
    cursor: pointer;
    margin-bottom: 0;
    user-select: none;
}

.address_first_section .save-btn {
    background-color: var(--bg_color_1);
    color: var(--bg_color_6);
    border: none;
    border-radius: 25px;
    padding: 10px 40px;
    transition: 0.3s;
    font-family: var(--inter_medium);
    font-size: 18px;
}

.address_first_section .save-btn:hover {
    background-color: var(--bg_color_9);
}

.order_history_first_section {
    background: linear-gradient(90deg, rgba(1, 173, 206, 0.1) 0%, rgba(104, 1, 42, 0.1) 100%);
}

.order_history_first_section .breadcrum_part h3 {
    font-size: 42px;
    color: var(--text_color_3);
    font-family: var(--inter_bold);
    padding: 100px 0;
}

.order_history_second_section {
    padding: 50px 0 100px 0;
}

.order_history_second_section .left_side_filter_option_part {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 10px;
    align-self: flex-start;
    height: fit-content;
}

.order_history_second_section .left_side_filter_option_part .filter_box {
    background: #fff;
    border: 1px solid #CCCCCC;
    border-radius: 20px;
    padding: 30px;
}

.order_history_second_section .left_side_filter_option_part .filter_box h5 {
    font-size: 20px;
    color: var(--text_color_3);
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-family: var(--inter_semibold);
    border-bottom: 1px solid #CCCCCC;
}

.order_history_second_section .left_side_filter_option_part .filter_box .title {
    font-family: var(--inter_medium);
    font-size: 18px;
    color: var(--text_color_3);
    margin-top: 20px;
}

.order_history_second_section .left_side_filter_option_part .filter_box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.order_history_second_section .left_side_filter_option_part .filter_box ul li {
    margin-bottom: 10px;
}

.order_history_second_section .left_side_filter_option_part .filter_box ul li:last-child {
    margin-bottom: 0;
}

.order_history_second_section .left_side_filter_option_part .filter_box label {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #818181;
    gap: 12px;
    cursor: pointer;
    font-family: var(--inter_regular)
}

.order_history_second_section .left_side_filter_option_part .filter_box label input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1.5px solid #CCCCCC;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    background-color: var(--bg_color_6);
    transition: 0.2s ease;
}

.order_history_second_section .left_side_filter_option_part .filter_box label input[type="checkbox"]:checked {
    background-color: var(--bg_color_1);
    border-color: var(--bg_color_1);
}

.order_history_second_section .left_side_filter_option_part .filter_box label input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid var(--bg_color_6);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.order_history_second_section .left_side_filter_option_part .filter_box label span {
    color: #818181;
    font-size: 18px;
    font-family: var(--inter_regular);
    margin-left: auto;
}

.order_history_second_section .right_side_book_part .cart_items_wrapper {
    margin-top: 20px;
    background-color: #F8F8F8;
    border: 1px solid #CCCCCC;
    padding: 20px;
    border-radius: 10px;
    gap: 30px;
}

.order_history_second_section .right_side_book_part .cart_items_wrapper .user_address {
    font-family: var(--inter_medium);
    font-size: 18px;
    margin-bottom: 0;
    color: var(--text_color_3);
}

.order_history_second_section .right_side_book_part .cart_items_wrapper .cart_item_card {
    display: flex;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 20px;
    margin-bottom: 15px;
}

.order_history_second_section .right_side_book_part .cart_items_wrapper .cart_item_card:last-child {
    margin-bottom: 0;
}

.order_history_second_section .right_side_book_part .cart_items_wrapper .cart_item_card .cart_image {
    background-color: var(--bg_color_6);
    padding: 15px;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
}

.order_history_second_section .right_side_book_part .cart_items_wrapper .cart_item_card .cart_image img {
    width: 60px;
    height: 80px;
    object-fit: contain;
    border-radius: 6px;
}

.order_history_second_section .right_side_book_part .cart_items_wrapper .cart_item_card .cart_info {
    flex: 1;
    margin-left: 15px;
}

.order_history_second_section .right_side_book_part .cart_items_wrapper .cart_item_card .cart_info h5 {
    font-family: var(--inter_medium);
    color: var(--text_color_3);
    font-size: 18px;
    margin-bottom: 5px;
}

.order_history_second_section .right_side_book_part .cart_items_wrapper .cart_item_card .cart_info .author {
    font-family: var(--inter_regular);
    color: var(--text_color_4);
    font-size: 18px;
    margin-bottom: 5px;
}

.order_history_second_section .right_side_book_part .cart_items_wrapper .cart_item_card .view_detail_btn_part .view_detail_btn {
    background: var(--bg_color_1);
    border: none;
    padding: 10px 20px;
    border-radius: 70px;
    font-size: 14px;
    color: var(--text_color_6);
    font-family: var(--inter_regular);
    transition: background-color 0.3s ease, color 0.3s ease;
    text-wrap-mode: nowrap;
    text-decoration: none;
}

.order_history_second_section .right_side_book_part .cart_items_wrapper .cart_item_card .view_detail_btn_part .view_detail_btn:hover {
    background-color: var(--bg_color_9);
}

.order_history_second_section .right_side_book_part .order-search-bar {
    display: flex;
    align-items: center;
    background-color: #F8F8F8;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}

.order_history_second_section .right_side_book_part .order-search-bar input {
    flex: 1;
    border: none;
    padding: 15px;
    font-size: 14px;
    color: var(--text_color_4);
    background: transparent;
    outline: none;
    font-family: var(--inter_regular);
}

.order_history_second_section .right_side_book_part .order-search-bar button {
    background: var(--bg_color_1);
    border: 1px solid var(--bg_color_1);
    color: var(--text_color_6);
    font-size: 14px;
    font-family: var(--inter_medium);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.order_history_second_section .right_side_book_part .order-search-bar button img {
    object-fit: contain;
}

.order_history_second_section .right_side_book_part .order-search-bar button:hover {
    background: var(--bg_color_9);
}

.offcanvas.show:not(.hiding) {
    width: max-content;
}

.offcanvas-body .order-detail-box .order_id_box {
    background-color: #F8F8F8;
    border: 1px solid #CCCCCC;
    padding: 15px 20px;
    border-radius: 10px;
    gap: 30px;
    display: flex;
    justify-content: space-between;
}

.offcanvas-body .order-detail-box .order_id_box p:nth-of-type(1) {
    font-family: var(--inter_medium);
    font-size: 20px;
    color: var(--text_color_4);
    margin-bottom: 0;
}

.offcanvas-body .order-detail-box .order_id_box p:nth-of-type(2) {
    font-family: var(--inter_medium);
    font-size: 20px;
    color: var(--text_color_3);
    padding-left: 10px;
    margin-bottom: 0;
}

.offcanvas-body .order-detail-box .order_id_box .delivered {
    font-family: var(--inter_medium) !important;
    font-size: 20px !important;
    color: var(--text_color_2) !important;
    margin-bottom: 0;
}

.offcanvas .offcanvas-body .main_card_part {
    background: transparent;
    padding: 15px;
    margin-top: 25px;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
}

.offcanvas .offcanvas-body .cart_item_card {
    display: flex;
    align-items: center;
}

.offcanvas .offcanvas-body .cart_item_card:last-child {
    margin-bottom: 0;
}

.offcanvas .offcanvas-body .cart_item_card .cart_image {
    background-color: var(--bg_color_6);
    padding: 5px;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
}

.offcanvas .offcanvas-body .cart_item_card .cart_image img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 6px;
}

.offcanvas .offcanvas-body .cart_item_card .cart_info {
    flex: 1;
    margin-left: 15px;
    margin-right: 50px;
}

.offcanvas .offcanvas-body .cart_item_card .cart_info h5 {
    font-family: var(--inter_medium);
    color: var(--text_color_3);
    font-size: 18px;
    margin-bottom: 5px;
}

.offcanvas .offcanvas-body .cart_item_card .cart_info .author {
    font-family: var(--inter_regular);
    color: var(--text_color_4);
    font-size: 14px;
    margin-bottom: 5px;
}

.offcanvas .offcanvas-body .cart_item_card .price_part .price {
    font-family: var(--inter_medium);
    font-size: 20px;
    color: var(--text_color_3);
    margin: 0;
}

.offcanvas .offcanvas-body .summary_content {
    margin-top: 20px;
    border-top: 1px dashed #E8E8E8;
    padding-top: 10px;
}

.offcanvas .offcanvas-body .summary_content .first {
    display: flex;
    justify-content: space-between;
}

.offcanvas .offcanvas-body .summary_content .first p:nth-of-type(1) {
    font-family: var(--inter_regular);
    font-size: 20px;
    color: #818181;
    margin-bottom: 5px;
}

.offcanvas .offcanvas-body .summary_content .first p:nth-of-type(2) {
    font-family: var(--inter_medium);
    font-size: 20px;
    color: var(--text_color_2);
    margin-bottom: 5px;
}

.offcanvas .offcanvas-body .summary_content .second {
    display: flex;
    justify-content: space-between;
}

.offcanvas .offcanvas-body .summary_content .second p:nth-of-type(1) {
    font-family: var(--inter_regular);
    font-size: 20px;
    color: #818181;
    margin-bottom: 0;
}

.offcanvas .offcanvas-body .summary_content .second p:nth-of-type(2) {
    font-family: var(--inter_medium);
    font-size: 20px;
    color: var(--text_color_3);
    margin-bottom: 0;
}

.offcanvas .offcanvas-body .download_invoice_btn_part {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.offcanvas .offcanvas-body .download_invoice_btn_part .download_invoice_btn {
    padding: 12px 14px;
    gap: 8px;
    background: var(--bg_color_6);
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offcanvas .offcanvas-body .download_invoice_btn_part .download_invoice_btn img {
    height: 24px;
    width: 24px;
}

.offcanvas .offcanvas-body .download_invoice_btn_part .download_invoice_btn {
    font-family: var(--inter_regular);
    font-size: 18px;
    color: var(--text_color_3);
}

.otp_first_section {
    background: var(--bg_color_6);
    padding: 10px;
}

.otp_first_section .login_card {
    background: var(--bg_color_6);
    border: none;
    border-radius: 10px;
    padding: 55px 65px;
    margin: 0 auto;
    text-align: center;
}

.otp_first_section .login_card h2 {
    font-size: 26px;
    color: var(--text_color_3);
    margin-bottom: 30px;
    font-family: var(--inter_medium);
    text-align: center;
}

.otp_first_section .login_card form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.otp_first_section .login_card .otp-inputs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 10px;
}

.otp_first_section .login_card .otp-box {
    width: 55px;
    height: 55px;
    text-align: center;
    font-size: 22px;
    border: 1px solid #E8E8E8;
    background-color: #F8F7F7;
    border-radius: 10px;
    font-family: var(--inter_medium);
    outline: none;
    transition: all 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.otp_first_section .login_card input::-webkit-outer-spin-button,
.otp_first_section .login_card input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.otp-box:focus {
    border-color: #101010;
    background-color: #fff;
}

.otp_first_section .login_btn {
    background-color: #101010;
    color: var(--text_color_6);
    border: none;
    padding: 14px;
    border-radius: 70px;
    font-size: 18px;
    cursor: pointer;
    font-family: var(--inter_medium);
    margin-top: 5px;
}

.aboutus_first_section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 200px 0;
}

.aboutus_first_section .breadcrum_part h3 {
    font-size: 50px;
    color: var(--text_color_6);
    font-family: var(--inter_bold);
}

.aboutus_first_section .breadcrum_part p {
    font-size: 22px;
    color: var(--text_color_6);
    font-family: var(--inter_medium);
}

.aboutus_second_section {
    background-image: url(../images/vision_mission_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 0 100px 0;
}

.aboutus_second_section .heading_part {
    border-bottom: 1px solid #E8E8E8;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.aboutus_second_section .heading_part h3 {
    font-family: var(--inter_medium);
    font-size: 64px;
    color: var(--text_color_3);
    line-height: 1;
}

.aboutus_second_section .heading_part p {
    font-family: var(--inter_regular);
    font-size: 22px;
    color: var(--text_color_3);
    line-height: 1.3;
}

.aboutus_second_section .mission_part {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.aboutus_second_section .mission_part .img_part {
    background-color: var(--bg_color_1);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aboutus_second_section .mission_part .img_part img {
    height: 60px;
    width: 60px;
    padding: 10px;
}

.aboutus_second_section .mission_part .text_part h4 {
    font-family: var(--inter_medium);
    font-size: 24px;
    color: var(--text_color_3);
}

.aboutus_second_section .mission_part .text_part p {
    color: #818181;
    font-family: var(--inter_regular);
    font-size: 22px;
    line-height: 1.3;
}

.aboutus_third_section .card {
    background-color: #E6F7FA;
    border: none;
    padding: 20px;
    border-radius: 20px;
}

.aboutus_third_section .card h3 {
    font-family: var(--inter_bold);
    font-size: 26px;
    margin-top: 20px;
}

.aboutus_third_section .card p {
    font-family: var(--inter_regular);
    font-size: 22px;
    color: #818181;
    margin-top: 5px;
    line-height: 1.2;
}

.aboutus_third_section .list_part {
    border-top: 1px solid #CCCCCC;
    padding-top: 20px;
}

.aboutus_third_section .list_part ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.aboutus_third_section .list_part ul li {
    margin-bottom: 5px;
}

.aboutus_third_section .list_part ul li:last-child {
    margin-bottom: 0;
}

.aboutus_third_section .list_part label {
    display: flex;
    align-items: center;
    font-size: 22px;
    color: var(--text_color_3);
    gap: 12px;
    cursor: pointer;
    font-family: var(--inter_medium);
}

.aboutus_third_section .list_part label input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1.5px solid #CCCCCC;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    background-color: var(--bg_color_6);
    transition: 0.2s ease;
}

.aboutus_third_section .list_part label input[type="checkbox"]:checked {
    background-color: var(--bg_color_1);
    border-color: var(--bg_color_1);
}

.aboutus_third_section .list_part label input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid var(--bg_color_6);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.aboutus_fourth_section {
    padding: 150px 0;
}

.aboutus_fourth_section .heading_part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.aboutus_fourth_section .heading_part h3 {
    font-family: var(--inter_semibold);
    color: var(--text_color_3);
    font-size: 40px;
}

.aboutus_fourth_section .heading_part p {
    font-family: var(--inter_regular);
    font-size: 22px;
    color: var(--text_color_4);
}

.aboutus_fourth_section .card {
    border: none;
    border-radius: 16px;
    background-color: #F8F8F8;
    padding: 25px;
}

.aboutus_fourth_section .card img {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
}

.aboutus_fourth_section .card h4 {
    font-family: var(--inter_semibold);
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 0;
}

.faq_first_section {
    background: linear-gradient(90deg, rgba(1, 173, 206, 0.1) 0%, rgba(104, 1, 42, 0.1) 100%);
}

.faq_first_section .breadcrum_part h3 {
    font-size: 50px;
    color: var(--text_color_3);
    font-family: var(--inter_bold);
    padding: 100px 0;
}

.faq_second_section {
    background-color: var(--bg_color_6);
    padding: 70px 0;
    overflow-x: hidden;
}

.faq_second_section .faq_title {
    font-family: var(--inter_semibold);
    font-size: 24px;
    color: var(--text_color_3);
    margin-bottom: 40px;
}

.faq_second_section .accordion-item {
    border: none;
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    border-radius: 0;
    padding: 10px;
}

.faq_second_section .accordion-button {
    background: none;
    box-shadow: none !important;
    font-size: 22px;
    color: var(--text_color_3);
    font-family: var(--inter_regular);
    padding-left: 0;
    padding-right: 0;
}

.faq_second_section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cpath d='M6 0v12M0 6h12' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E");
    transform: rotate(0deg);
}

.faq_second_section .accordion-button:not(.collapsed)::after {
    transform: rotate(45deg);
}

.faq_second_section .accordion-body {
    color: #6c6c6c;
    font-size: 15px;
    padding: 0 0 15px;
}

.faq_second_section .mt_120 {
    margin-top: 120px;
}

.faq_third_section {
    background-color: var(--bg_color_5);
    text-align: center;
    padding: 70px 0;
    margin-bottom: 140px;
}

.faq_third_section .row .cantfind-text {
    font-family: var(--inter_medium);
    font-size: 40px;
    color: var(--text_color_6);
    margin-bottom: 5px;
}

.faq_third_section .row .ourteam-subtext {
    font-family: var(--inter_medium);
    font-size: 24px;
    color: var(--text_color_6);
}

.faq_third_section .row .contact_btn_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.faq_third_section .row .contactus-btn {
    background: var(--bg_color_1);
    border: none;
    padding: 10px 20px;
    border-radius: 70px;
    font-size: 18px;
    color: var(--text_color_6);
    font-family: var(--inter_regular);
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    width: fit-content;
}

.faq_third_section .row .contactus-btn:hover {
    background-color: var(--bg_color_9);
}

.contactus_first_section {
    padding: 100px 0 60px 0;
}

.contactus_first_section .left_side_part h3 {
    font-family: var(--inter_bold);
    font-size: 42px;
    color: var(--text_color_3);
}

.contactus_first_section .left_side_part p {
    font-family: var(--inter_regular);
    font-size: 20px;
    color: var(--text_color_4);
    margin: 15px 0 30px 0;
}

.contactus_first_section .left_side_part .contact_form_part .form-control {
    padding: 12px 15px;
    color: var(--text_color_3);
    border: 1px solid #E8E8E8;
    background-color: #F8F7F7;
    border-radius: 10px;
    font-size: 18px;
    outline: none;
    font-family: var(--inter_regular);
}

.contactus_first_section .left_side_part .contact_form_part .form-control::placeholder {
    color: #B1B1B1;
}

.contactus_first_section .left_side_part .contact_form_part .form-control:focus {
    outline: none;
    box-shadow: none;
}

.contactus_first_section .left_side_part .submit_btn {
    background: var(--bg_color_1);
    border: none;
    padding: 10px 30px;
    border-radius: 70px;
    font-size: 22px;
    color: var(--text_color_6);
    font-family: var(--inter_regular);
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    width: fit-content;
    margin-top: 35px;
}

.contactus_first_section .left_side_part .submit_btn:hover {
    background-color: var(--bg_color_9);
}

.contactus_first_section .right_side_part iframe {
    height: 460px;
    width: 100%;
    border-radius: 20px;
}

.contactus_second_section {
    padding: 0 0 150px 0;
}

.contactus_second_section .contact_card {
    background-color: #F8F8F8;
    border: 1px solid #CCCCCC;
    border-radius: 20px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
}

.contactus_second_section .contact_card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.contactus_second_section .contact_card .icon_part {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #DFF1F4;
    color: var(--text_color_1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contactus_second_section .contact_card .text_part p {
    margin: 0;
    font-size: 22px;
    color: var(--text_color_3);
    font-family: var(--inter_regular);
    line-height: 1.2;
}

@media (max-width: 767px) {
    .contactus_second_section .contact_card {
        justify-content: flex-start;
        padding: 15px;
    }

    .contactus_second_section .contact_card .text_part p {
        font-size: 14px;
    }
}

/* aryan */

.toast {
    min-width: 300px;
    margin-bottom: 10px;
}

.toast-body {
    font-weight: 500;
}

.toast-container .toast:last-child {
    margin-bottom: 0;
}

/* aryan */

.bookdetail_first_section .right_side_part .main_information_part .audio_video_part {
    display: flex;
    /* border-top: 1px solid #D4D4D4; */
    /* padding: 14px 0 14px 0; */
}

.bookdetail_first_section .right_side_part .main_information_part .watch_video_part {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 10px;
    gap: 5px;
    background: linear-gradient(90deg, rgba(162, 49, 103, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 4px;
    margin: 14px 16px;
    width: 100%;
}

.bookdetail_first_section .right_side_part .main_information_part .watch_video_part .video_icon {
    height: 16px;
    width: 16px;
}

.bookdetail_first_section .right_side_part .main_information_part .watch_video_part p {
    margin-bottom: 0;
    font-family: var(--inter_semibold);
    font-size: 14px;
    color: var(--text_color_5);
}

.bookdetail_first_section .right_side_part .main_information_part .listen_audio_part {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 10px;
    gap: 5px;
    background: linear-gradient(90deg, rgba(162, 49, 103, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 4px;
    width: 100%;
    margin: 14px 0;
}

.bookdetail_first_section .right_side_part .main_information_part .listen_audio_part p {
    margin-bottom: 0;
    font-family: var(--inter_semibold);
    font-size: 14px;
    color: var(--text_color_5);
}

.detail_second_section .left_side_filter_option_part .filter_box .form-control {
    border-radius: 10px;
    font-size: 18px;
    padding: 8px 16px;
    background-color: #F8F8F8;
    border: 1px solid #ddd;
    width: 100%;
    font-family: var(--inter_regular);
    margin-bottom: 15px;
}

.detail_second_section .left_side_filter_option_part .filter_box .form-control:focus {
    box-shadow: none;
}

.forgot_password_first_section {
    background: var(--bg_color_6);
    padding: 10px;
    height: 68vh;
}

.forgot_password_first_section .login_card {
    background: var(--bg_color_6);
    border: none;
    border-radius: 10px;
    padding: 55px 65px;
    margin: 0 auto;
    text-align: center;
}

.forgot_password_first_section .login_card h2 {
    font-size: 26px;
    color: var(--text_color_3);
    margin-bottom: 20px;
    font-family: var(--inter_medium);
    text-align: center;
}

.forgot_password_first_section .login_card .text_content {
    color: #666666;
    font-size: 18px;
    font-family: var(--inter_regular);
    text-decoration: none;
    transition: color 0.4s ease;
    margin-bottom: 15px;
}

.forgot_password_first_section .login_card form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.forgot_password_first_section .login_card input {
    padding: 12px 15px;
    border: 1px solid #E8E8E8;
    background-color: #F8F7F7;
    border-radius: 10px;
    font-size: 18px;
    outline: none;
    font-family: var(--inter_regular);
}

.forgot_password_first_section .login_btn {
    background-color: #101010;
    color: var(--text_color_6);
    border: none;
    padding: 14px;
    border-radius: 70px;
    font-size: 18px;
    cursor: pointer;
    font-family: var(--inter_medium);
    margin-top: 5px;
}

.forgot_password_first_section .account_row .account a {
    color: #666666;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: var(--inter_regular);
}

.forgot_password_first_section .account_row .account a:hover {
    color: var(--text_color_3);
}

.forgot_password_first_section .forgot_password {
    margin-top: 30px;
    font-family: var(--inter_medium);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.forgot_password_first_section .forgot_password a {
    color: #666666;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.4s ease;
}

.forgot_password_first_section .forgot_password a:hover {
    color: #000;
}

.forgot_password_first_section .divider {
    margin: 25px 0 20px;
    position: relative;
    text-align: center;
}

.forgot_password_first_section .divider span {
    padding: 0 10px;
    color: #808080;
    font-size: 18px;
    font-family: var(--inter_regular);
    cursor: pointer;
}

.forgot_password_first_section .social_btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.forgot_password_first_section .social_btns button {
    border: 1px solid #CCCCCC;
    background-color: var(--bg_color_6);
    border-radius: 70px;
    padding: 10px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-family: var(--inter_medium);
}

.forgot_password_first_section .social_btns button:hover {
    background: #f9f9f9;
}

.custom-header .dropdown .dropdown-menu .dropdown-item {
    color: var(--text_color_3);
    font-family: var(--inter_regular);
}

.custom-header .dropdown .user_icon_dropdown {
    border: none;
    background-color: transparent;
}

.custom-header .dropdown .user_dropdwon .dropdown-toggle::after {
    margin-left: 0;
}

.combo_list_first_section {
    background: linear-gradient(90deg, rgba(1, 173, 206, 0.1) 0%, rgba(104, 1, 42, 0.1) 100%);
}

.combo_list_first_section .breadcrum_part h3 {
    font-size: 42px;
    color: var(--text_color_3);
    font-family: var(--inter_bold);
    padding: 100px 0;
}

.combo_list_second_section {
    padding: 100px 0;
}

.combo_list_second_section .book_category_card .card {
    border: none;
    background-color: var(--bg_color_8);
    cursor: pointer;
    height: 100%;
}

/* .combo_list_second_section .book_category_card .card .image_wrapper {
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    background: #f8f8f8;
    border-radius: 6px;
    transition: all 0.4s ease;
} */

.combo_list_second_section .book_category_card .card .image_wrapper .book-image {
    transition: transform 0.6s ease, filter 0.3s ease;
    transform-origin: left center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.combo_list_second_section .book_category_card .card .image_wrapper .book-image img {
    min-height: 240px;
    max-height: 240px;
    object-fit: contain;
    border-radius: 4px;
}

/* .combo_list_second_section .book_category_card .card .image_wrapper .book-info {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: var(--inter_semibold);
    border-radius: 4px;
    transition: all 0.6s ease;
}

.combo_list_second_section .book_category_card .card .image_wrapper .book-info p {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text_color_6);
} */

/* .combo_list_second_section .book_category_card .card .image_wrapper:hover .book-info {
    right: 0;
} */

.combo_list_second_section .book_category_card .card .card-body {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.combo_list_second_section .book_category_card .card .card-title {
    font-size: 20px;
    font-family: var(--inter_medium);
    color: var(--text_color_3);
    padding-left: 16px;
    padding-right: 16px;
    font-weight: bold;
}

.combo_list_second_section .book_category_card .card .card-body .book-info {
    font-size: 18px;
    font-family: var(--inter_regular);
    color: var(--text_color_3);
    margin-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
}

.combo_list_second_section .book_category_card .card .image_wrapper {
    position: relative;
}

.combo_list_second_section .book_category_card .card .image_wrapper .book-top-icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.combo_list_second_section .book_category_card .card .image_wrapper .book-top-icons i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text_color_5);
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.combo_list_second_section .book_category_card .card .image_wrapper .book-top-icons i::after {
    content: attr(data-title);
    position: absolute;
    right: 110%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 1);
    color: var(--text_color_5);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--inter_regular);
    font-weight: 100;
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.combo_list_second_section .book_category_card .card .image_wrapper .book-top-icons i:hover::after {
    opacity: 1;
}

.combo_list_second_section .book_category_card .card .image_wrapper .wishlist-icon.text-danger {
    color: #e63946;
}

.combo_list_second_section .book_category_card .card .card-body .book-info p {
    margin-bottom: 0;
}

.combo_list_second_section .book_category_card .card .card-body .book-info p span {
    text-decoration: none;
    font-size: 15px !important;
    color: var(--text_color_3) !important;
    font-family: var(--inter_medium) !important;
    padding-left: 16px;
}

.combo_list_second_section .book_category_card .card .card-body a {
    text-decoration: none;
    font-family: var(--inter_medium);
    font-size: 15px;
}

.combo_list_second_section .book_category_card .card .card-text {
    font-size: 18px;
    font-family: var(--inter_semibold);
    color: var(--text_color_4);
    margin-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
}

.combo_list_second_section .book_category_card .card .price {
    font-size: 20px;
    font-family: var(--inter_semibold);
    color: var(--text_color_3);
    margin-top: 10px;
    padding-left: 16px;
    padding-right: 16px;
}

.combo_list_second_section .book_category_card .card .listen_audio_part {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 10px;
    gap: 5px;
    background: linear-gradient(90deg, rgba(162, 49, 103, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 4px;
    margin-left: 16px;
    margin-right: 16px;
}

.combo_list_second_section .book_category_card .card .listen_audio_part p {
    margin-bottom: 0;
    font-family: var(--inter_semibold);
    font-size: 14px;
    color: var(--text_color_5);
}

.combo_list_second_section .book_category_card .card .button_wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.combo_list_second_section .book_category_card .card .button_wrapper a {
    flex: 1;
    text-align: center;
    color: var(--text_color_1);
    font-size: 18px;
    font-family: var(--inter_semibold);
    padding: 12px 0;
    text-decoration: none;
}

.combo_list_second_section .book_category_card .card .button_wrapper .addtocart_btn {
    background-color: #E0F1F5;
}

.combo_list_second_section .book_category_card .card .button_wrapper .buynow_btn {
    background-color: #CAEAF1;
}

.combo_list_second_section .loadmore_button_part {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.combo_list_second_section .loadmore_button_part .loadmore-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--bg_color_1);
    color: var(--text_color_6);
    font-size: 18px;
    font-family: var(--inter_medium);
    border-radius: 70px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.combo_list_second_section .loadmore_button_part .loadmore-btn:hover {
    background-color: var(--bg_color_9);
}

.combo_list_second_section .loader {
    text-align: center;
    margin: 50px 0 10px 0;
}

.combo_list_second_section .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ddd;
    border-top-color: var(--bg_color_1);
    border-radius: 50%;
    animation: spins 1s linear infinite;
    display: inline-block;
}

@keyframes spins {
    to {
        transform: rotate(360deg);
    }
}

.combodetail_first_section {
    padding: 50px 0 100px 0;
}

.combodetail_first_section .heading_part h3 {
    font-family: var(--inter_medium);
    font-size: 20px;
    color: var(--text_color_3);
    margin-bottom: 60px;
}

.combodetail_first_section .heading_part h3 span {
    color: var(--text_color_2);
}

.combodetail_first_section .product-slider-container {
    display: flex;
    border: 1px solid #D4D4D4;
    border-radius: 20px;
    /* padding: 30px 20px; */
}

.combodetail_first_section .product-slider-container .main-swiper {
    height: auto;
    width: 100%;
    padding: 30px 20px 30px 0;
}

.combodetail_first_section .product-slider-container .main-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.combodetail_first_section .product-slider-container .main-swiper .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.combodetail_first_section .product-slider-container .thumb-swiper {
    padding: 30px 20px;
    height: 410px;
    overflow-y: scroll;
}

.combodetail_first_section .product-slider-container .thumb-swiper::-webkit-scrollbar {
    display: none;
}

.combodetail_first_section .product-slider-container .thumb-swiper .swiper-slide {
    height: 85px !important;
    width: 85px !important;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #D4D4D4;
    background-color: #F0F0F0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.combodetail_first_section .product-slider-container .thumb-swiper .swiper-wrapper {
    display: flex;
    flex-direction: column;
}

.combodetail_first_section .product-slider-container .thumb-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border: 1.5px solid var(--bg_color_1);
}

.combodetail_first_section .product-slider-container .thumb-swiper .swiper-slide {
    margin-bottom: 10px;
}

.combodetail_first_section .product-slider-container .thumb-swiper .swiper-slide img {
    height: 100%;
    padding: 10px 5px;
}

.combodetail_first_section .product-slider-container {
    position: relative;
}

.combodetail_first_section .product-slider-container .book-top-icons {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.combodetail_first_section .product-slider-container .book-top-icons i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text_color_5);
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.combodetail_first_section .product-slider-container .book-top-icons i::after {
    content: attr(data-title);
    position: absolute;
    right: 110%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 1);
    color: var(--text_color_5);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--inter_regular);
    font-weight: 100;
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.combodetail_first_section .product-slider-container .book-top-icons i:hover::after {
    opacity: 1;
}

.combodetail_first_section .product-slider-container .wishlist-icon.text-danger {
    color: #e63946;
}

/* .combodetail_first_section .wishlist-icon {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 22px;
    color: var(--text_color_3);
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.combodetail_first_section .wishlist-icon.active {
    color: #e63946;
} */

.combodetail_first_section .right_side_part .main_information_part {
    border: 1px solid #D4D4D4;
    padding: 30px;
    border-radius: 20px 20px 15px 20px;
}

.combodetail_first_section .right_side_part .info_part .title {
    font-family: var(--inter_medium);
    font-size: 32px;
    color: var(--text_color_3);
    font-family: bold;
}

.combodetail_first_section .right_side_part .info_part .author {
    font-family: var(--inter_semibold);
    font-size: 18px;
    color: var(--text_color_4);
    border-bottom: 1px solid #D4D4D4;
    padding-bottom: 10px;
}

.combodetail_first_section .right_side_part .info_part p {
    font-family: var(--inter_regular);
    font-size: 18px;
    color: var(--text_color_4);
}

.combodetail_first_section .right_side_part .info_part .description {
    font-family: var(--inter_regular);
    font-size: 18px;
    color: var(--text_color_4);
}

.combodetail_first_section .right_side_part .price_part h3 {
    font-family: var(--inter_semibold);
    font-size: 20px;
    color: var(--text_color_3);
    padding: 14px 0;
    border-top: 1px solid #D4D4D4;
    border-bottom: 1px solid #D4D4D4;
    font-weight: bold;
}

.combodetail_first_section .right_side_part .btn_part {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.combodetail_first_section .right_side_part .btn_part a {
    display: inline-block;
    text-align: center;
    min-width: 150px;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 50px;
    font-family: var(--inter_medium);
    text-decoration: none;
    transition: all 0.3s ease;
}

.combodetail_first_section .right_side_part .btn_part .add_to_cart_btn {
    border: 1.5px solid var(--text_color_1);
    color: var(--text_color_1);
    background: transparent;
    width: 100%;
}

.combodetail_first_section .right_side_part .btn_part .buy_now_btn {
    border: 1.5px solid var(--text_color_1);
    background: var(--text_color_1);
    color: var(--text_color_6);
    width: 100%;
}

.combodetail_first_section .right_side_part .product_detail_accordion {
    border-radius: 20px;
    background: var(--bg_color_6);
    overflow: hidden;
    border: 1px solid #D4D4D4;
    margin-top: 20px;
    padding: 30px 30px 25px 30px;
}

.combodetail_first_section .right_side_part .product_detail_accordion .accordion-button {
    background: var(--bg_color_6);
    color: var(--text_color_3);
    font-size: 24px;
    padding: 0 0 10px 0;
    box-shadow: none;
    font-family: var(--inter_medium);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.combodetail_first_section .right_side_part .product_detail_accordion .accordion-button::after {
    content: "";
    background-image: url("../images/accordion_arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    border: 1px solid #D4D4D4;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: inline-block;
    flex-shrink: 0;
}

.combodetail_first_section .right_side_part .product_detail_accordion .accordion-button[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.combodetail_first_section .right_side_part .product_detail_accordion .accordion-item {
    border: none;
}

.combodetail_first_section .right_side_part .product_detail_accordion .accordion-body {
    padding: 0;
    background: var(--bg_color_6);
}

.combodetail_first_section .right_side_part .product_detail_accordion .accordion-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.combodetail_first_section .right_side_part .product_detail_accordion .accordion-body li:nth-of-type(1) {
    padding-top: 20px;
}

.combodetail_first_section .right_side_part .product_detail_accordion .accordion-body li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dotted #D4D4D4;
    padding: 10px 0;
    font-size: 18px;
    color: #333;
    font-family: var(--inter_regular);
}

.combodetail_first_section .right_side_part .product_detail_accordion .accordion-body li:first-child {
    border-top: 1px solid #D4D4D4;
    padding: 10px 0 10px 0;
}

.combodetail_first_section .right_side_part .product_detail_accordion .accordion-body li:last-child {
    border-bottom: none;
}

.combodetail_first_section .right_side_part .product_detail_accordion .accordion-body li span {
    color: var(--text_color_4);
    font-size: 18px;
    font-family: var(--inter_regular);
}

.combodetail_first_section .right_side_part .product_detail_accordion .accordion-body li strong {
    color: var(--text_color_3);
    font-family: var(--inter_semibold);
    font-size: 18px;
}

.combodetail_second_section {
    padding: 0 0 120px 0;
    position: relative;
}

.cart_second_section .main_heading_part h3 {
    font-size: 20px;
    font-family: var(--inter_semibold);
    color: var(--text_color_3);
    padding: 20px 0 20px 0;
}

.combodetail_second_section .heading_part {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.combodetail_second_section .heading_part h3 {
    font-size: 40px;
    font-family: var(--inter_semibold);
    color: var(--text_color_3);
}

.combodetail_second_section .heading_part p {
    font-size: var(--fs_16);
    font-family: var(--firasans_regular);
    color: var(--text_color_5);
}

.combodetail_second_section .product-carousel {
    position: relative;
}

.combodetail_second_section .product-carousel .owl-nav {
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.combodetail_second_section .product-carousel .owl-nav button.owl-prev,
.combodetail_second_section .product-carousel .owl-nav button.owl-next {
    background: #F8F8F8;
    border: 1px solid #E8E8E8;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: absolute;
}

.combodetail_second_section .product-carousel .owl-nav button.owl-prev {
    left: -25px;
}

.combodetail_second_section .product-carousel .owl-nav button.owl-next {
    right: -25px;
}

.combodetail_second_section .product-carousel .owl-nav button.owl-prev span,
.combodetail_second_section .product-carousel .owl-nav button.owl-next span {
    display: none;
}

.combodetail_second_section .product-carousel .owl-nav button.owl-prev::before,
.combodetail_second_section .product-carousel .owl-nav button.owl-next::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.combodetail_second_section .product-carousel .owl-nav button.owl-prev::before {
    background-image: url("../images/prev_icon.svg");
}

.combodetail_second_section .product-carousel .owl-nav button.owl-next::before {
    background-image: url("../images/next_icon.svg");
}

.combodetail_second_section .product-carousel .owl-nav button:hover {
    background: var(--bg_color_1);
    border-color: var(--bg_color_1);
}

.combodetail_second_section .product-carousel .owl-nav button:hover::before {
    filter: brightness(0) invert(1);
}

.combodetail_second_section .product-carousel .owl-dots {
    display: none;
}

.combodetail_second_section .heading_part .filter_part {
    display: flex;
    align-items: center;
    justify-content: end;
    cursor: pointer;
}

.combodetail_second_section .product-carousel .card {
    display: flex;
    border: none;
    border-radius: 16px;
    cursor: pointer;
}

.combodetail_second_section .owl-carousel .owl-item img {
    width: auto !important;
}

.combodetail_second_section .product-carousel .card .image_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F8F8F8;
    padding: 20px;
}

.combodetail_second_section .product-carousel .card .image_wrapper {
    position: relative;
}

.combodetail_second_section .product-carousel .card .image_wrapper .book-top-icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.combodetail_second_section .product-carousel .card .image_wrapper .book-top-icons i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text_color_5);
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.combodetail_second_section .product-carousel .card .image_wrapper .book-top-icons i::after {
    content: attr(data-title);
    position: absolute;
    right: 110%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 1);
    color: var(--text_color_5);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--inter_regular);
    font-weight: 100;
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.combodetail_second_section .product-carousel .card .image_wrapper .book-top-icons i:hover::after {
    opacity: 1;
}

.combodetail_second_section .product-carousel .card .image_wrapper .wishlist-icon.text-danger {
    color: #e63946;
}

.combodetail_second_section .product-carousel .card .image_wrapper img {
    padding: 20px 0;
    height: auto;
}

.combodetail_second_section .product-carousel .card .card-body {
    padding: 20px 20px 20px 20px;
}

.combodetail_second_section .product-carousel .card .card-body .card-title {
    font-size: 20px;
    font-family: var(--inter_medium);
}

.combodetail_second_section .product-carousel .card .card-body .author {
    font-size: 18px;
    font-family: var(--inter_semibold);
    color: var(--text_color_4);
    margin-bottom: 8px;
}

.combodetail_second_section .product-carousel .card .card-body .price {
    font-size: 18px;
    font-family: var(--inter_semibold);
    color: var(--text_color_3);
    margin-bottom: 0;
}

.cart_first_section {
    background: linear-gradient(90deg, rgba(1, 173, 206, 0.1) 0%, rgba(104, 1, 42, 0.1) 100%);
}

.cart_first_section .breadcrum_part h3 {
    font-size: 42px;
    color: var(--text_color_3);
    font-family: var(--inter_bold);
    padding: 100px 0;
}

.cart_second_section {
    padding: 50px 0;
}

.cart_second_section .left_side_part .heading_part {
    background-color: var(--bg_color_1);
    padding: 12px 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart_second_section .left_side_part .heading_part h3 {
    font-family: var(--inter_medium);
    font-size: 18px;
    color: var(--text_color_6);
    margin: 0;
}

.cart_second_section .add_address_btn {
    background: #fff;
    border: none;
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid #E8E8E8;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart_second_section .cart_items_wrapper {
    background-color: #F8F8F8;
    border: 1px solid #CCCCCC;
    padding: 20px;
    border-radius: 10px;
    gap: 30px;
}

.cart_second_section .cart_items_wrapper .user_address {
    font-family: var(--inter_medium);
    font-size: 18px;
    margin-bottom: 0;
    color: var(--text_color_3);
}

.cart_second_section .cart_items_wrapper .cart_item_card {
    display: flex;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 20px;
    margin-bottom: 15px;
}

.cart_second_section .cart_items_wrapper .cart_item_card:last-child {
    margin-bottom: 0;
}

.cart_second_section .cart_items_wrapper .cart_item_card .cart_image {
    background-color: var(--bg_color_6);
    padding: 15px;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
}

.cart_second_section .cart_items_wrapper .cart_item_card .cart_image img {
    width: 100px;
    height: 120px;
    object-fit: contain;
    border-radius: 6px;
}

.cart_second_section .cart_items_wrapper .cart_item_card .cart_info {
    flex: 1;
    margin-left: 15px;
}

.cart_second_section .cart_items_wrapper .cart_item_card .cart_info h5 {
    font-family: var(--inter_medium);
    color: var(--text_color_3);
    font-size: 20px;
    margin-bottom: 5px;
}

.cart_second_section .cart_items_wrapper .cart_item_card .cart_info .author {
    font-family: var(--inter_regular);
    color: var(--text_color_4);
    font-size: 18px;
    margin-bottom: 5px;
}

.cart_second_section .cart_items_wrapper .cart_item_card .cart_info .price {
    font-family: var(--inter_bold);
    font-size: 18px;
    color: var(--text_color_3);
    margin: 0;
}

.cart_second_section .cart_items_wrapper .cart_item_card .cart_qty {
    display: flex;
    align-items: center;
}

.cart_second_section .cart_items_wrapper .cart_item_card .qty_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cart_second_section .cart_items_wrapper .cart_item_card .qty_box button {
    border: none;
    background: none;
}

.cart_second_section .cart_items_wrapper .cart_item_card .qty_box img {
    width: 16px;
    cursor: pointer;
    border: 1px solid #D4D4D4;
    border-radius: 100%;
    height: 30px;
    width: 30px;
    padding: 5px;
}

.cart_second_section .cart_items_wrapper .cart_item_card .qty_box .qty_no {
    font-family: var(--inter_medium);
    font-size: 18px;
    color: var(--text_color_3);
    border: 1px solid #D4D4D4;
    padding: 3px 30px;
}

.cart_second_section .cart_items_wrapper .place_order_btn_wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    background-color: var(--bg_color_6);
    padding: 15px;
}

.cart_second_section .cart_items_wrapper .continue_shopping_btn {
    background-color: var(--bg_color_1);
    color: var(--text_color_6);
    font-family: var(--inter_medium);
    font-size: 18px;
    border: none;
    border-radius: 50px;
    padding: 12px 40px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cart_second_section .cart_items_wrapper .continue_shopping_btn:hover {
    background-color: var(--bg_color_9);
}

.cart_second_section .cart_items_wrapper .place_order_btn {
    background-color: var(--bg_color_1);
    color: var(--text_color_6);
    font-family: var(--inter_medium);
    font-size: 18px;
    border: none;
    border-radius: 50px;
    padding: 12px 40px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cart_second_section .cart_items_wrapper .place_order_btn:hover {
    background-color: var(--bg_color_9);
}

.cart_second_section .right_side_part {
    background-color: #F8F8F8;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
}

.cart_second_section .right_side_part .heading_part h3 {
    font-family: var(--inter_medium);
    font-size: 18px;
    color: var(--text_color_3);
    border-bottom: 2px solid #CCCCCC;
    padding: 20px;
}

.cart_second_section .right_side_part .price_details {
    margin-top: 15px;
    padding: 0 20px;
}

.cart_second_section .right_side_part .price_row,
.cart_second_section .right_side_part .total_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cart_second_section .right_side_part .price_row p {
    margin: 0;
    font-family: var(--inter_medium);
    font-size: 18px;
    color: #818181;
}

.cart_second_section .right_side_part .total_row p {
    margin: 0;
    font-family: var(--inter_medium);
    font-size: 18px;
    color: #000000;
}

.cart_second_section .right_side_part .price_row .discount {
    font-weight: var(--inter_medium);
    color: var(--text_color_2);
}

.cart_second_section .right_side_part .total_row {
    border-top: 1px dashed #CCCCCC;
    padding: 15px 0 0 0;
    font-family: var(--inter_semibold);
    margin: 20px 0 0 0;
}

.cart_second_section .right_side_part .save_text {
    color: var(--text_color_2);
    font-family: var(--inter_medium);
    font-size: 14px;
    margin-top: 10px;
    border-top: 1px solid #CCCCCC;
    padding: 15px 0 5px 0;
}

.cart_second_section .remove_button_part .delete_icon_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #D4D4D4;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 15px;
}

.cart_second_section .remove_button_part .delete_icon_wrapper img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    margin-left: 3px;
}

.cart_second_section .empty-cart p {
    font-family: var(--inter_medium);
    font-size: 18px;
    color: var(--text_color_3);
}

.cart_second_section .empty-cart img {
    height: auto;
    width: 350px;
    margin-bottom: 40px;
}

.cart_second_section .empty-cart .continue_shopping_button {
    background-color: var(--bg_color_1);
    color: var(--text_color_6);
    font-family: var(--inter_regular);
    border: none;
    border-radius: 25px;
    padding: 8px 30px;
    transition: background 0.3s ease;
}

.cart_second_section .empty-cart .continue_shopping_button:hover {
    background-color: var(--bg_color_9);
}



.profile_first_section {
    background: linear-gradient(90deg, rgba(1, 173, 206, 0.1) 0%, rgba(104, 1, 42, 0.1) 100%);
}

.profile_first_section .breadcrum_part h3 {
    font-size: 42px;
    color: var(--text_color_3);
    font-family: var(--inter_bold);
    padding: 100px 0;
}

.profile_second_section {
    padding: 100px 0 150px 0;
}

.profile_second_section .profile_box .shipping_address_part {
    margin-top: 20px;
    background-color: #F8F8F8;
    border: none;
    padding: 20px;
    border-radius: 10px;
    gap: 30px;
}

.profile_second_section .profile_box h5 {
    font-size: 20px;
    font-family: var(--inter_semibold);
    color: var(--text_color_3);
}

.profile_second_section .profile_box .profile_detail_part {
    margin-top: 12px;
    background-color: #F8F8F8;
    border: none;
    padding: 20px;
    border-radius: 10px;
    gap: 30px;
}

.profile_second_section .profile_box .form-control {
    background: #F8F8F8;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    padding: 10px 20px;
    color: var(--text_color_3);
    font-family: var(--inter_medium);
    font-size: 18px;
}

.profile_second_section .profile_box .form-control:focus {
    outline: none;
    box-shadow: none;
}

.profile_second_section .profile_box .form-select {
    background: #F8F8F8;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    padding: 10px 20px;
    color: var(--text_color_3);
    font-family: var(--inter_medium);
    font-size: 18px;
}

.profile_second_section .profile_box .form-select:focus {
    outline: none;
    box-shadow: none;
}

.profile_second_section .profile_box textarea.form-control {
    resize: none;
    height: auto;
    color: var(--text_color_3);
}

.profile_second_section .save-btn {
    background-color: var(--bg_color_1);
    color: var(--bg_color_6);
    border: none;
    border-radius: 25px;
    padding: 10px 40px;
    transition: 0.3s;
    font-family: var(--inter_medium);
    font-size: 18px;
}

.profile_second_section .save-btn:hover {
    background-color: var(--bg_color_9);
}

.wishlist_first_section {
    background: linear-gradient(90deg, rgba(1, 173, 206, 0.1) 0%, rgba(104, 1, 42, 0.1) 100%);
}

.wishlist_first_section .breadcrum_part h3 {
    font-size: 42px;
    color: var(--text_color_3);
    font-family: var(--inter_bold);
    padding: 100px 0;
}

.wishlist_second_section {
    padding: 70px 0 120px 0;
}

.wishlist_second_section .main_heading_part h3 {
    font-size: 20px;
    font-family: var(--inter_semibold);
    color: var(--text_color_3);
    padding: 20px 0 20px 0;
}

.wishlist_second_section .left_side_part .heading_part {
    background-color: var(--bg_color_1);
    padding: 12px 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wishlist_second_section .left_side_part .heading_part h3 {
    font-family: var(--inter_medium);
    font-size: 18px;
    color: var(--text_color_6);
    margin: 0;
}

.wishlist_second_section .add_address_btn {
    background: #fff;
    border: none;
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid #E8E8E8;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wishlist_second_section .cart_items_wrapper {
    background-color: #F8F8F8;
    border: 1px solid #CCCCCC;
    padding: 20px;
    border-radius: 10px;
    gap: 30px;
}

.wishlist_second_section .cart_items_wrapper .user_address {
    font-family: var(--inter_medium);
    font-size: 18px;
    margin-bottom: 0;
    color: var(--text_color_3);
}

.wishlist_second_section .cart_items_wrapper .cart_item_card {
    display: flex;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 20px;
    margin-bottom: 15px;
}

.wishlist_second_section .cart_items_wrapper .cart_item_card:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.wishlist_second_section .cart_items_wrapper .cart_item_card .cart_image {
    background-color: var(--bg_color_6);
    padding: 15px;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
}

.wishlist_second_section .cart_items_wrapper .cart_item_card .cart_image img {
    width: 100px;
    height: 120px;
    object-fit: contain;
    border-radius: 6px;
}

.wishlist_second_section .cart_items_wrapper .cart_item_card .cart_info {
    flex: 1;
    margin-left: 15px;
}

.wishlist_second_section .cart_items_wrapper .cart_item_card .cart_info h5 {
    font-family: var(--inter_medium);
    color: var(--text_color_3);
    font-size: 20px;
    margin-bottom: 5px;
}

.wishlist_second_section .cart_items_wrapper .cart_item_card .cart_info .author {
    font-family: var(--inter_regular);
    color: var(--text_color_4);
    font-size: 18px;
    margin-bottom: 5px;
}

.wishlist_second_section .cart_items_wrapper .cart_item_card .cart_info .price {
    font-family: var(--inter_bold);
    font-size: 18px;
    color: var(--text_color_3);
    margin: 0;
}

.wishlist_second_section .button_wrapper {
    display: flex;
}

.wishlist_second_section .button_wrapper .addtocart_btn {
    background-color: var(--bg_color_1);
    color: var(--text_color_6);
    font-family: var(--inter_regular);
    border: none;
    border-radius: 25px;
    padding: 7px 16px;
    transition: background 0.3s ease;
}

.wishlist_second_section .button_wrapper .addtocart_btn:hover {
    background-color: var(--bg_color_9);
}

.wishlist_second_section .button_wrapper .addtocart_combo_btn {
    background-color: var(--bg_color_1);
    color: var(--text_color_6);
    font-family: var(--inter_regular);
    border: none;
    border-radius: 25px;
    padding: 7px 16px;
    transition: background 0.3s ease;
}

.wishlist_second_section .button_wrapper .addtocart_combo_btn:hover {
    background-color: var(--bg_color_9);
}

.wishlist_second_section .button_wrapper a {
    text-decoration: none;
}

.wishlist_second_section .remove_button_part {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #D4D4D4;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 15px;
}

.wishlist_second_section .remove_button_part img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    margin-left: 3px;
}

.wishlist_second_section .empty-cart p {
    font-family: var(--inter_medium);
    font-size: 18px;
    color: var(--text_color_3);
}

.wishlist_second_section .empty-cart .continue_shopping_button {
    background-color: var(--bg_color_1);
    color: var(--text_color_6);
    font-family: var(--inter_regular);
    border: none;
    border-radius: 25px;
    padding: 8px 30px;
    transition: background 0.3s ease;
}

.wishlist_second_section .empty-cart .continue_shopping_button:hover {
    background-color: var(--bg_color_9);
}

.add_address_first_section {
    background: linear-gradient(90deg, rgba(1, 173, 206, 0.1) 0%, rgba(104, 1, 42, 0.1) 100%);
}

.add_address_first_section .breadcrum_part h3 {
    font-size: 42px;
    color: var(--text_color_3);
    font-family: var(--inter_bold);
    padding: 100px 0;
}

.add_address_second_section {
    padding: 100px 0 150px 0;
}

.add_address_second_section .add_address_box .add_address_detail_part {
    margin-top: 20px;
    background-color: #F8F8F8;
    border: none;
    padding: 20px;
    border-radius: 10px;
    gap: 30px;
}

.add_address_second_section .add_address_box h5 {
    font-size: 20px;
    font-family: var(--inter_semibold);
    color: var(--text_color_3);
}

.add_address_second_section .add_address_box .profile_detail_part {
    margin-top: 12px;
    background-color: #F8F8F8;
    border: none;
    padding: 20px;
    border-radius: 10px;
    gap: 30px;
}

.add_address_second_section .add_address_box .form-control {
    background: #F8F8F8;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    padding: 10px 20px;
    color: var(--text_color_3);
    font-family: var(--inter_medium);
    font-size: 18px;
}

.add_address_second_section .add_address_box .form-control:focus {
    outline: none;
    box-shadow: none;
}

.add_address_second_section .add_address_box .form-select {
    background: #F8F8F8;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    padding: 10px 20px;
    color: var(--text_color_3);
    font-family: var(--inter_medium);
    font-size: 18px;
}

.add_address_second_section .add_address_box .form-select:focus {
    outline: none;
    box-shadow: none;
}

.add_address_second_section .add_address_box textarea.form-control {
    resize: none;
    height: auto;
    color: var(--text_color_3);
}

.add_address_second_section .save-btn {
    background-color: var(--bg_color_1);
    color: var(--bg_color_6);
    border: none;
    border-radius: 25px;
    padding: 10px 40px;
    transition: 0.3s;
    font-family: var(--inter_medium);
    font-size: 18px;
}

.add_address_second_section .save-btn:hover {
    background-color: var(--bg_color_9);
}

.address_list_modal {
    border-radius: 15px;
    padding: 20px;
    position: relative;
}

.address_list_modal .custom-close {
    position: absolute;
    top: -45px;
    right: 0;
    z-index: 10;
    background: rgb(255, 255, 255);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.address_list_modal .modal-body .modal-title {
    margin-bottom: 20px;
    font-family: var(--inter_semibold);
    font-size: 20px;
}

.address_list_modal .address-option {
    display: flex;
    align-items: center;
    background-color: var(--text_color_8);
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.address_list_modal .address-option:hover {
    border: 1px solid var(--text_color_1);
}

.address_list_modal .address-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    min-height: 18px;
    min-width: 18px;
    border: 1.8px solid var(--bg_color_1);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    outline: none;
    margin-right: 10px;
}

.address_list_modal .address-option input[type="radio"]::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: var(--bg_color_1);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease;
}

.address_list_modal .address-option input[type="radio"]:checked::before {
    transform: translate(-50%, -50%) scale(1);
}

.address_list_modal .address-option label {
    font-family: var(--inter_regular);
    color: var(--text_color_3);
}

.address_list_modal .modal-body .save_address_btn_part {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.address_list_modal .modal-body .save_address_btn_part .save_address_btn {
    background-color: var(--bg_color_1);
    color: var(--text_color_6);
    font-family: var(--inter_medium);
    font-size: 18px;
    border: none;
    border-radius: 50px;
    padding: 12px 40px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.address_list_modal .modal-body .save_address_btn_part .save_address_btn:hover {
    background-color: var(--bg_color_9);
}

.homepage_second_section .new_arrival_product_part .card .price_part {
    display: flex;
}

.homepage_second_section .new_arrival_product_part .card .price_part .old_price {
    font-size: 18px;
    font-family: var(--inter_semibold);
    color: var(--text_color_4);
    margin-right: 10px;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.homepage_third_section .book_category_card .card .price_part {
    display: flex;
}

.homepage_third_section .book_category_card .card .price_part .old_price {
    font-size: 18px;
    font-family: var(--inter_semibold);
    color: var(--text_color_4);
    margin-top: 10px;
    padding-left: 16px;
    margin-bottom: 5px;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.bookdetail_first_section .right_side_part .price_part h3 {
    display: flex;
}

.bookdetail_first_section .right_side_part .price_part .old_price {
    font-size: 20px;
    font-family: var(--inter_semibold);
    color: var(--text_color_4);
    padding-right: 16px;
    margin-bottom: 5px;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.cart_second_section .left_side_part .cart_info .old_price {
    font-size: 18px;
    font-family: var(--inter_semibold);
    /* color: var(--text_color_4); */
    padding-right: 16px;
    margin-bottom: 5px;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.checkout_second_section .left_side_part .cart_info .old_price {
    font-size: 18px;
    font-family: var(--inter_semibold);
    /* color: var(--text_color_4); */
    padding-right: 16px;
    margin-bottom: 5px;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.combodetail_first_section .right_side_part .price_part h3 {
    display: flex;
}

.combodetail_first_section .right_side_part .price_part .old_price {
    font-size: 10px;
    font-family: var(--inter_semibold);
    color: var(--text_color_4);
    padding-right: 16px;
    margin-bottom: 5px;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

/* .homepage_second_section .new_arrival_product_part .row {
    margin-left: 0;
    margin-right: 0;
} */

/* .homepage_second_section .new_arrival_product_part [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
} */

/* .homepage_second_section .new_arrival_product_part .card .image_part img,
.homepage_third_section .book_category_card .card .image_wrapper img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
} */

/* .homepage_third_section .book_category_card .card .image_wrapper {
    overflow: hidden;
} */

.custom-header .search-trigger {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.custom-header .search-trigger img {
    height: 20px;
    width: 20px;
}

.custom-header .search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.custom-header .search-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-header .search-overlay form {
    width: 100%;
}

.custom-header .search-overlay .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.custom-header .search-overlay .close-btn:hover {
    transform: rotate(90deg);
}

.custom-header .search-overlay .search-box {
    display: flex;
    width: 60%;
    max-width: 600px;
    background: #fff;
    border-radius: 5px;
    /* overflow: hidden; */
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.custom-header .search-overlay.active .search-box {
    transform: scale(1);
}

.custom-header .search-overlay.active .search-box .search_field_part {
    display: flex;
    justify-content: space-between;
}

.custom-header .search-overlay .search-box input {
    font-family: var(--inter_regular);
}

.custom-header .search-overlay .search-box input::placeholder {
    font-family: var(--inter_regular);
}

.custom-header .search-overlay .search-box input {
    flex: 1;
    padding: 15px;
    font-size: 20px;
    border: none;
    outline: none;
}

.custom-header .search-overlay .search-box button {
    background: var(--bg_color_9);
    border: none;
    color: var(--text_color_6);
    padding: 15px 20px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}

.custom-header .search-overlay .search-box button:hover {
    background: var(--text_color_1);
}

.mobile-menu .mobile_search_field {
    padding: 10px 15px;
    color: var(--text_color_3);
    border: 1px solid #E8E8E8;
    background-color: #F8F7F7;
    border-radius: 5px;
    font-size: 15px;
    outline: none;
    font-family: var(--inter_regular);
    width: 100%;
}




.addresslist_first_section {
    background: linear-gradient(90deg, rgba(1, 173, 206, 0.1) 0%, rgba(104, 1, 42, 0.1) 100%);
}

.addresslist_first_section .breadcrum_part h3 {
    font-size: 42px;
    color: var(--text_color_3);
    font-family: var(--inter_bold);
    padding: 100px 0;
}

.addresslist_second_section {
    padding: 50px 0;
}

.addresslist_second_section .main_heading_part h3 {
    font-size: 20px;
    font-family: var(--inter_semibold);
    color: var(--text_color_3);
    padding: 20px 0 20px 0;
}

.addresslist_second_section .left_side_part .heading_part {
    background-color: var(--bg_color_1);
    padding: 12px 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.addresslist_second_section .left_side_part .heading_part h3 {
    font-family: var(--inter_medium);
    font-size: 18px;
    color: var(--text_color_6);
    margin: 0;
}

.addresslist_second_section .main_heading_part .heading_part {
    background-color: var(--bg_color_1);
    padding: 12px 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.addresslist_second_section .main_heading_part .heading_part h3 {
    font-family: var(--inter_medium);
    font-size: 18px;
    color: var(--text_color_6);
    margin: 0;
    padding: 0;
}

.addresslist_second_section .main_heading_part .add_address_btn {
    background: #fff;
    border: none;
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid #E8E8E8;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* .addresslist_second_section .add_address_btn {
    background: #fff;
    border: none;
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid #E8E8E8;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
} */

.addresslist_second_section .cart_items_wrapper {
    background-color: #F8F8F8;
    border: 1px solid #CCCCCC;
    padding: 20px;
    border-radius: 10px;
    gap: 30px;
}

.addresslist_second_section .cart_items_wrapper .user_address {
    font-family: var(--inter_medium);
    font-size: 18px;
    margin-bottom: 0;
    color: var(--text_color_3);
}

.addresslist_second_section .cart_items_wrapper .cart_item_card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 20px;
    margin-bottom: 15px;
    width: 100%;
}

.addresslist_second_section .cart_items_wrapper .cart_item_card:last-child {
    margin-bottom: 0;
}

.addresslist_second_section .cart_items_wrapper .cart_item_card .cart_info {
    display: flex;
    margin-left: 15px;
}

.addresslist_second_section .cart_items_wrapper .cart_item_card .cart_info .address_line {
    display: flex;
}

.addresslist_second_section .cart_items_wrapper .cart_item_card .cart_info .no {
    font-family: var(--inter_medium);
    font-size: 18px;
    margin-bottom: 0;
    color: var(--text_color_3);
    margin-right: 10px;
}

.addresslist_second_section .cart_items_wrapper .cart_item_card .cart_info h5 {
    font-family: var(--inter_medium);
    font-size: 18px;
    margin-bottom: 0;
    color: var(--text_color_3);
    display: flex;
    align-items: center;
}

.addresslist_second_section .cart_items_wrapper .Back_btn_wrapper {
    display: flex;
    justify-content: end;
    margin-top: 15px;
    background-color: var(--bg_color_6);
    padding: 15px;
}

.addresslist_second_section .cart_items_wrapper .Back_btn {
    background-color: var(--bg_color_1);
    color: var(--text_color_6);
    font-family: var(--inter_medium);
    font-size: 18px;
    border: none;
    border-radius: 50px;
    padding: 12px 40px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.addresslist_second_section .cart_items_wrapper .Back_btn:hover {
    background-color: var(--bg_color_9);
}

.addresslist_second_section .right_side_part {
    background-color: #F8F8F8;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
}

.addresslist_second_section .right_side_part .heading_part h3 {
    font-family: var(--inter_medium);
    font-size: 18px;
    color: var(--text_color_3);
    border-bottom: 2px solid #CCCCCC;
    padding: 20px;
}

.addresslist_second_section .right_side_part .price_details {
    margin-top: 15px;
    padding: 0 20px;
}

.addresslist_second_section .right_side_part .price_row,
.addresslist_second_section .right_side_part .total_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.addresslist_second_section .right_side_part .price_row p {
    margin: 0;
    font-family: var(--inter_medium);
    font-size: 18px;
    color: #818181;
}

.addresslist_second_section .right_side_part .total_row p {
    margin: 0;
    font-family: var(--inter_medium);
    font-size: 18px;
    color: #000000;
}

.addresslist_second_section .right_side_part .price_row .discount {
    font-weight: var(--inter_medium);
    color: var(--text_color_2);
}

.addresslist_second_section .right_side_part .total_row {
    border-top: 1px dashed #CCCCCC;
    padding: 15px 0 0 0;
    font-family: var(--inter_semibold);
    margin: 20px 0 0 0;
}

.addresslist_second_section .right_side_part .save_text {
    color: var(--text_color_2);
    font-family: var(--inter_medium);
    font-size: 14px;
    margin-top: 10px;
    border-top: 1px solid #CCCCCC;
    padding: 15px 0 5px 0;
}

.addresslist_second_section .remove_button_part {
    display: flex;
}

.addresslist_second_section .remove_button_part .edit_icon_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #D4D4D4;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 15px;
}

.addresslist_second_section .remove_button_part .edit_icon_wrapper img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}


.addresslist_second_section .remove_button_part .delete_icon_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #D4D4D4;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 15px;
}

.addresslist_second_section .remove_button_part .delete_icon_wrapper img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    margin-left: 3px;
}

.addresslist_second_section .empty-cart p {
    font-family: var(--inter_medium);
    font-size: 18px;
    color: var(--text_color_3);
}

.addresslist_second_section .empty-cart .continue_shopping_button {
    background-color: var(--bg_color_1);
    color: var(--text_color_6);
    font-family: var(--inter_regular);
    border: none;
    border-radius: 25px;
    padding: 8px 30px;
    transition: background 0.3s ease;
}

.addresslist_second_section .empty-cart .continue_shopping_button:hover {
    background-color: var(--bg_color_9);
}

.scroltop {
    position: fixed;
    bottom: 15px;
    right: 18px;
    background: transparent;
    cursor: pointer;
    z-index: 1000;
    display: none;
    transition: opacity 0.3s ease-in-out;
}

.scroltop img {
    height: 55px;
    max-height: 55px;
}

.pdf-icon {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text_color_5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.bookdetail_second_section .pdf-icon {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text_color_5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

/* ----------------------------------- */
.icon-tooltip {
    position: relative;
    display: inline-block;
}

.tooltip-text {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #A23167;
    /* font-family: "Font Awesome 6 Free"; */
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 10;
}

/* Arrow */
.tooltip-text::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

/* Hover Effect */
.icon-tooltip:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}


.checkout_second_section .left_side_part .note_text {
    font-family: var(--inter_regular);
    font-size: 22px;
}

.checkout_second_section .left_side_part .note_text span {
    font-family: var(--inter_bold);
}

.address_first_section .move_tocart_text {
    font-family: var(--inter_regular);
    font-size: 20px;
}