@import url("https://fonts.googleapis.com/css2?family=Anek+Gujarati:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
    --font_primary: "Anek Gujarati", "Inter", Arial, sans-serif;
    --bg_color_1: #ffffff;
    --bg_color_2: #340a64;
    --bg_color_3: #f7f2fc;
    --bg_color_4: #e5d9ef;

    --text_color_1: #000000;
    --text_color_2: #ffffff;
    --text_color_3: #340a64;
    --text_color_4: #666666;
    --text_color_5: #222222;

    --book_page_color: #fffdf7;
    --book_page_border: #ded6cb;
    --book_text_color: #55505a;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: var(--font_primary);
    color: var(--text_color_1);
    background-color: var(--bg_color_1);
}

body {
    min-height: 100vh;
    font-size: 16px;
    line-height: 26px;
    overflow-x: hidden;
}

button,
input,
textarea,
select {
    font-family: var(--font_primary);
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.jp_header_area {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    background-color: var(--bg_color_1);
    border-bottom: 1px solid var(--bg_color_4);
    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.jp_header_area.jp_header_scrolled {
    border-bottom-color: transparent;
    box-shadow: 0 8px 30px rgba(52, 10, 100, 0.09);
}

.jp_header_area .jp_navbar {
    position: relative;
}

.jp_header_area .jp_header_logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 30px;
    padding: 0;
}

.jp_header_area .jp_header_logo img {
    display: block;
    width: auto;
    max-width: 190px;
    height: auto;
    object-fit: contain;
}

.jp_header_area .jp_navbar_collapse {
    align-items: center;
}

.jp_header_area .jp_header_menu {
    display: flex;
    align-items: center;
    column-gap: 4px;
}

.jp_header_area .jp_header_menu .nav-item {
    position: relative;
}

.jp_header_area .jp_header_menu .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 9px 10px;
    color: var(--text_color_5);
    font-family: var(--font_primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    white-space: nowrap;
    border-radius: 8px;
    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

.jp_header_area .jp_header_menu .nav-link::after {
    position: absolute;
    bottom: 3px;
    left: 50%;
    width: 0;
    height: 2px;
    content: "";
    background-color: var(--bg_color_2);
    border-radius: 20px;
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.jp_header_area .jp_header_menu .nav-link:hover,
.jp_header_area .jp_header_menu .nav-link.active {
    color: var(--text_color_3);
}

.jp_header_area .jp_header_menu .nav-link:hover::after,
.jp_header_area .jp_header_menu .nav-link.active::after {
    width: calc(100% - 20px);
}

.jp_header_area .jp_toggler {
    position: relative;
    width: 44px;
    height: 44px;
    padding: 10px;
    background-color: var(--bg_color_3);
    border: 1px solid var(--bg_color_4);
    border-radius: 10px;
    outline: none;
    box-shadow: none;
}

.jp_header_area .jp_toggler:hover {
    background-color: var(--bg_color_3);
    border-color: var(--bg_color_2);
}

.jp_header_area .jp_toggler:focus {
    box-shadow: 0 0 0 3px rgba(52, 10, 100, 0.12);
}

.jp_header_area .jp_toggler span {
    position: absolute;
    left: 10px;
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--bg_color_2);
    border-radius: 10px;
    transition:
        top 0.3s ease,
        transform 0.3s ease,
        opacity 0.3s ease;
}

.jp_header_area .jp_toggler span:nth-child(1) {
    top: 13px;
}

.jp_header_area .jp_toggler span:nth-child(2) {
    top: 20px;
}

.jp_header_area .jp_toggler span:nth-child(3) {
    top: 27px;
}

.jp_header_area .jp_toggler[aria-expanded="true"] span:nth-child(1) {
    top: 20px;
    transform: rotate(45deg);
}

.jp_header_area .jp_toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: translateX(-8px);
}

.jp_header_area .jp_toggler[aria-expanded="true"] span:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg);
}

.jp_hero_slider_section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f3eff7;
}

.jp_hero_slider_section .jp_hero_slider,
.jp_hero_slider_section .jp_hero_slide {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.jp_hero_slider_section .jp_hero_slide img {
    display: block;
    width: 100%;
    max-height: calc(100vh - 70px);
    object-fit: cover;
    object-position: center;
}

.jp_hero_slider_section .jp_hero_pagination {
    bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 7px;
}

.jp_hero_slider_section .jp_hero_pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin: 0 !important;
    opacity: 0.45;
    background-color: #ffffff;
    border: 1px solid rgba(52, 10, 100, 0.35);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition:
        width 0.25s ease,
        opacity 0.25s ease,
        background-color 0.25s ease;
}

.jp_hero_slider_section .jp_hero_pagination .swiper-pagination-bullet-active {
    width: 28px;
    opacity: 1;
    background-color: var(--bg_color_2);
    border-radius: 20px;
}

.jp_history_book_section {
    position: relative;
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
    background-color: #F3F3F3;
    /* background:
        radial-gradient(circle at 12% 18%,
            rgba(52, 10, 100, 0.08),
            transparent 32%),
        radial-gradient(circle at 88% 82%,
            rgba(52, 10, 100, 0.06),
            transparent 30%),
        linear-gradient(180deg,
            #ffffff 0%,
            #f8f4fb 48%,
            #ffffff 100%); */
}

.jp_history_book_section .container {
    position: relative;
    z-index: 2;
}

.jp_history_book_section .jp_history_book_heading {
    width: 100%;
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center;
}

.jp_history_book_section .jp_history_book_heading h2 {
    position: relative;
    margin: 0 0 5px 0;
    color: var(--text_color_3);
    font-family: var(--font_primary);
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
}

.jp_history_book_section .jp_history_book_heading .bottomline_shape {
    display: block;
    max-width: 200px;
    height: auto;
    margin: 0 auto 18px;
    object-fit: contain;
}

.jp_history_book_section .jp_history_book_heading p {
    margin: 0;
    color: var(--text_color_4);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.jp_history_book_section .jp_history_book_stage {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    outline: none;
    isolation: isolate;
}

.jp_history_book_section .jp_history_book_stage::before {
    position: absolute;
    bottom: 18px;
    left: 50%;
    z-index: -1;
    width: 78%;
    height: 38px;
    content: "";
    pointer-events: none;
    background-color: rgba(31, 8, 51, 0.22);
    border-radius: 50%;
    filter: blur(24px);
    transform: translateX(-50%);
}

.jp_history_book_section .jp_history_book_stage:focus-visible {
    border-radius: 16px;
    box-shadow: 0 0 0 4px rgba(52, 10, 100, 0.12);
}


/* Dynamic life-book sizing: full available width and content-driven height. */
.jp_history_book_section .jp_history_book_stage {
    height: auto;
}

.jp_history_book_section .jp_history_book {
    width: 100%;
    max-width: 100%;
}

.jp_history_book_section .jp_history_book_navigation {
    position: relative;
    width: 100%;
    column-gap: 0;
}

.jp_history_book_section .jp_history_book_column {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
}

.jp_history_book_section .jp_history_book_navigation .jp_history_book_stage {
    width: 100%;
    max-width: 100%;
    min-height: 0;
}

.jp_history_book_section .jp_history_navigation_column {
    position: absolute;
    top: 50%;
    z-index: 50;
    transform: translateY(-50%);
}

.jp_history_book_section .jp_history_navigation_previous {
    left: 0;
}

.jp_history_book_section .jp_history_navigation_next {
    right: 0;
}

.jp_history_book_measure {
    position: fixed !important;
    top: 0 !important;
    left: -100000px !important;
    z-index: -9999 !important;
    display: block !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.jp_history_book_measure .jp_history_page {
    position: relative !important;
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
}

.jp_history_book_measure .jp_history_page_inner {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
}

.jp_history_book_section .jp_history_book {
    position: relative;
    visibility: hidden;
    filter: drop-shadow(0 24px 28px rgba(28, 7, 49, 0.2));
}

.jp_history_book_section .jp_history_book.jp_history_book_ready {
    visibility: visible;
}

.jp_history_book_section .jp_history_book .stf__parent {
    margin: 0 auto;
}

.jp_history_book .stf__wrapper {
    overflow: visible !important;
}

.jp_history_book_section .jp_history_book .stf__block {
    overflow: visible !important;
}

.jp_history_book_section .jp_history_book .stf__item {
    overflow: hidden;
}

.jp_history_book_section .jp_history_page .jp_history_year_decoration {
    font-size: 70px;
}

.jp_history_page {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
    color: var(--text_color_5);
    background:
        linear-gradient(90deg,
            rgba(52, 10, 100, 0.024),
            transparent 12%,
            transparent 88%,
            rgba(52, 10, 100, 0.024)),
        var(--book_page_color);
    border: 1px solid var(--book_page_border);
}

.jp_history_page::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    content: "";
    pointer-events: none;
    opacity: 0.25;
    background-image:
        repeating-linear-gradient(0deg,
            transparent 0,
            transparent 28px,
            rgba(52, 10, 100, 0.024) 29px);
}

.jp_history_page::after {
    position: absolute;
    inset: 12px;
    z-index: 0;
    content: "";
    pointer-events: none;
    border: 1px solid rgba(52, 10, 100, 0.075);
}

.jp_history_page_inner {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 38px;
    overflow: hidden;
    flex-direction: column;
}

.jp_history_page.--left {
    border-right: 0;
    box-shadow:
        inset -24px 0 36px -29px rgba(0, 0, 0, 0.55),
        inset -2px 0 5px rgba(52, 10, 100, 0.09);
}

.jp_history_page.--right {
    border-left: 0;
    box-shadow:
        inset 24px 0 36px -29px rgba(0, 0, 0, 0.55),
        inset 2px 0 5px rgba(52, 10, 100, 0.09);
}

.jp_history_year_page .jp_history_page_inner {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.jp_history_year_label {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 6px 16px;
    color: var(--text_color_4);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 1px;
    background-color: rgba(52, 10, 100, 0.04);
    border: 1px solid rgba(52, 10, 100, 0.08);
    border-radius: 30px;
}

.jp_history_year {
    position: relative;
    margin: 0;
    color: var(--text_color_3);
    font-family: var(--font_primary);
    font-size: 54px;
    font-weight: 700;
    line-height: 68px;
}

.jp_history_year::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 74px;
    height: 4px;
    content: "";
    background-color: var(--bg_color_2);
    border-radius: 20px;
    transform: translateX(-50%);
}

.jp_history_year_decoration {
    position: absolute;
    right: 38px;
    bottom: 38px;
    color: rgba(52, 10, 100, 0.075);
    font-size: 90px;
    line-height: 90px;
}

.jp_history_content_page .jp_history_page_inner {
    justify-content: center;
}

.jp_history_content_number {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    margin-bottom: 16px;
    padding: 6px 14px;
    color: var(--text_color_3);
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    background-color: var(--bg_color_3);
    border: 1px solid var(--bg_color_4);
    border-radius: 30px;
}

.jp_history_content {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--book_text_color);
    font-family: var(--font_primary);
    font-size: 17px;
    font-weight: 400;
    line-height: 23px;
    text-align: left;
    overflow-wrap: break-word;
}

.jp_history_content p {
    margin: 0 0 10px;
}

.jp_history_content p:last-child {
    margin-bottom: 0;
}

.jp_history_content_quote {
    position: absolute;
    right: 32px;
    bottom: 24px;
    z-index: 1;
    color: rgba(52, 10, 100, 0.07);
    font-size: 72px;
    line-height: 72px;
}

.jp_history_cover {
    color: var(--text_color_2);
    background:
        radial-gradient(circle at center,
            rgba(255, 255, 255, 0.13),
            transparent 54%),
        linear-gradient(145deg,
            #5a258c 0%,
            #340a64 52%,
            #21033e 100%);
    border: 1px solid #260448;
}

.jp_history_cover::before {
    opacity: 0.15;
    background-image:
        repeating-linear-gradient(45deg,
            transparent 0,
            transparent 12px,
            rgba(255, 255, 255, 0.08) 13px);
}

.jp_history_cover::after {
    inset: 18px;
    border-color: rgba(255, 255, 255, 0.22);
}

.jp_history_cover .jp_history_page_inner {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.jp_history_cover_logo {
    display: inline-flex;
    width: 78px;
    height: 78px;
    margin-bottom: 24px;
    align-items: center;
    justify-content: center;
    color: var(--text_color_3);
    font-size: 31px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}

.jp_history_cover h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-family: var(--font_primary);
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
}

.jp_history_cover p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 30px;
}

.jp_history_back_cover_text {
    max-width: 350px;
}

.jp_history_book_navigation {
    position: relative;
    display: flex;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    column-gap: 24px;
}

.jp_history_navigation_column {
    position: relative;
    z-index: 30;
    display: flex;
    padding-right: 0;
    padding-left: 0;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
}

.jp_history_book_column {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-right: 0;
    padding-left: 0;
    flex: 0 0 100%;
    align-items: center;
    justify-content: center;
}

.jp_history_book_navigation .jp_history_book_stage {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    margin-right: 0;
    margin-left: 0;
}

.jp_history_book_navigation .jp_history_control_button {
    position: relative;
    z-index: 30;
    flex: 0 0 auto;
}

.jp_history_book_controls {
    position: relative;
    z-index: 5;
    display: flex;
    width: 100%;
    margin-top: 34px;
    margin-right: 0;
    margin-left: 0;
    align-items: center;
    justify-content: center;
}

.jp_history_control_button {
    display: inline-flex;
    width: 52px;
    height: 52px;
    padding: 0;
    align-items: center;
    justify-content: center;
    color: var(--text_color_2);
    font-size: 16px;
    background-color: var(--bg_color_2);
    border: 1px solid var(--bg_color_2);
    border-radius: 50%;
    outline: none;
    box-shadow: 0 10px 22px rgba(52, 10, 100, 0.2);
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease,
        opacity 0.25s ease;
}

.jp_history_control_button:hover:not(:disabled) {
    color: var(--text_color_3);
    background-color: var(--bg_color_1);
    border-color: var(--bg_color_2);
    box-shadow: 0 13px 28px rgba(52, 10, 100, 0.22);
}

.jp_history_control_button:focus-visible {
    box-shadow:
        0 10px 22px rgba(52, 10, 100, 0.2),
        0 0 0 4px rgba(52, 10, 100, 0.15);
}

.jp_history_control_button:disabled {
    cursor: not-allowed;
    opacity: 0.35;
    box-shadow: none;
    transform: none;
}

.jp_history_book_progress {
    display: inline-flex;
    min-width: 112px;
    min-height: 48px;
    padding: 8px 20px;
    align-items: center;
    justify-content: center;
    column-gap: 9px;
    color: var(--text_color_3);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    background-color: var(--bg_color_1);
    border: 1px solid var(--bg_color_4);
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(52, 10, 100, 0.08);
}

.jp_history_progress_separator {
    color: #b9a9c8;
}

.jp_history_book_hint {
    margin: 18px 0 0;
    color: var(--text_color_4);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
}

.jp_history_book_error {
    display: flex;
    width: 100%;
    max-width: 650px;
    min-height: 240px;
    margin: 0 auto;
    padding: 30px;
    align-items: center;
    justify-content: center;
    color: var(--text_color_3);
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
    background-color: var(--bg_color_1);
    border: 1px solid var(--bg_color_4);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(52, 10, 100, 0.1);
}

.jp_literature_section {
    position: relative;
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
    background-color: #f3f3f3;
}

.jp_literature_section .container {
    position: relative;
    z-index: 2;
}

.jp_literature_section .jp_literature_corner_image {
    position: absolute;
    right: -25px;
    bottom: -15px;
    z-index: 1;
    display: block;
    width: 260px;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

.jp_literature_section .jp_literature_heading {
    width: 100%;
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center;
}

.jp_literature_section .jp_literature_heading h2 {
    position: relative;
    margin: 0 0 5px 0;
    color: var(--text_color_3);
    font-family: var(--font_primary);
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
}

.jp_literature_section .jp_literature_heading .bottomline_shape {
    display: block;
    max-width: 200px;
    height: auto;
    margin: 0 auto 18px;
    object-fit: contain;
}

.jp_literature_section .jp_literature_heading p {
    margin: 0;
    color: var(--text_color_4);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.jp_literature_section .jp_literature_row>div {
    display: flex;
}

.jp_literature_section .jp_literature_card {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 126px;
    padding: 24px 54px 24px 22px;
    overflow: hidden;
    align-items: center;
    color: var(--text_color_3);
    background-color: var(--bg_color_1);
    /* background:
        linear-gradient(135deg,
            rgba(247, 242, 252, 0.65),
            rgba(255, 255, 255, 1) 55%); */
    border: 1px solid var(--bg_color_4);
    border-radius: 18px;
    box-shadow:
        0 12px 34px rgba(52, 10, 100, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.jp_literature_section .jp_literature_icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: 68px;
    height: 68px;
    margin-right: 18px;
    flex: 0 0 68px;
    align-items: center;
    justify-content: center;
    color: var(--text_color_3);
    font-size: 26px;
    /* background-color: var(--bg_color_3); */
    border: 1px solid var(--bg_color_4);
    border-radius: 18px;
    /* box-shadow: 0 8px 20px rgba(52, 10, 100, 0.09); */
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        border-radius 0.3s ease,
        transform 0.3s ease;
}

.jp_literature_section .jp_literature_icon::after {
    position: absolute;
    inset: 6px;
    content: "";
    pointer-events: none;
    border: 1px solid rgba(52, 10, 100, 0.1);
    border-radius: 13px;
    transition: border-color 0.3s ease;
}

.jp_literature_section .jp_literature_icon .icons {
    width: 30px;
    height: auto;
}

.jp_literature_section .jp_literature_content {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
}

.jp_literature_section .jp_literature_title {
    color: var(--text_color_3);
    font-family: var(--font_primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    overflow-wrap: anywhere;
    transition: color 0.3s ease;
}

.jp_literature_section .jp_literature_line {
    display: block;
    width: 34px;
    height: 2px;
    margin-top: 10px;
    background-color: var(--bg_color_4);
    border-radius: 20px;
    transition:
        width 0.3s ease,
        background-color 0.3s ease;
}

.jp_literature_section .jp_literature_arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 3;
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    color: var(--text_color_3);
    font-size: 12px;
    background-color: var(--bg_color_1);
    border: 1px solid var(--bg_color_4);
    border-radius: 50%;
    opacity: 0;
    transform: translateX(-8px);
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}

.jp_literature_section .jp_literature_card:hover {
    color: var(--text_color_3);
    border-color: rgba(52, 10, 100, 0.28);
    box-shadow:
        0 20px 45px rgba(52, 10, 100, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.jp_literature_section .jp_literature_card:hover::before {
    transform: scaleY(1);
}

.jp_literature_section .jp_literature_card:hover::after {
    width: 175px;
    height: 175px;
    background-color: rgba(52, 10, 100, 0.065);
}

/* .jp_literature_section .jp_literature_card:hover .jp_literature_icon {
    color: var(--text_color_2);
    background-color: var(--bg_color_2);
    border-color: var(--bg_color_2);
}

.jp_literature_section .jp_literature_card:hover .jp_literature_icon::after {
    border-color: rgba(255, 255, 255, 0.22);
} */

.jp_literature_section .jp_literature_card:hover .jp_literature_line {
    width: 58px;
    background-color: var(--bg_color_2);
}

.jp_literature_section .jp_literature_card:hover .jp_literature_arrow {
    color: var(--text_color_2);
    background-color: var(--bg_color_2);
    border-color: var(--bg_color_2);
    opacity: 1;
    transform: translateX(0);
}

.jp_literature_section .jp_literature_card:focus-visible {
    outline: none;
    border-color: var(--bg_color_2);
    box-shadow:
        0 18px 42px rgba(52, 10, 100, 0.14),
        0 0 0 4px rgba(52, 10, 100, 0.12);
}


.jp_books_showcase_section {
    position: relative;
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
    /* background:
        radial-gradient(circle at 8% 20%,
            rgba(52, 10, 100, 0.045),
            transparent 27%),
        radial-gradient(circle at 92% 76%,
            rgba(52, 10, 100, 0.04),
            transparent 25%),
        #ffffff; */
}

.jp_books_showcase_section .container {
    position: relative;
    z-index: 2;
}

.jp_books_showcase_section .jp_books_showcase_heading {
    width: 100%;
    max-width: 980px;
    margin: 0 auto 42px;
    text-align: center;
}

.jp_books_showcase_section .jp_books_showcase_heading h2 {
    margin: 0 0 5px 0;
    color: var(--text_color_3);
    font-family: var(--font_primary);
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
}

.jp_books_showcase_section .jp_books_showcase_heading .bottomline_shape {
    display: block;
    max-width: 200px;
    height: auto;
    margin: 0 auto 18px;
    object-fit: contain;
}

.jp_books_showcase_section .jp_books_showcase_heading p {
    margin: 0;
    color: var(--text_color_4);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.jp_books_showcase_section .jp_books_showcase_row {
    --bs-gutter-x: 22px;
    --bs-gutter-y: 22px;
    display: flex;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    flex-wrap: wrap;
}

.jp_books_showcase_section .jp_books_showcase_item {
    display: flex;
    min-width: 0;
}

.jp_books_showcase_section .jp_books_showcase_card {
    display: flex;
    width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
    color: var(--text_color_5);
    text-align: center;
    outline: none;
    transition: transform 0.32s ease;
}

.jp_books_showcase_section .jp_books_showcase_cover {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 0.67;
    padding: 6px;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid rgba(52, 10, 100, 0.09);
    border-radius: 9px;
    box-shadow:
        0 12px 28px rgba(31, 8, 51, 0.1),
        0 2px 6px rgba(31, 8, 51, 0.06);
    transition:
        border-color 0.32s ease,
        box-shadow 0.32s ease,
        transform 0.32s ease;
}

.jp_books_showcase_section .jp_books_showcase_cover::after {
    position: absolute;
    inset: 6px;
    content: "";
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 5px;
}

.jp_books_showcase_section .jp_books_showcase_cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
}

.jp_books_showcase_section .jp_books_showcase_content {
    display: flex;
    padding: 13px 4px 0;
    flex-direction: column;
    align-items: center;
}

.jp_books_showcase_section .jp_books_showcase_title {
    display: block;
    overflow: hidden;
    color: var(--text_color_5);
    font-family: var(--font_primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    overflow-wrap: anywhere;
    max-height: 48px;
    transition: color 0.28s ease;
}

.jp_books_showcase_section .jp_books_showcase_author {
    display: block;
    margin-top: 3px;
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
}

.jp_books_showcase_section .jp_books_showcase_card:hover .jp_books_showcase_cover {
    border-color: rgba(52, 10, 100, 0.24);
    box-shadow:
        0 20px 40px rgba(31, 8, 51, 0.16),
        0 4px 10px rgba(31, 8, 51, 0.08);
}

.jp_books_showcase_section .jp_books_showcase_card:hover .jp_books_showcase_title {
    color: var(--text_color_3);
}

.jp_books_showcase_section .jp_books_showcase_card:focus-visible .jp_books_showcase_cover {
    border-color: var(--bg_color_2);
    box-shadow:
        0 18px 38px rgba(31, 8, 51, 0.14),
        0 0 0 4px rgba(52, 10, 100, 0.12);
}

.jp_books_showcase_section .jp_books_showcase_footer {
    display: flex;
    width: 100%;
    margin-top: 40px;
    align-items: center;
    justify-content: center;
}

.jp_books_showcase_section .jp_books_showcase_button {
    display: inline-flex;
    min-height: 46px;
    padding: 11px 24px;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    color: var(--text_color_3);
    font-size: 15px;
    font-weight: 600;
    line-height: 21px;
    background-color: var(--bg_color_1);
    border: 1px solid var(--bg_color_2);
    border-radius: 30px;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.jp_books_showcase_section .jp_books_showcase_button i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.jp_books_showcase_section .jp_books_showcase_button:hover {
    color: var(--text_color_2);
    background-color: var(--bg_color_2);
    border-color: var(--bg_color_2);
}

.jp_books_showcase_section .jp_books_showcase_button:hover i {
    transform: translateX(4px);
}

.jp_books_showcase_section .jp_books_showcase_button:focus-visible {
    outline: none;
    box-shadow:
        0 10px 24px rgba(52, 10, 100, 0.2),
        0 0 0 4px rgba(52, 10, 100, 0.12);
}


.jp_testimonial_section {
    position: relative;
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
    background-color: #f3f3f3;
    /* background:
        radial-gradient(circle at 10% 15%,
            rgba(52, 10, 100, 0.07),
            transparent 28%),
        radial-gradient(circle at 90% 82%,
            rgba(52, 10, 100, 0.055),
            transparent 26%),
        #f9f7fb; */
}

.jp_testimonial_section .container {
    position: relative;
    z-index: 2;
}

.jp_testimonial_section .jp_testimonial_heading {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 44px;
    text-align: center;
}

.jp_testimonial_section .jp_testimonial_heading h2 {
    margin: 0 0 5px;
    color: var(--text_color_3);
    font-family: var(--font_primary);
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
}

.jp_testimonial_section .jp_testimonial_heading .bottomline_shape {
    display: block;
    max-width: 200px;
    height: auto;
    margin: 0 auto 15px;
    object-fit: contain;
}

.jp_testimonial_section .jp_testimonial_heading p {
    margin: 0;
    color: var(--text_color_4);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.jp_testimonial_section .jp_testimonial_tabs {
    display: flex;
    width: 100%;
    margin-right: auto;
    margin-bottom: 42px;
    margin-left: auto;
    flex-wrap: wrap;
}

.jp_testimonial_section .jp_testimonial_tabs>div {
    display: flex;
}

.jp_testimonial_section .jp_testimonial_tab {
    display: flex;
    width: 100%;
    padding: 12px 20px;
    align-items: center;
    justify-content: center;
    column-gap: 12px;
    color: var(--text_color_3);
    font-family: var(--font_primary);
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    background-color: var(--bg_color_1);
    border: 1px solid var(--bg_color_4);
    border-radius: 14px;
    outline: none;
    box-shadow: 0 8px 24px rgba(52, 10, 100, 0.06);
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.jp_testimonial_section .jp_testimonial_tab_icon {
    display: inline-flex;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;
    color: var(--text_color_3);
    font-size: 15px;
    background-color: var(--bg_color_3);
    border-radius: 50%;
    transition:
        color 0.3s ease,
        background-color 0.3s ease;
}

.jp_testimonial_section .jp_testimonial_tab:hover {
    border-color: rgba(52, 10, 100, 0.3);
}

.jp_testimonial_section .jp_testimonial_tab.active {
    color: #ffffff;
    background-color: var(--bg_color_2);
    border-color: var(--bg_color_2);
    box-shadow: 0 12px 28px rgba(52, 10, 100, 0.2);
}

.jp_testimonial_section .jp_testimonial_tab.active .jp_testimonial_tab_icon {
    color: var(--text_color_3);
    background-color: #ffffff;
}

.jp_testimonial_section .jp_testimonial_tab:focus-visible {
    box-shadow:
        0 8px 24px rgba(52, 10, 100, 0.1),
        0 0 0 4px rgba(52, 10, 100, 0.12);
}

.jp_testimonial_section .jp_testimonial_panel {
    display: none;
    width: 100%;
}

.jp_testimonial_section .jp_testimonial_panel.active {
    display: block;
}

.jp_testimonial_section .jp_testimonial_slider {
    width: 100%;
    overflow: hidden;
    padding: 8px 4px 18px;
}

.jp_testimonial_section .jp_testimonial_slider .swiper-slide {
    display: flex;
    height: auto;
}

.jp_testimonial_section .jp_testimonial_card {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 330px;
    padding: 38px;
    overflow: hidden;
    flex-direction: column;
    color: var(--text_color_5);
    background: var(--bg_color_1);
    border: 1px solid var(--bg_color_4);
    border-radius: 20px;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.jp_testimonial_section .jp_testimonial_card:hover {
    border-color: rgba(52, 10, 100, 0.3);
}

.jp_testimonial_section .jp_testimonial_quote {
    display: inline-flex;
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 17px;
    background-color: var(--bg_color_2);
    border-radius: 14px;
}

.jp_testimonial_section .jp_testimonial_description {
    position: relative;
    z-index: 2;
    margin: 0 0 20px;
    color: var(--text_color_5);
    font-family: var(--font_primary);
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    flex: 1 1 auto;
}

.jp_testimonial_section .jp_testimonial_person {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    padding-top: 20px;
    align-items: center;
    border-top: 1px solid var(--bg_color_4);
}

.jp_testimonial_section .jp_testimonial_image {
    position: relative;
    width: 64px;
    height: 64px;
    margin-right: 15px;
    flex: 0 0 64px;
    overflow: hidden;
    background-color: var(--bg_color_3);
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 7px 18px rgba(52, 10, 100, 0.15);
}

.jp_testimonial_section .jp_testimonial_image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.jp_testimonial_section .jp_testimonial_person_content {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: column;
}

.jp_testimonial_section .jp_testimonial_person_content h3 {
    margin: 0 0 3px;
    color: var(--text_color_3);
    font-family: var(--font_primary);
    font-size: 19px;
    font-weight: 700;
    line-height: 27px;
}

.jp_testimonial_section .jp_testimonial_person_content span {
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
}

.jp_testimonial_section .jp_testimonial_controls {
    display: flex;
    width: 100%;
    margin-top: 24px;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
}

.jp_testimonial_section .jp_testimonial_navigation {
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 0;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 13px;
    background-color: var(--bg_color_2);
    border: 1px solid var(--bg_color_2);
    border-radius: 50%;
    outline: none;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}

.jp_testimonial_section .jp_testimonial_navigation:hover:not(:disabled) {
    color: var(--text_color_3);
    background-color: #ffffff;
}

.jp_testimonial_section .jp_testimonial_navigation:disabled {
    cursor: not-allowed;
    opacity: 0.3;
}

.jp_testimonial_section .jp_testimonial_pagination {
    position: relative;
    display: flex;
    width: auto;
    min-width: 66px;
    height: 24px;
    align-items: center;
    justify-content: center;
    column-gap: 7px;
}

.jp_testimonial_section .jp_testimonial_dot {
    display: block;
    width: 8px;
    height: 8px;
    margin: 0;
    padding: 0;
    flex: 0 0 8px;
    opacity: 0.28;
    background-color: var(--bg_color_2);
    border: 0;
    border-radius: 50%;
    outline: none;
    transition:
        width 0.25s ease,
        flex-basis 0.25s ease,
        opacity 0.25s ease,
        border-radius 0.25s ease;
}

.jp_testimonial_section .jp_testimonial_dot.active {
    width: 24px;
    flex-basis: 24px;
    opacity: 1;
    border-radius: 20px;
}

.jp_testimonial_section .jp_testimonial_dot:focus-visible {
    box-shadow: 0 0 0 3px rgba(52, 10, 100, 0.16);
}

/* Photo Gallery Section Start */

.jp_photo_gallery_section {
    position: relative;
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%,
            rgba(52, 10, 100, 0.05),
            transparent 28%),
        radial-gradient(circle at 88% 84%,
            rgba(52, 10, 100, 0.04),
            transparent 26%),
        var(--bg_color_1);
}

.jp_photo_gallery_section .container {
    position: relative;
    z-index: 2;
}

.jp_photo_gallery_section .jp_photo_gallery_heading {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 44px;
    text-align: center;
}

.jp_photo_gallery_section .jp_photo_gallery_heading h2 {
    margin: 0 0 5px;
    color: var(--text_color_3);
    font-family: var(--font_primary);
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
}

.jp_photo_gallery_section .jp_photo_gallery_heading .bottomline_shape {
    display: block;
    max-width: 200px;
    height: auto;
    margin: 0 auto 15px;
    object-fit: contain;
}

.jp_photo_gallery_section .jp_photo_gallery_heading p {
    margin: 0;
    color: var(--text_color_4);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.jp_photo_gallery_section .jp_photo_gallery_row {
    display: flex;
    width: 100%;
    margin: 0;
    flex-wrap: wrap;
}

.jp_photo_gallery_section .jp_photo_gallery_column {
    display: flex;
    width: 25%;
    max-width: 25%;
    padding: 8px;
    flex: 0 0 25%;
    min-width: 0;
}

.jp_photo_gallery_section .jp_photo_gallery_item {
    position: relative;
    display: flex;
    width: 100%;
    margin: 0;
    /* aspect-ratio: 4 / 3; */
    overflow: hidden;
    background-color: var(--bg_color_3);
    border-radius: 6px;
    transform: translateZ(0);
}

.jp_photo_gallery_section .jp_photo_gallery_item img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:
        transform 0.65s ease,
        filter 0.45s ease;
}

.jp_photo_gallery_section .jp_photo_gallery_view_button {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background:
        linear-gradient(180deg,
            rgba(16, 3, 29, 0.08),
            rgba(34, 6, 61, 0.65));
    border: 0;
    outline: none;
    transition:
        opacity 0.35s ease,
        background-color 0.35s ease;
}

.jp_photo_gallery_section .jp_photo_gallery_view_icon {
    display: inline-flex;
    width: 62px;
    height: 62px;
    align-items: center;
    justify-content: center;
    color: var(--text_color_2);
    font-size: 22px;
    background-color: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    box-shadow:
        0 10px 30px rgba(14, 2, 26, 0.26),
        inset 0 0 0 6px rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(6px);
    transform: translateY(12px) scale(0.82);
    transition:
        transform 0.4s ease,
        background-color 0.3s ease,
        color 0.3s ease;
}

.jp_photo_gallery_section .jp_photo_gallery_item:hover img {
    filter: saturate(0.92) brightness(0.88);
    transform: scale(1.045);
}

.jp_photo_gallery_section .jp_photo_gallery_item:hover .jp_photo_gallery_view_button,
.jp_photo_gallery_section .jp_photo_gallery_view_button:focus-visible {
    opacity: 1;
}

.jp_photo_gallery_section .jp_photo_gallery_item:hover .jp_photo_gallery_view_icon,
.jp_photo_gallery_section .jp_photo_gallery_view_button:focus-visible .jp_photo_gallery_view_icon {
    transform: translateY(0) scale(1);
}

.jp_photo_gallery_section .jp_photo_gallery_view_icon:hover {
    color: var(--text_color_3);
    background-color: var(--bg_color_1);
}

.jp_photo_gallery_section .jp_photo_gallery_view_button:focus-visible {
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.8);
}

.jp_photo_gallery_section .jp_photo_gallery_more_area {
    display: flex;
    margin-top: 38px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.jp_photo_gallery_section .jp_photo_gallery_more_button {
    display: inline-flex;
    min-height: 46px;
    padding: 11px 24px;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    color: var(--text_color_3);
    font-size: 15px;
    font-weight: 600;
    line-height: 21px;
    background-color: var(--bg_color_1);
    border: 1px solid var(--bg_color_2);
    border-radius: 30px;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.jp_photo_gallery_section .jp_photo_gallery_more_button i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.jp_photo_gallery_section .jp_photo_gallery_more_button:hover {
    color: var(--text_color_2);
    background-color: var(--bg_color_2);
    border-color: var(--bg_color_2);
}

.jp_photo_gallery_section .jp_photo_gallery_more_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: transform 0.3s ease;
}

.jp_photo_gallery_section .jp_photo_gallery_more_button:hover .jp_photo_gallery_more_icon {
    transform: translateX(2px);
}

.jp_photo_gallery_lightbox_open {
    overflow: hidden;
}

.jp_photo_gallery_lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    visibility: hidden;
    padding: 24px;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition:
        visibility 0.35s ease,
        opacity 0.35s ease;
}

.jp_photo_gallery_lightbox.jp_photo_gallery_lightbox_active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.jp_photo_gallery_lightbox_backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center,
            rgba(80, 29, 122, 0.28),
            transparent 52%),
        rgba(11, 3, 19, 0.94);
    backdrop-filter: blur(12px);
}

.jp_photo_gallery_lightbox_dialog {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.jp_photo_gallery_lightbox_media {
    /* position: relative;
    display: flex;
    width: calc(100% - 150px);
    height: 100%;
    padding: 25px 0 55px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 12px; */

    position: relative;
    display: flex;
    width: calc(100% - 150px);
    height: 100%;
    align-items: center;
    justify-content: center;
    padding-top: 25px;
    padding-bottom: 65px;
    flex-direction: column;
    row-gap: 12px;

}

.jp_photo_gallery_lightbox_media img {
    /* display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: calc(100vh - 400px);
    opacity: 0;
    object-fit: contain;
    filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.45));
    transform: scale(0.96);
    transition:
        opacity 0.35s ease,
        transform 0.45s ease; */

    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: calc(100vh - 70px);
    opacity: 0;
    object-fit: contain;
    transform: scale(0.96);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.jp_photo_gallery_lightbox_caption {
    position: relative;
    z-index: 4;
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 0;
    padding: 0 14px;
    /* overflow: hidden; */
    color: #ffffff;
    font-family: var(--font_primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    /* text-overflow: ellipsis; */
    /* white-space: nowrap; */
}

.jp_photo_gallery_lightbox_caption:empty {
    display: none;
}

.jp_photo_gallery_lightbox_media img.jp_photo_gallery_lightbox_image_ready {
    opacity: 1;
    transform: scale(1);
}

.jp_photo_gallery_lightbox_close,
.jp_photo_gallery_lightbox_navigation {
    /* display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text_color_2);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease; */

    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    display: inline-flex;
    width: 48px;
    height: 48px;
    padding: 0;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    outline: none;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;

}

.jp_photo_gallery_lightbox_close:hover,
.jp_photo_gallery_lightbox_navigation:hover {
    color: var(--text_color_3);
    background-color: var(--bg_color_1);

}

.jp_photo_gallery_lightbox_close:focus-visible,
.jp_photo_gallery_lightbox_navigation:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.18);
}

.jp_photo_gallery_lightbox_close:hover,
.jp_photo_gallery_lightbox_close:focus-visible {
    transform: rotate(90deg);
}

/* .jp_photo_gallery_lightbox_close {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 5;
    width: 48px;
    height: 48px;
    font-size: 21px;
} */

.jp_photo_gallery_lightbox_navigation {
    position: relative;
    z-index: 4;
    display: inline-flex;
    width: 50px;
    height: 50px;
    padding: 0;
    flex: 0 0 50px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 15px;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    outline: none;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.jp_photo_gallery_lightbox_previous {
    margin-right: 26px;
}

.jp_photo_gallery_lightbox_next {
    margin-left: 26px;
}

.jp_photo_gallery_lightbox_counter {
    position: fixed;
    right: 50%;
    bottom: 5px;
    display: inline-flex;
    min-width: 80px;
    min-height: 36px;
    padding: 6px 15px;
    align-items: center;
    justify-content: center;
    color: var(--text_color_2);
    font-size: 14px;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    backdrop-filter: blur(8px);
    transform: translateX(50%);
}

.jp_photo_gallery_lightbox_loader {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.jp_photo_gallery_lightbox_loader span {
    position: relative;
    display: block;
    width: 62px;
    height: 62px;
    border: 4px solid rgba(255, 255, 255, 0.17);
    border-top-color: var(--bg_color_1);
    border-radius: 50%;
    animation: jpPhotoGalleryLightboxLoader 0.85s linear infinite;
}

.jp_photo_gallery_lightbox_loader span::after {
    position: absolute;
    inset: 8px;
    content: "";
    border: 3px solid transparent;
    border-bottom-color: rgba(196, 156, 230, 0.9);
    border-radius: 50%;
    animation: jpPhotoGalleryLightboxLoader 1.1s linear infinite reverse;
}

.jp_photo_gallery_lightbox_loader.jp_photo_gallery_lightbox_loader_hidden {
    display: none;
}

@keyframes jpPhotoGalleryLightboxLoader {
    to {
        transform: rotate(360deg);
    }
}

.jp_footer_area {
    position: relative;
    width: 100%;
    padding: 76px 0 0;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0) 28%),
        radial-gradient(circle at 92% 88%, rgba(127, 71, 177, 0.42) 0%, rgba(127, 71, 177, 0) 34%),
        linear-gradient(135deg, #21033e 0%, #340a64 46%, #5b258a 100%);
}

.jp_footer_area .container {
    position: relative;
    z-index: 2;
}

.jp_footer_area .jp_footer_background_mark {
    position: absolute;
    pointer-events: none;
}

.jp_footer_area .jp_footer_shell {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
}

.jp_footer_area .jp_footer_brand_panel {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 570px;
    padding: 8px 35px 8px 0;
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
}

.jp_footer_area .jp_footer_brand_panel::after {
    content: none;
}

.jp_footer_area .jp_footer_brand_pattern {
    position: absolute;
    top: -18px;
    right: 60px;
    width: 78px;
    height: 78px;
    pointer-events: none;
    opacity: 0.17;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.65) 1.2px, transparent 1.2px);
    background-size: 13px 13px;
}

.jp_footer_area .jp_footer_logo {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: max-content;
    max-width: 210px;
    padding: 0;
    align-items: center;
    justify-content: flex-start;
    border-radius: 18px;
    outline: none;
    transition:
        box-shadow 0.28s ease,
        transform 0.28s ease;
}

.jp_footer_area .jp_footer_logo:focus-visible {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.jp_footer_area .jp_footer_logo img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.jp_footer_area .jp_footer_brand_panel .bottomline_shape {
    display: block;
    width: auto;
    max-width: 210px;
    height: auto;
    margin: 0 0 18px 0;
    object-fit: contain;
}

.jp_footer_area .jp_footer_description {
    position: relative;
    z-index: 2;
    max-width: 540px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    font-weight: 400;
    line-height: 29px;
}

.jp_footer_area .jp_footer_content_panel {
    display: block;
    width: 100%;
    padding: 0;
}

.jp_footer_area .jp_footer_navigation {
    display: block;
    width: 100%;
}

.jp_footer_area .jp_footer_navigation > .row {
    margin-right: 0;
    margin-left: 0;
}

.jp_footer_area .jp_footer_column {
    position: relative;
    display: flex;
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 8px 0 10px 45px;
    overflow: hidden;
    flex-direction: column;
}

.jp_footer_area .jp_footer_column::before {
    content: none;
}

.jp_footer_area .jp_footer_title_wrap {
    position: relative;
    z-index: 2;
    display: flex;
    margin-bottom: 18px;
    align-items: center;
    column-gap: 13px;
}

.jp_footer_area .jp_footer_title_icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    color: #340a64;
    font-size: 15px;
    background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    box-shadow: 0 10px 22px rgba(18, 1, 34, 0.2);
}

.jp_footer_area .jp_footer_title {
    margin: 0;
    color: #ffffff;
    font-family: var(--font_primary);
    font-size: 21px;
    font-weight: 700;
    line-height: 29px;
}

.jp_footer_area .jp_footer_links {
    position: relative;
    z-index: 2;
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    list-style: none;
}

.jp_footer_area .jp_footer_links li {
    display: block;
    width: 100%;
}

.jp_footer_area .jp_footer_links a {
    display: flex;
    width: 100%;
    min-height: 52px;
    padding: 12px 2px;
    align-items: center;
    justify-content: space-between;
    column-gap: 14px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    outline: none;
    transition:
        color 0.24s ease,
        padding-left 0.24s ease,
        border-color 0.24s ease;
}

.jp_footer_area .jp_footer_links a i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    transition:
        color 0.24s ease,
        transform 0.24s ease;
}

.jp_footer_area .jp_footer_links a:hover {
    padding-left: 8px;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.27);
}

.jp_footer_area .jp_footer_links a:hover i {
    color: #ffffff;
    transform: translateX(4px);
}

.jp_footer_area .jp_footer_links a:focus-visible {
    padding-left: 8px;
    color: #ffffff;
    box-shadow: inset 3px 0 0 #ffffff;
}

.jp_footer_area .jp_footer_bottom {
    display: flex;
    width: 100%;
    min-height: 72px;
    margin-top: 52px;
    padding: 20px 0;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.jp_footer_area .jp_footer_copyright,
.jp_footer_area .jp_footer_credit {
    margin: 0;
    color: rgba(255, 255, 255, 0.67);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.jp_footer_area .jp_footer_credit {
    text-align: right;
}

.jp_footer_area .jp_footer_credit a {
    position: relative;
    display: inline-block;
    margin-left: 3px;
    color: #ffffff;
    font-weight: 500;
    outline: none;
}

.jp_footer_area .jp_footer_credit a::after {
    position: absolute;
    right: 0;
    bottom: 1px;
    left: 0;
    height: 1px;
    content: "";
    background-color: rgba(255, 255, 255, 0.65);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.jp_footer_area .jp_footer_credit a:hover::after,
.jp_footer_area .jp_footer_credit a:focus-visible::after {
    transform: scaleX(1);
}

.jp_scroll_progress {
    --jp-scroll-offset: 157.08;
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 1050;
    display: flex;
    width: 56px;
    height: 56px;
    padding: 0;
    align-items: center;
    justify-content: center;
    color: var(--text_color_3);
    background-color: rgba(255, 255, 255, 0.96);
    border: 0;
    border-radius: 50%;
    outline: none;
    opacity: 0;
    visibility: hidden;
    box-shadow:
        0 12px 30px rgba(38, 8, 69, 0.16),
        0 2px 8px rgba(38, 8, 69, 0.08);
    transform: translateY(16px) scale(0.92);
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}

.jp_scroll_progress.jp_scroll_progress_visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.jp_scroll_progress_ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    transform: rotate(-90deg);
}

.jp_scroll_progress_track,
.jp_scroll_progress_value {
    fill: none;
    stroke-width: 2;
}

.jp_scroll_progress_track {
    stroke: rgba(52, 10, 100, 0.13);
}

.jp_scroll_progress_value {
    stroke: var(--bg_color_2);
    stroke-linecap: round;
    stroke-dasharray: 157.08;
    stroke-dashoffset: var(--jp-scroll-offset);
    transition: stroke-dashoffset 0.08s linear;
}

.jp_scroll_progress_icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    background-color: rgba(52, 10, 100, 0.055);
    border-radius: 50%;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.jp_scroll_progress_icon i {
    font-size: 14px;
}

.jp_scroll_progress:hover {
    color: #ffffff;
    background-color: #ffffff;
    box-shadow:
        0 16px 34px rgba(38, 8, 69, 0.22),
        0 3px 10px rgba(38, 8, 69, 0.1);
}

.jp_scroll_progress:hover .jp_scroll_progress_icon {
    background-color: var(--bg_color_2);
}

.jp_scroll_progress:focus-visible {
    box-shadow:
        0 12px 30px rgba(38, 8, 69, 0.16),
        0 0 0 4px rgba(52, 10, 100, 0.12);
}

@media (prefers-reduced-motion: reduce) {

    .jp_scroll_progress,
    .jp_scroll_progress_icon,
    .jp_scroll_progress_value {
        transition: none;
    }
}


.jp_book_hero_section {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    margin: 0;
    padding: 80px 0;
    align-items: center;
    overflow: hidden;
    background: var(--bg_color_2);
}

.jp_book_hero_content h1 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
}

.jp_book_hero_content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-weight: 400;
    line-height: 31px;
}

.jp_book_browser_section {
    position: relative;
    width: 100%;
    padding: 70px 0;
    overflow: hidden;
    background-color: #F3F3F3;
}

.jp_book_browser_section .container {
    position: relative;
    /* z-index: 2; */
}

.jp_book_browser_heading {
    width: 100%;
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
}

.jp_book_browser_heading h2 {
    margin: 0 0 6px;
    color: var(--text_color_3);
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
}

.jp_book_browser_heading .bottomline_shape {
    display: block;
    width: auto;
    max-width: 190px;
    height: auto;
    margin: 0 auto 16px;
}

.jp_book_browser_heading p {
    margin: 0;
    color: var(--text_color_4);
    font-size: 18px;
    line-height: 30px;
}

.jp_book_category_column_wrap {
    position: relative;
}

.jp_book_mobile_filter_button {
    display: none;
    width: 100%;
    min-height: 54px;
    padding: 10px 14px;
    align-items: center;
    justify-content: flex-start;
    column-gap: 11px;
    color: #4f0d7d;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    text-align: left;
    background: #ffffff;
    border: 1px solid rgba(52, 10, 100, 0.12);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(52, 10, 100, 0.08);
}

.jp_book_mobile_filter_icon {
    display: inline-flex;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 13px;
    background: #4f0d7d;
    border-radius: 10px;
}

.jp_book_mobile_filter_arrow {
    margin-left: auto;
    font-size: 12px;
}

.jp_book_category_offcanvas {
    width: 100%;
    border: 0;
    background: transparent;
}

.jp_book_category_offcanvas_body {
    display: flex;
    width: 100%;
    padding: 0;
    overflow: visible;
    flex-direction: column;
}

.jp_book_category_offcanvas_close {
    display: none;
}

.jp_book_category_panel {
    position: sticky;
    top: 102px;
    display: flex;
    max-height: calc(100vh - 122px);
    overflow: hidden;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(52, 10, 100, 0.09);
    border-radius: 20px;
    box-shadow: 0 22px 52px rgba(52, 10, 100, 0.09);
}

.jp_book_category_header {
    display: flex;
    padding: 20px 20px 16px 20px;
    align-items: center;
    justify-content: space-between;
    column-gap: 15px;
    background:
        radial-gradient(circle at 90% 20%, rgba(92, 22, 141, 0.08), transparent 45%),
        #ffffff;
    border-bottom: 1px solid rgba(52, 10, 100, 0.08);
}


.jp_book_category_header h3 {
    margin: 0;
    color: var(--text_color_3);
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
}

.jp_book_category_header_icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    color: #5a168b;
    font-size: 16px;
    border: 1px solid #eadcf2;
    border-radius: 12px;
}

.jp_book_category_list {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    padding: 12px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: #999999 #eeeeee;
}

/* .jp_book_category_list::-webkit-scrollbar {
    width: 7px;
}

.jp_book_category_list::-webkit-scrollbar-track {
    background: #eeeeee;
    border-radius: 20px;
}

.jp_book_category_list::-webkit-scrollbar-thumb {
    background: #999999;
    border: 2px solid #eeeeee;
    border-radius: 20px;
} */

.jp_book_category_button {
    display: flex;
    width: 100%;
    min-height: 50px;
    margin: 0;
    padding: 6px 9px;
    align-items: center;
    column-gap: 10px;
    color: #665c6c;
    text-align: left;
    background: transparent;
    border: 0;
    border-radius: 11px;
    transition:
        color 0.24s ease,
        background-color 0.24s ease,
        box-shadow 0.24s ease,
        transform 0.24s ease;
}

.jp_book_category_button:last-child {
    margin-bottom: 0;
}

.jp_book_category_button:hover {
    color: #4b0b78;
    background: #f8f2fb;
    transform: translateX(2px);
}

.jp_book_category_button.active {
    color: #ffffff;
    background: linear-gradient(135deg, #4c087c 0%, #711eaa 100%);
}

.jp_book_category_icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    color: #5b168d;
    font-size: 16px;
    background: #f4ecf8;
    border-radius: 9px;
    transition: inherit;
}

.jp_book_category_icon img {
    height: auto;
    width: 24px;
}

.jp_book_category_button.active .jp_book_category_icon {
    color: #5a168b;
    background: #ffffff;
}

.jp_book_category_name {
    min-width: 0;
    flex: 1 1 auto;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    overflow-wrap: break-word;
}

.jp_book_category_count {
    display: inline-flex;
    height: 30px;
    width: 30px;
    align-items: center;
    justify-content: center;
    color: #8d7a99;
    font-size: 10px;
    font-weight: 600;
    background: #faf7fc;
    border: 1px solid #eee5f3;
    border-radius: 100%;
}

.jp_book_category_button.active .jp_book_category_count {
    color: #4c087c;
    background: #ffffff;
    border-color: #ffffff;
}

.jp_book_grid_item {
    display: flex;
    min-width: 0;
}

.jp_book_grid_item[hidden] {
    display: none !important;
}

.jp_book_grid_item .jp_book_card {
    min-width: 0;
}

.jp_book_grid_item .jp_book_card_media {
    background-color: #eee5f2;
}

.jp_book_grid_item .jp_book_card_action i {
    transition: transform 0.25s ease;
}

.jp_book_grid_item .jp_book_card:hover .jp_book_card_action i,
.jp_book_grid_item .jp_book_card:focus-visible .jp_book_card_action i {
    transform: translateX(4px);
}


.jp_book_hero_section .container,
.jp_book_hero_section .row,
.jp_book_hero_section [class*="col-"] {
    background: transparent;
}

.jp_book_category_row {
    margin-right: -3px;
    margin-left: -3px;
}

.jp_book_category_column {
    padding-right: 3px;
    padding-left: 3px;
}

.jp_book_grid_item_row {
    width: 100%;
    margin: 0;
}

.jp_book_book_image_column {
    padding: 0;
    margin-right: 20px;
}

.jp_book_book_content_column {
    min-width: 0;
    padding: 0;
}

.jp_book_detail_row {
    margin-top: 0;
    margin-bottom: 0;
}

.jp_book_detail_column {
    display: flex;
}

.jp_book_detail_column .jp_book_detail_item {
    width: 100%;
}

.jp_book_cta_row {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 110px;
    margin: 0;
}

.jp_book_cta_icon_column,
.jp_book_cta_content_column,
.jp_book_cta_button_column {
    position: relative;
    z-index: 2;
}

.jp_book_cta_icon_column {
    display: flex;
}

.jp_book_empty_state {
    width: 100%;
    padding: 70px 25px;
    text-align: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px dashed #d9c6e4;
    border-radius: 20px;
}

.jp_book_empty_icon {
    display: inline-flex;
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    align-items: center;
    justify-content: center;
    color: #5a168b;
    font-size: 26px;
    background: #f4ecf8;
    border-radius: 50%;
}

.jp_book_empty_state h3 {
    margin: 0 0 8px;
    color: #4a0a78;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
}

.jp_book_empty_state p {
    margin: 0 0 18px;
    color: #776b7d;
    font-size: 14px;
    line-height: 24px;
}

.jp_book_empty_state button {
    min-height: 42px;
    padding: 9px 18px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    background: #4f0d7d;
    border: 0;
    border-radius: 30px;
}


/* Book card component used by the Book page */

.jp_book_card {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 10px;
    flex-direction: column;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #e8ddeb;
    border-radius: 22px;
    box-shadow: 0 13px 32px rgba(52, 10, 100, 0.075);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.jp_book_card::before {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 3;
    width: 0;
    height: 4px;
    content: "";
    background-color: #7617aa;
    border-radius: 0 0 10px 10px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.jp_book_card:hover,
.jp_book_card:focus-visible {
    border-color: #cba9dc;
}

.jp_book_card:hover::before,
.jp_book_card:focus-visible::before {
    width: 58%;
}

.jp_book_card:focus-visible {
    outline: none;
    box-shadow:
        0 24px 52px rgba(52, 10, 100, 0.15),
        0 0 0 4px rgba(118, 23, 170, 0.12);
}

.jp_book_card_media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 0.73;
    overflow: hidden;
    background-color: #eee5f2;
    border-radius: 15px;
}

.jp_book_card_media::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    content: "";
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
    border-radius: inherit;
}

.jp_book_card_media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition:
        filter 0.4s ease,
        transform 0.48s ease;
}

.jp_book_card_category_badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 4;
    display: inline-flex;
    min-height: 30px;
    padding: 0 10px;
    align-items: center;
    color: #5d0d8f;
    font-size: 12px;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(31, 3, 52, 0.12);
    backdrop-filter: blur(7px);
}

.jp_book_card_overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 9px;
    visibility: hidden;
    opacity: 0;
    background: linear-gradient(180deg, rgba(37, 3, 59, 0.18) 0%, rgba(44, 5, 70, 0.76) 100%);
    transition:
        visibility 0.3s ease,
        opacity 0.3s ease;
}

.jp_book_card:hover .jp_book_card_overlay,
.jp_book_card:focus-visible .jp_book_card_overlay {
    visibility: visible;
    opacity: 1;
}

.jp_book_card_open_icon {
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    color: #7617aa;
    font-size: 20px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 14px 30px rgba(16, 1, 26, 0.25);
    transform: translateY(13px) scale(0.88);
    transition: transform 0.3s ease;
}

.jp_book_card:hover .jp_book_card_open_icon,
.jp_book_card:focus-visible .jp_book_card_open_icon {
    transform: translateY(0) scale(1);
}

.jp_book_card_hover_text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    transform: translateY(9px);
    transition: transform 0.3s ease;
}

.jp_book_card:hover .jp_book_card_hover_text,
.jp_book_card:focus-visible .jp_book_card_hover_text {
    transform: translateY(0);
}

.jp_book_card_content {
    display: flex;
    padding: 18px 8px 7px;
    flex: 1 1 auto;
    flex-direction: column;
}

.jp_book_card_title {
    display: -webkit-box;
    margin-bottom: 10px;
    overflow: hidden;
    color: #3d0a62;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.jp_book_card_action {
    display: flex;
    margin-top: auto;
    padding: 11px 14px 9px 14px;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
    color: #5d0e8e;
    font-size: 12px;
    font-weight: 600;
    background-color: #f6f0f9;
    border-radius: 11px;
    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

.jp_book_card_action i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.jp_book_card:hover .jp_book_card_action,
.jp_book_card:focus-visible .jp_book_card_action {
    color: #ffffff;
    background-color: #7617aa;
}

.jp_gallery_hero_section {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    margin: 0;
    padding: 80px 0;
    align-items: center;
    overflow: hidden;
    background: var(--bg_color_2);
}

.jp_gallery_hero_section .jp_gallery_hero_content {
    width: 100%;
}

.jp_gallery_hero_section .jp_gallery_hero_content h1 {
    margin: 0 0 20px;
    color: #ffffff;
    font-family: var(--font_primary);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
}

.jp_gallery_hero_section .jp_gallery_hero_content p {
    max-width: 850px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font_primary);
    font-size: 18px;
    font-weight: 400;
    line-height: 31px;
}

.jp_gallery_hero_section .container,
.jp_gallery_hero_section .row,
.jp_gallery_hero_section [class*="col-"] {
    background: transparent;
}

.jp_gallery_page_section {
    position: relative;
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%,
            rgba(52, 10, 100, 0.05),
            transparent 28%),
        radial-gradient(circle at 88% 84%,
            rgba(52, 10, 100, 0.04),
            transparent 26%),
        var(--bg_color_1);
}

.jp_gallery_page_section .container {
    position: relative;
    z-index: 2;
}

.jp_gallery_page_section .jp_gallery_page_heading {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 44px;
    text-align: center;
}

.jp_gallery_page_section .jp_gallery_page_heading h2 {
    margin: 0 0 5px;
    color: var(--text_color_3);
    font-family: var(--font_primary);
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
}

.jp_gallery_page_section .jp_gallery_page_heading .bottomline_shape {
    display: block;
    width: auto;
    max-width: 200px;
    height: auto;
    margin: 0 auto 15px;
    object-fit: contain;
}

.jp_gallery_page_section .jp_gallery_page_heading p {
    margin: 0;
    color: var(--text_color_4);
    font-family: var(--font_primary);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.jp_gallery_page_section .jp_gallery_row {
    display: flex;
    width: auto;
    margin-top: 0;
    flex-wrap: wrap;
    align-items: flex-start;
}

.jp_gallery_page_section .jp_gallery_column {
    display: flex;
    min-width: 0;
    align-items: flex-start;
}

.jp_gallery_page_section .jp_gallery_item {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    overflow: hidden;
    background-color: var(--bg_color_3);
    border-radius: 8px;
    box-shadow:
        0 12px 30px rgba(52, 10, 100, 0.09),
        0 3px 8px rgba(52, 10, 100, 0.05);
    transform: translateZ(0);
}

.jp_gallery_page_section .jp_gallery_item img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition:
        transform 0.65s ease,
        filter 0.45s ease;
}

.jp_gallery_page_section .jp_gallery_view_button {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background:
        linear-gradient(180deg,
            rgba(16, 3, 29, 0.08),
            rgba(34, 6, 61, 0.65));
    border: 0;
    outline: none;
    transition:
        opacity 0.35s ease,
        background-color 0.35s ease;
}

.jp_gallery_page_section .jp_gallery_view_icon {
    display: inline-flex;
    width: 62px;
    height: 62px;
    align-items: center;
    justify-content: center;
    color: var(--text_color_2);
    font-size: 22px;
    background-color: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    box-shadow:
        0 10px 30px rgba(14, 2, 26, 0.26),
        inset 0 0 0 6px rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(6px);
    transform: translateY(12px) scale(0.82);
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.4s ease;
}

.jp_gallery_page_section .jp_gallery_item:hover img {
    filter: saturate(0.92) brightness(0.88);
    transform: scale(1.045);
}

.jp_gallery_page_section .jp_gallery_item:hover .jp_gallery_view_button,
.jp_gallery_page_section .jp_gallery_view_button:focus-visible {
    opacity: 1;
}

.jp_gallery_page_section .jp_gallery_item:hover .jp_gallery_view_icon,
.jp_gallery_page_section .jp_gallery_view_button:focus-visible .jp_gallery_view_icon {
    transform: translateY(0) scale(1);
}

.jp_gallery_page_section .jp_gallery_view_icon:hover {
    color: var(--text_color_3);
    background-color: var(--bg_color_1);
}

.jp_gallery_page_section .jp_gallery_view_button:focus-visible {
    box-shadow:
        inset 0 0 0 4px rgba(255, 255, 255, 0.8);
}

.jp_gallery_lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    width: 100%;
    height: 100%;
    padding: 24px;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
        visibility 0.35s ease,
        opacity 0.35s ease;
}

.jp_gallery_lightbox.jp_gallery_lightbox_active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.jp_gallery_lightbox .jp_gallery_lightbox_backdrop {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: rgba(17, 3, 31, 0.94);
    backdrop-filter: blur(9px);
}

.jp_gallery_lightbox .jp_gallery_lightbox_dialog {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.jp_gallery_lightbox .jp_gallery_lightbox_media {
    position: relative;
    display: flex;
    width: calc(100% - 150px);
    height: 100%;
    align-items: center;
    justify-content: center;
    padding-top: 25px;
    padding-bottom: 65px;
    flex-direction: column;
    row-gap: 12px;
}


.jp_gallery_lightbox .jp_gallery_lightbox_media img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: calc(100vh - 70px);
    opacity: 0;
    object-fit: contain;
    transform: scale(0.96);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.jp_gallery_lightbox .jp_gallery_lightbox_media img.jp_gallery_lightbox_image_ready {
    opacity: 1;
    transform: scale(1);
}

.jp_gallery_lightbox_caption {
    position: relative;
    z-index: 4;
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 0;
    padding: 0 14px;
    /* overflow: hidden; */
    color: #ffffff;
    font-family: var(--font_primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    /* text-overflow: ellipsis; */
    /* white-space: nowrap; */
}

.jp_gallery_lightbox_caption[hidden],
.jp_gallery_lightbox_caption:empty {
    display: none;
}

.jp_gallery_lightbox .jp_gallery_lightbox_loader {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
}

.jp_gallery_lightbox .jp_gallery_lightbox_loader span {
    display: block;
    width: 38px;
    height: 38px;
    border: 3px solid rgba(255, 255, 255, 0.22);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation:
        jpGalleryPageLoaderRotation 0.8s linear infinite;
}

.jp_gallery_lightbox .jp_gallery_lightbox_loader.jp_gallery_lightbox_loader_hidden {
    display: none;
}

.jp_gallery_lightbox .jp_gallery_lightbox_close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    display: inline-flex;
    width: 48px;
    height: 48px;
    padding: 0;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    outline: none;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.jp_gallery_lightbox .jp_gallery_lightbox_close:hover {
    color: var(--text_color_3);
    background-color: #ffffff;
    transform: rotate(90deg);
}

.jp_gallery_lightbox .jp_gallery_lightbox_close:focus-visible {
    box-shadow:
        0 0 0 4px rgba(255, 255, 255, 0.18);
}

.jp_gallery_lightbox .jp_gallery_lightbox_navigation {
    position: relative;
    z-index: 4;
    display: inline-flex;
    width: 50px;
    height: 50px;
    padding: 0;
    flex: 0 0 50px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 15px;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    outline: none;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.jp_gallery_lightbox .jp_gallery_lightbox_navigation:hover {
    color: var(--text_color_3);
    background-color: #ffffff;
}

.jp_gallery_lightbox .jp_gallery_lightbox_navigation:focus-visible {
    box-shadow:
        0 0 0 4px rgba(255, 255, 255, 0.18);
}

.jp_gallery_lightbox .jp_gallery_lightbox_previous {
    margin-right: 24px;
}

.jp_gallery_lightbox .jp_gallery_lightbox_next {
    margin-left: 24px;
}

.jp_gallery_lightbox .jp_gallery_lightbox_counter {
    position: fixed;
    bottom: 24px;
    left: 50%;
    z-index: 5;
    display: inline-flex;
    min-width: 82px;
    min-height: 38px;
    padding: 7px 15px;
    align-items: center;
    justify-content: center;
    column-gap: 6px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    transform: translateX(-50%);
}

@keyframes jpGalleryPageLoaderRotation {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

.jp_book_detail_main_section {
    position: relative;
    width: 100%;
    padding: 90px 0;
    overflow: hidden;
    background-color: var(--bg_color_1);
}

.jp_book_detail_main_section .container {
    position: relative;
    z-index: 2;
}

.jp_book_detail_main_section .jp_book_detail_back_area {
    display: flex;
    width: 100%;
    margin-bottom: 26px;
    align-items: center;
    justify-content: end;
}

.jp_book_detail_main_section .jp_book_detail_back_link {
    display: inline-flex;
    min-height: 44px;
    padding: 9px 18px;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    color: var(--text_color_3);
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    background-color: #ffffff;
    border: 1px solid var(--bg_color_4);
    border-radius: 30px;
    box-shadow: 0 8px 22px rgba(52, 10, 100, 0.08);
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.jp_book_detail_main_section .jp_book_detail_back_link i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.jp_book_detail_main_section .jp_book_detail_back_link:hover {
    color: #ffffff;
    background-color: var(--bg_color_2);
    border-color: var(--bg_color_2);
    box-shadow: 0 12px 28px rgba(52, 10, 100, 0.18);
}

.jp_book_detail_main_section .jp_book_detail_back_link:hover i {
    transform: translateX(-4px);
}

.jp_book_detail_main_section .jp_book_detail_back_link:focus-visible {
    outline: none;
    box-shadow:
        0 8px 22px rgba(52, 10, 100, 0.08),
        0 0 0 4px rgba(52, 10, 100, 0.12);
}

.jp_book_detail_main_section .jp_book_detail_shell {
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid rgba(52, 10, 100, 0.1);
    border-radius: 24px;
}

.jp_book_detail_main_section .jp_book_detail_shell>.row {
    width: 100%;
    margin: 0;
}

.jp_book_detail_main_section .jp_book_detail_media_column {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 640px;
    padding: 56px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #F3F3F3;
}

.jp_book_detail_main_section .jp_book_detail_cover_wrap {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    max-width: 360px;
    align-items: center;
    justify-content: center;
}

.jp_book_detail_main_section .jp_book_detail_cover_pattern {
    position: absolute;
    top: -28px;
    right: -28px;
    width: 86px;
    height: 86px;
    pointer-events: none;
    opacity: 0.38;
    background-image:
        radial-gradient(circle,
            rgba(255, 255, 255, 0.9) 1.4px,
            transparent 1.4px);
    background-size: 13px 13px;
}

.jp_book_detail_main_section .jp_book_detail_cover {
    position: relative;
    display: flex;
    width: 100%;
    padding: 9px;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 12px;
    box-shadow:
        0 12px 24px rgba(13, 1, 24, 0.16),
        0 3px 8px rgba(13, 1, 24, 0.08);
}

.jp_book_detail_main_section .jp_book_detail_cover::after {
    position: absolute;
    inset: 9px;
    content: "";
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 7px;
}

.jp_book_detail_main_section .jp_book_detail_cover img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 510px;
    object-fit: contain;
    border-radius: 7px;
}

.jp_book_detail_main_section .jp_book_detail_content_column {
    display: flex;
    width: 100%;
    min-height: 640px;
    padding: 60px;
    justify-content: center;
    flex-direction: column;
}

.jp_book_detail_main_section .jp_book_detail_category {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    min-height: 34px;
    margin-bottom: 18px;
    padding: 6px 15px;
    align-items: center;
    justify-content: center;
    color: var(--text_color_3);
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    background-color: var(--bg_color_3);
    border: 1px solid var(--bg_color_4);
    border-radius: 30px;
}

.jp_book_detail_main_section .jp_book_detail_content_column h2 {
    margin: 0 0 4px;
    color: var(--text_color_3);
    font-family: var(--font_primary);
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
}

.jp_book_detail_main_section .jp_book_detail_content_column .bottomline_shape {
    display: block;
    width: auto;
    max-width: 190px;
    height: auto;
    margin: 0 0 20px;
    object-fit: contain;
}

.jp_book_detail_main_section .jp_book_detail_intro {
    margin: 0 0 30px;
    color: var(--text_color_4);
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
}

.jp_book_detail_main_section .jp_book_detail_information {
    display: flex;
    width: 100%;
    margin: -7px;
    flex-wrap: wrap;
}

.jp_book_detail_main_section .jp_book_detail_information_item {
    display: flex;
    width: calc(50% - 14px);
    min-height: 86px;
    margin: 7px;
    padding: 16px;
    align-items: center;
    column-gap: 14px;
    background-color: #fbf9fc;
    border: 1px solid #ece3f1;
    border-radius: 14px;
}

.jp_book_detail_main_section .jp_book_detail_information_icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    background-color: var(--bg_color_2);
    border-radius: 12px;
}

.jp_book_detail_main_section .jp_book_detail_information_content {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: column;
}

.jp_book_detail_main_section .jp_book_detail_information_content small {
    margin-bottom: 2px;
    color: #8a7d91;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
}

.jp_book_detail_main_section .jp_book_detail_information_content strong {
    color: var(--text_color_5);
    font-size: 15px;
    font-weight: 600;
    line-height: 23px;
    overflow-wrap: anywhere;
}

.jp_book_detail_description_section {
    position: relative;
    width: 100%;
    padding: 0 0 100px;
    background-color: var(--bg_color_1);
}

.jp_book_detail_description_section .jp_book_detail_description_card {
    position: relative;
    display: flex;
    width: 100%;
    padding: 42px;
    overflow: hidden;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid rgba(52, 10, 100, 0.1);
    border-radius: 20px;
    box-shadow: 0 18px 48px rgba(52, 10, 100, 0.08);
}

.jp_book_detail_description_section .jp_book_detail_description_heading {
    display: flex;
    width: 100%;
    margin-bottom: 24px;
    align-items: center;
    column-gap: 15px;
}

.jp_book_detail_description_section .jp_book_detail_description_icon {
    display: inline-flex;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 19px;
    background-color: var(--bg_color_2);
    border-radius: 15px;
    box-shadow: 0 10px 24px rgba(52, 10, 100, 0.2);
}

.jp_book_detail_description_section .jp_book_detail_description_heading h2 {
    margin: 0;
    color: var(--text_color_3);
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
}

.jp_book_detail_description_section .jp_book_detail_heading_line {
    display: block;
    width: 48px;
    height: 3px;
    margin-top: 7px;
    background-color: var(--bg_color_2);
    border-radius: 20px;
}

.jp_book_detail_description_section .jp_book_detail_description_content {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.jp_book_detail_description_section .jp_book_detail_description_content p {
    margin: 0 0 6px 0;
    color: var(--text_color_4);
    font-size: 16px;
    font-weight: 400;
}

.jp_book_detail_description_section .jp_book_detail_description_content p:last-child {
    margin-bottom: 0;
}

.jp_rajul_profile_section {
    padding: 70px 0;
    border-bottom: 1px solid var(--bg_color_4);
}

.jp_rajul_profile_section .jp_rajul_profile_image {
    width: min(500px, 100%);
    margin: 0 auto;
    overflow: hidden;
    background-color: var(--bg_color_3);
    border: 1px solid var(--bg_color_4);
    border-radius: 12px;
}

.jp_rajul_profile_section .jp_rajul_profile_image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

.jp_rajul_profile_section .jp_rajul_profile_name {
    margin-top: 24px;
    text-align: center;
}

.jp_rajul_profile_section .jp_rajul_profile_name h1 {
    margin: 0;
    color: var(--text_color_3);
    font-family: var(--font_primary);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.jp_rajul_profile_section .jp_rajul_profile_description {
    margin-top: 16px;
    text-align: center;
}

.jp_rajul_profile_section .jp_rajul_profile_description p {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text_color_4);
    font-family: var(--font_primary);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.jp_rajul_media_section {
    padding: 70px 0;
    background-color: #F3F3F3;
}

.jp_rajul_media_section .jp_rajul_media_heading {
    width: 100%;
    margin: 0 auto 38px;
    text-align: center;
}

.jp_rajul_media_section .jp_rajul_media_heading h2 {
    margin: 0 0 5px;
    color: var(--text_color_3);
    font-family: var(--font_primary);
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
}

.jp_rajul_media_section .jp_rajul_media_heading .bottomline_shape {
    display: block;
    width: 200px;
    height: auto;
    margin: 0 auto 15px;
    object-fit: contain;
}

.jp_rajul_media_section .jp_rajul_media_heading p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text_color_4);
    font-family: var(--font_primary);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
}

.jp_rajul_media_section .jp_rajul_media_slider {
    width: 100%;
    overflow: hidden;
}

.jp_rajul_media_section .jp_rajul_media_slider .swiper-slide {
    display: flex;
    height: auto;
}

.jp_rajul_media_section .jp_rajul_media_item {
    display: flex;
    width: 100%;
    min-width: 0;
    margin: 0;
    flex-direction: column;
}

.jp_rajul_media_section .jp_rajul_media_box {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: var(--bg_color_3);
    border: 1px solid var(--bg_color_4);
    border-radius: 8px;
}

.jp_rajul_media_section .jp_rajul_media_box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.jp_rajul_media_section .jp_rajul_video_item {
    cursor: pointer;
    outline: none;
}

.jp_rajul_media_section .jp_rajul_video_item .jp_rajul_media_box {
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.jp_rajul_media_section .jp_rajul_video_item:hover .jp_rajul_media_box {
    border-color: rgba(52, 10, 100, 0.35);
    box-shadow: 0 12px 28px rgba(52, 10, 100, 0.12);
}

.jp_rajul_media_section .jp_rajul_video_item:focus-visible .jp_rajul_media_box {
    border-color: var(--bg_color_2);
    box-shadow: 0 0 0 4px rgba(52, 10, 100, 0.15);
}

.jp_rajul_media_section .jp_rajul_media_item>h3,
.jp_rajul_media_section .jp_rajul_media_title {
    display: block;
    margin: 10px 0 0;
    color: var(--text_color_5);
    font-family: var(--font_primary);
    font-size: 17px;
    font-weight: 600;
    line-height: 26px;
    text-align: left;
}

.jp_rajul_media_section .jp_rajul_video_item:hover .jp_rajul_media_title,
.jp_rajul_media_section .jp_rajul_video_item:focus-visible .jp_rajul_media_title {
    color: var(--text_color_3);
}

.jp_rajul_media_section .jp_rajul_media_controls {
    display: flex;
    width: 100%;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
    column-gap: 18px;
}

.jp_rajul_media_section .jp_rajul_media_navigation {
    display: inline-flex;
    width: 46px;
    height: 46px;
    padding: 0;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    background-color: var(--bg_color_2);
    border: 1px solid var(--bg_color_2);
    border-radius: 50%;
    outline: none;
    box-shadow: 0 9px 22px rgba(52, 10, 100, 0.18);
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        opacity 0.25s ease;
}

.jp_rajul_media_section .jp_rajul_media_navigation:hover:not(:disabled) {
    color: var(--text_color_3);
    background-color: #ffffff;
    border-color: var(--bg_color_2);
    box-shadow: 0 12px 26px rgba(52, 10, 100, 0.2);
}

.jp_rajul_media_section .jp_rajul_media_navigation:focus-visible {
    box-shadow:
        0 9px 22px rgba(52, 10, 100, 0.18),
        0 0 0 4px rgba(52, 10, 100, 0.14);
}

.jp_rajul_media_section .jp_rajul_media_navigation:disabled {
    cursor: not-allowed;
    opacity: 0.35;
    box-shadow: none;
}

.jp_rajul_media_section .jp_rajul_media_pagination {
    display: inline-flex;
    min-width: 58px;
    min-height: 24px;
    align-items: center;
    justify-content: center;
    column-gap: 7px;
}

.jp_rajul_media_section .jp_rajul_media_dot {
    display: block;
    width: 8px;
    height: 8px;
    margin: 0;
    padding: 0;
    flex: 0 0 8px;
    opacity: 0.32;
    background-color: var(--bg_color_2);
    border: 0;
    border-radius: 50%;
    outline: none;
    transition:
        width 0.25s ease,
        flex-basis 0.25s ease,
        opacity 0.25s ease,
        border-radius 0.25s ease;
}

.jp_rajul_media_section .jp_rajul_media_dot.active {
    width: 24px;
    flex-basis: 24px;
    opacity: 1;
    border-radius: 20px;
}

.jp_rajul_media_section .jp_rajul_media_dot:focus-visible {
    box-shadow: 0 0 0 3px rgba(52, 10, 100, 0.16);
}

.jp_rajul_media_section .jp_rajul_video_box {
    background-color: var(--bg_color_3);
}

.jp_rajul_media_section .jp_rajul_gallery_youtube_frame {
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border: 0;
}

.jp_rajul_media_section .jp_rajul_video_item:hover .jp_rajul_video_box {
    border-color: rgba(52, 10, 100, 0.35);
    box-shadow: 0 12px 28px rgba(52, 10, 100, 0.12);
}

.jp_rajul_media_section .jp_rajul_video_item:focus-visible .jp_rajul_video_box {
    border-color: var(--bg_color_2);
    box-shadow: 0 0 0 4px rgba(52, 10, 100, 0.15);
}

.jp_rajul_awards_section {
    padding: 70px 0;
}

.jp_rajul_awards_section .jp_rajul_awards_heading {
    width: 100%;
    max-width: 820px;
    margin: 0 auto 38px;
    text-align: center;
}

.jp_rajul_awards_section .jp_rajul_awards_heading h2 {
    margin: 0 0 5px;
    color: var(--text_color_3);
    font-family: var(--font_primary);
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
}

.jp_rajul_awards_section .jp_rajul_awards_heading .bottomline_shape {
    display: block;
    width: 200px;
    height: auto;
    margin: 0 auto 15px;
    object-fit: contain;
}

.jp_rajul_awards_section .jp_rajul_awards_heading p {
    margin: 0;
    color: var(--text_color_4);
    font-family: var(--font_primary);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.jp_rajul_awards_section .jp_rajul_awards_row>div {
    display: flex;
}

.jp_rajul_awards_section .jp_rajul_award_card {
    display: flex;
    width: 100%;
    min-height: 175px;
    padding: 24px;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid var(--bg_color_4);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(52, 10, 100, 0.07);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.jp_rajul_awards_section .jp_rajul_award_card:hover {
    border-color: rgba(52, 10, 100, 0.25);
    box-shadow: 0 18px 40px rgba(52, 10, 100, 0.12);
}

.jp_rajul_awards_section .jp_rajul_award_top {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
    align-items: start;
    justify-content: space-between;
    column-gap: 14px;
}

.jp_rajul_awards_section .jp_rajul_award_icon {
    display: inline-flex;
    width: 54px;
    height: 54px;
    margin: 0;
    flex: 0 0 54px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    background-color: var(--bg_color_2);
    border-radius: 14px;
    box-shadow: 0 9px 22px rgba(52, 10, 100, 0.2);
}

.jp_rajul_awards_section .jp_rajul_award_year {
    display: inline-flex;
    min-height: 30px;
    padding: 5px 12px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: var(--text_color_3);
    font-family: var(--font_primary);
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    background-color: var(--bg_color_3);
    border: 1px solid var(--bg_color_4);
    border-radius: 20px;
}

.jp_rajul_awards_section .jp_rajul_award_card h3 {
    margin: auto 0 0;
    color: var(--text_color_3);
    font-family: var(--font_primary);
    font-size: 20px;
    font-weight: 700;
    line-height: 29px;
}

.jp_rajul_video_modal .modal-content {
    overflow: hidden;
    background-color: #ffffff;
    border: 0;
    border-radius: 14px;
    box-shadow: 0 24px 70px rgba(18, 3, 33, 0.28);
}

.jp_rajul_video_modal .modal-header {
    display: flex;
    min-height: 62px;
    padding: 15px 20px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--bg_color_4);
}

.jp_rajul_video_modal .modal-title {
    margin: 0;
    color: var(--text_color_3);
    font-family: var(--font_primary);
    font-size: 21px;
    font-weight: 700;
    line-height: 30px;
}

.jp_rajul_video_modal .modal-body {
    padding: 0;
    overflow: hidden;
    background-color: var(--bg_color_3);
}

.jp_rajul_video_modal iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.jp_rajul_video_modal .btn-close {
    margin: 0;
    box-shadow: none;
}

.jp_rajul_video_modal .btn-close:focus {
    box-shadow: 0 0 0 3px rgba(52, 10, 100, 0.14);
}

.jp_rajul_video_modal .modal-dialog.modal-xl {
    max-width: 1140px;
}

.jp_rajul_books_section {
    position: relative;
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
    background-color: #f3f3f3;
}

.jp_rajul_books_section .container {
    position: relative;
    z-index: 2;
}

.jp_rajul_books_heading {
    width: 100%;
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.jp_rajul_books_heading h2 {
    margin: 0 0 6px;
    color: var(--text_color_3);
    font-family: var(--font_primary);
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
}

.jp_rajul_books_heading .bottomline_shape {
    display: block;
    width: auto;
    max-width: 190px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.jp_rajul_books_grid {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
    width: auto;
    margin-top: 0;
}

.jp_rajul_books_grid>[class*="col-"] {
    display: flex;
    min-width: 0;
}

.jp_rajul_books_grid .jp_book_grid_item {
    min-width: 0;
}

.jp_rajul_books_grid .jp_book_card {
    width: 100%;
    min-width: 0;
}

.jp_rajul_books_grid .jp_book_card_action i {
    transition: transform 0.25s ease;
}

.jp_rajul_books_grid .jp_book_card:hover .jp_book_card_action i,
.jp_rajul_books_grid .jp_book_card:focus-visible .jp_book_card_action i {
    transform: translateX(4px);
}

.jp_writers_testimonial_section {
    position: relative;
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
    background-color: var(--bg_color_1);
}

.jp_writers_testimonial_section .container {
    position: relative;
    z-index: 2;
}

.jp_writers_testimonial_heading {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 44px;
    text-align: center;
}

.jp_writers_testimonial_heading h2 {
    margin: 0 0 5px;
    color: var(--text_color_3);
    font-family: var(--font_primary);
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
}

.jp_writers_testimonial_heading .bottomline_shape {
    display: block;
    width: auto;
    max-width: 200px;
    height: auto;
    margin: 0 auto 15px;
    object-fit: contain;
}

.jp_writers_testimonial_heading p {
    margin: 0;
    color: var(--text_color_4);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.jp_writers_testimonial_slider {
    width: 100%;
    padding: 8px 4px 18px;
    overflow: hidden;
}

.jp_writers_testimonial_slider .swiper-slide {
    display: flex;
    height: auto;
}

.jp_writers_testimonial_card {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 470px;
    padding: 28px;
    flex-direction: column;
    overflow: hidden;
    background-color: var(--bg_color_1);
    border: 1px solid var(--bg_color_4);
    border-radius: 18px;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.jp_writers_testimonial_card:hover {
    border-color: rgba(52, 10, 100, 0.3);
}

.jp_writers_testimonial_person {
    position: relative;
    display: flex;
    width: 100%;
    padding-bottom: 20px;
    align-items: center;
    border-bottom: 1px solid var(--bg_color_4);
}

.jp_writers_testimonial_image {
    width: 72px;
    height: 72px;
    margin-right: 15px;
    flex: 0 0 72px;
    overflow: hidden;
    background-color: var(--bg_color_3);
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 7px 18px rgba(52, 10, 100, 0.15);
}

.jp_writers_testimonial_image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.jp_writers_testimonial_person_content {
    min-width: 0;
    padding-right: 45px;
    flex: 1 1 auto;
}

.jp_writers_testimonial_person_content h3 {
    margin: 0;
    color: var(--text_color_3);
    font-family: var(--font_primary);
    font-size: 19px;
    font-weight: 700;
    line-height: 27px;
    overflow-wrap: anywhere;
}

.jp_writers_testimonial_quote {
    position: absolute;
    top: 35px;
    right: 0;
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    color: var(--text_color_2);
    font-size: 13px;
    background-color: var(--bg_color_2);
    border-radius: 11px;
    transform: translateY(-50%);
}


/* Writers testimonials: release vertical scrolling to the page at text boundaries. */
.lenis.lenis-smooth .jp_writers_testimonial_description[data-lenis-prevent] {
    overscroll-behavior-y: auto;
}

.jp_writers_testimonial_description {
    min-height: 0;
    margin-top: 22px;
    padding-right: 9px;
    overflow-x: hidden;
    overflow-y: auto;
    flex: 1 1 auto;
    scrollbar-width: thin;
    scrollbar-color: #bda8cb #f2edf5;
}

.jp_writers_testimonial_description::-webkit-scrollbar {
    width: 6px;
}

.jp_writers_testimonial_description::-webkit-scrollbar-track {
    background-color: #f2edf5;
    border-radius: 20px;
}

.jp_writers_testimonial_description::-webkit-scrollbar-thumb {
    background-color: #bda8cb;
    border-radius: 20px;
}

.jp_writers_testimonial_description p {
    margin: 0;
    color: var(--text_color_5);
    font-family: var(--font_primary);
    font-size: 15px;
    font-weight: 400;
    line-height: 27px;
}

.jp_writers_testimonial_controls {
    display: flex;
    width: 100%;
    margin-top: 24px;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
}

.jp_writers_testimonial_navigation {
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 0;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    color: var(--text_color_2);
    font-size: 13px;
    background-color: var(--bg_color_2);
    border: 1px solid var(--bg_color_2);
    border-radius: 50%;
    outline: none;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        opacity 0.25s ease;
}

.jp_writers_testimonial_navigation:hover:not(:disabled) {
    color: var(--text_color_3);
    background-color: var(--bg_color_1);
}

.jp_writers_testimonial_navigation:focus-visible {
    box-shadow: 0 0 0 4px rgba(52, 10, 100, 0.12);
}

.jp_writers_testimonial_navigation:disabled {
    cursor: not-allowed;
    opacity: 0.3;
}

.jp_writers_testimonial_pagination {
    display: flex;
    width: auto;
    min-width: 66px;
    height: 24px;
    align-items: center;
    justify-content: center;
    column-gap: 7px;
}

.jp_writers_testimonial_dot {
    display: block;
    width: 8px;
    height: 8px;
    margin: 0;
    padding: 0;
    flex: 0 0 8px;
    opacity: 0.28;
    background-color: var(--bg_color_2);
    border: 0;
    border-radius: 50%;
    outline: none;
    transition:
        width 0.25s ease,
        flex-basis 0.25s ease,
        opacity 0.25s ease,
        border-radius 0.25s ease;
}

.jp_writers_testimonial_dot.active {
    width: 24px;
    flex-basis: 24px;
    opacity: 1;
    border-radius: 20px;
}

.jp_writers_testimonial_dot:focus-visible {
    box-shadow: 0 0 0 3px rgba(52, 10, 100, 0.16);
}

.jp_jaymall_words_section {
    position: relative;
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
    background-color: #F3F3F3;
}

.jp_jaymall_words_section .container {
    position: relative;
    z-index: 2;
}

.jp_jaymall_words_heading {
    width: 100%;
    max-width: 860px;
    margin: 0 auto 44px;
    text-align: center;
}

.jp_jaymall_words_heading h2 {
    margin: 0 0 5px;
    color: var(--text_color_3);
    font-family: var(--font_primary);
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
}

.jp_jaymall_words_heading .bottomline_shape {
    display: block;
    width: auto;
    max-width: 200px;
    height: auto;
    margin: 0 auto 15px;
    object-fit: contain;
}

.jp_jaymall_words_heading p {
    margin: 0;
    color: var(--text_color_4);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.jp_jaymall_words_slider_wrap {
    position: relative;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
}

.jp_jaymall_words_slider {
    width: 100%;
    height: auto;
    padding: 8px 4px 12px;
    overflow: hidden;
}

.jp_jaymall_words_slider .swiper-wrapper {
    align-items: stretch;
    transition-property: transform;
}

.jp_jaymall_words_slider .swiper-slide {
    display: flex;
    height: auto;
    align-items: stretch;
}

.jp_jaymall_words_slide {
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 52px 58px 34px;
    overflow: hidden;
    flex-direction: column;
    background:
        linear-gradient(145deg,
            rgba(247, 242, 252, 0.7),
            #ffffff 48%);
    border: 1px solid var(--bg_color_4);
    border-radius: 22px;
}

.jp_jaymall_words_slide::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    content: "";
    background:
        linear-gradient(90deg,
            var(--bg_color_2),
            #7a45a7);
}

.jp_jaymall_words_slide::after {
    position: absolute;
    top: 22px;
    right: 34px;
    content: "“";
    color: rgba(52, 10, 100, 0.07);
    font-family: Georgia, serif;
    font-size: 96px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.jp_jaymall_words_description_area {
    position: relative;
    z-index: 2;
    width: 100%;
    max-height: none;
    min-height: 0;
    padding-right: 0;
    overflow: visible;
    flex: 1 1 auto;
}

.jp_jaymall_words_description {
    max-width: 890px;
    margin: 0;
    color: var(--text_color_5);
    font-family: var(--font_primary);
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
}

.jp_jaymall_words_footer {
    position: relative;
    z-index: 3;
    display: flex;
    width: 100%;
    margin-top: 26px;
    padding-top: 22px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-end;
    border-top: 1px solid var(--bg_color_4);
}

.jp_jaymall_words_name {
    position: relative;
    display: inline-flex;
    margin: 0;
    align-items: center;
    color: var(--text_color_3);
    font-family: var(--font_primary);
    font-size: 19px;
    font-weight: 700;
    line-height: 28px;
}

.jp_jaymall_words_name::before {
    display: block;
    width: 38px;
    height: 2px;
    margin-right: 12px;
    content: "";
    background-color: var(--bg_color_2);
    border-radius: 20px;
}

.jp_jaymall_words_controls {
    display: flex;
    width: 100%;
    margin-top: 26px;
    align-items: center;
    justify-content: center;
    column-gap: 18px;
}

.jp_jaymall_words_navigation {
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 0;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 13px;
    background-color: var(--bg_color_2);
    border: 1px solid var(--bg_color_2);
    border-radius: 50%;
    outline: none;
    box-shadow: 0 10px 22px rgba(52, 10, 100, 0.2);
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}

.jp_jaymall_words_navigation:hover {
    color: var(--text_color_3);
    background-color: #ffffff;
    border-color: var(--bg_color_2);
    box-shadow: 0 12px 26px rgba(52, 10, 100, 0.2);
}

.jp_jaymall_words_navigation:focus-visible {
    box-shadow:
        0 10px 22px rgba(52, 10, 100, 0.2),
        0 0 0 4px rgba(52, 10, 100, 0.14);
}

.jp_jaymall_words_pagination {
    position: relative;
    display: flex;
    width: auto;
    min-width: 66px;
    height: 24px;
    align-items: center;
    justify-content: center;
    column-gap: 7px;
}

.jp_jaymall_words_dot {
    display: block;
    width: 8px;
    height: 8px;
    margin: 0;
    padding: 0;
    flex: 0 0 8px;
    opacity: 0.28;
    background-color: var(--bg_color_2);
    border: 0;
    border-radius: 50%;
    outline: none;
    transition:
        width 0.25s ease,
        flex-basis 0.25s ease,
        opacity 0.25s ease,
        border-radius 0.25s ease;
}

.jp_jaymall_words_dot.active {
    width: 24px;
    flex-basis: 24px;
    opacity: 1;
    border-radius: 20px;
}

.jp_jaymall_words_dot:focus-visible {
    box-shadow: 0 0 0 3px rgba(52, 10, 100, 0.16);
}

.jp_book_card_wrap {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    isolation: isolate;
}

.jp_book_card_wrap>.jp_book_card {
    position: relative;
    z-index: 1;
}

.jp_book_card_wrap>.jp_book_media_actions {
    top: 14px;
    right: 14px;
    z-index: 60;
    pointer-events: auto;
}

.jp_book_card_wrap>.jp_book_media_actions .jp_book_media_action {
    position: relative;
    z-index: 61;
    pointer-events: auto;
    touch-action: manipulation;
}

.jp_books_showcase_cover,
.jp_book_card_media,
.jp_book_detail_cover {
    position: relative;
}

.jp_book_media_actions {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 12;
    display: flex;
    flex-direction: column;
    gap: 9px;
    pointer-events: auto;
}

.jp_book_media_action {
    position: relative;
    display: inline-flex;
    padding: 0;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    color: #340a64;
    font-size: 17px;
    line-height: 1;
    background-color: rgba(255, 255, 255, 0.96);
    border: 0;
    border-radius: 50%;
    outline: none;
    box-shadow: 0 7px 20px rgba(31, 8, 51, 0.16);
    cursor: pointer;
    user-select: none;
    backdrop-filter: blur(8px);
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.jp_book_media_action::after {
    display: none;
}

.jp_book_media_action:active {
    color: #340a64;
    background-color: #eee5f6;
}

.jp_books_showcase_cover .jp_book_media_actions {
    top: 13px;
    right: 13px;
}

.jp_book_card_media .jp_book_media_actions {
    top: 14px;
    right: 14px;
}

.jp_book_detail_cover .jp_book_media_actions {
    top: 16px;
    right: 16px;
}

.jp_book_media_modal {
    z-index: 10050;
}

.jp_book_media_modal .modal-dialog {
    width: calc(100% - 30px);
    max-width: 860px;
    margin-right: auto;
    margin-left: auto;
}

.jp_book_media_modal .modal-content {
    overflow: hidden;
    background: #ffffff;
    border: 0;
    border-radius: 24px;
    box-shadow: 0 28px 80px rgba(20, 3, 38, 0.35);
}

.jp_book_media_modal .modal-header {
    min-height: 88px;
    padding: 18px 22px;
    color: #ffffff;
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.18), transparent 35%),
        linear-gradient(135deg, #250447 0%, #340a64 55%, #5b258a 100%);
    border-bottom: 0;
}

.jp_book_media_modal_heading {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 14px;
}

.jp_book_media_modal_icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    color: var(--text_color_3);
    font-size: 19px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.jp_book_media_modal_heading small {
    display: block;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.8px;
}

.jp_book_media_modal .modal-title {
    margin: 0;
    overflow: hidden;
    color: #ffffff;
    font-family: var(--font_primary);
    font-size: 23px;
    font-weight: 700;
    line-height: 31px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jp_book_media_modal .btn-close {
    flex: 0 0 auto;
    opacity: 1;
    filter: invert(1) grayscale(1) brightness(2);
}

.jp_book_media_modal .btn-close:focus {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.jp_book_media_modal .modal-body {
    min-height: 300px;
    padding: 26px;
    background:
        radial-gradient(circle at 8% 16%, rgba(52, 10, 100, 0.055), transparent 30%),
        #ffffff;
}

.jp_book_media_audio_panel {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    min-height: 260px;
    align-items: center;
    gap: 30px;
}

.jp_book_media_audio_cover {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 0.7;
    background-color: var(--bg_color_3);
    border: 1px solid var(--bg_color_4);
    border-radius: 17px;
    box-shadow: 0 18px 40px rgba(52, 10, 100, 0.16);
}

.jp_book_media_audio_cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* .jp_book_media_audio_cover>span {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    background-color: rgba(52, 10, 100, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
} */

.jp_book_media_audio_content {
    min-width: 0;
}

.jp_book_media_audio_content h3 {
    margin: 0 0 8px;
    color: var(--text_color_3);
    font-family: var(--font_primary);
    font-size: 28px;
    font-weight: 700;
    line-height: 38px;
}

.jp_book_media_audio_content p {
    margin: 0 0 22px;
    color: var(--text_color_4);
    font-size: 15px;
    line-height: 25px;
}

.jp_book_media_audio_content audio {
    display: block;
    width: 100%;
    min-height: 52px;
}

.jp_book_media_video_panel {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background-color: #09040d;
    border-radius: 16px;
    box-shadow: 0 20px 48px rgba(16, 3, 29, 0.26);
}

.jp_book_media_video_panel video,
.jp_book_media_video_panel iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: contain;
}

.jp_book_media_error {
    display: flex;
    min-height: 260px;
    padding: 34px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--text_color_3);
    text-align: center;
    background-color: var(--bg_color_3);
    border: 1px solid var(--bg_color_4);
    border-radius: 18px;
}

.jp_book_media_error>span {
    display: inline-flex;
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 23px;
    background-color: var(--bg_color_2);
    border-radius: 50%;
}

.jp_book_media_error h3 {
    margin: 0 0 6px;
    font-size: 23px;
    font-weight: 700;
    line-height: 32px;
}

.jp_book_media_error p {
    margin: 0;
    color: var(--text_color_4);
    font-size: 15px;
    line-height: 25px;
}

.jp_book_media_audio_panel[hidden],
.jp_book_media_video_panel[hidden],
.jp_book_media_video_panel iframe[hidden],
.jp_book_media_error[hidden] {
    display: none !important;
}

.jp_photo_gallery_lightbox {
    contain: layout paint style;
    will-change: opacity;
}

.jp_photo_gallery_lightbox_backdrop {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.jp_photo_gallery_lightbox_dialog,
.jp_photo_gallery_lightbox_media,
.jp_photo_gallery_lightbox_media img {
    transform: translateZ(0);
}

.jp_photo_gallery_lightbox_media img {
    will-change: opacity, transform;
}