.book-world-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.book-world-hero-swiper {
    width: 100%;
    height: 100%;
}

.book-world-hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.book-world-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

.book-world-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 1000px;
}

.book-world-hero-title {
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    font-weight: 400;
    color: var(--book-world-text-white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    animation: book-world-fadeInUp 1s ease-out;
}

.book-world-hero-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--book-world-text-white);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: book-world-fadeInUp 1.2s ease-out;
}

.book-world-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: book-world-fadeInUp 1.4s ease-out;
}

.book-world-hero-btn {
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
}

.book-world-hero-btn-primary {
    background: linear-gradient(
        135deg,
        var(--book-world-primary-gold),
        var(--book-world-dark-gold)
    );
    color: var(--book-world-text-white);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.book-world-hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5);
    color: var(--book-world-text-white);
}

.book-world-hero-btn-secondary {
    background: transparent;
    color: var(--book-world-text-white);
    border: 2px solid var(--book-world-text-white);
}

.book-world-hero-btn-secondary:hover {
    background: var(--book-world-text-white);
    color: var(--book-world-text-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.book-world-hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--book-world-text-white);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.book-world-hero-swiper .swiper-pagination-bullet-active {
    background: var(--book-world-primary-gold);
    opacity: 1;
    width: 35px;
    border-radius: 6px;
}

.book-world-hero-swiper .swiper-button-next,
.book-world-hero-swiper .swiper-button-prev {
    color: var(--book-world-text-white);
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 97, 0.3);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.book-world-hero-swiper .swiper-button-next:hover,
.book-world-hero-swiper .swiper-button-prev:hover {
    background: var(--book-world-primary-gold);
    transform: scale(1.1);
}

.book-world-hero-swiper .swiper-button-next::after,
.book-world-hero-swiper .swiper-button-prev::after {
    font-size: 20px;
}

@media (max-width: 768px) {
    .book-world-hero-title {
        font-size: 2.5rem;
    }

    .book-world-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .book-world-hero-buttons {
        gap: 1rem;
    }

    .book-world-hero-btn {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
    }

    .book-world-hero-swiper .swiper-button-next,
    .book-world-hero-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .book-world-hero-swiper .swiper-button-next::after,
    .book-world-hero-swiper .swiper-button-prev::after {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .book-world-hero-section {
        height: 100vh;
    }

    .book-world-hero-title {
        font-size: 2rem;
    }

    .book-world-hero-subtitle {
        font-size: 0.9rem;
    }

    .book-world-hero-buttons {
        gap: 0.8rem;
    }

    .book-world-hero-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .book-world-scroll-indicator {
        bottom: 2rem;
    }

    .book-world-hero-swiper .swiper-button-next,
    .book-world-hero-swiper .swiper-button-prev {
        display: none;
    }
}

.book-world-hero-slide[data-swiper-parallax] {
    transition: transform 0.3s ease-out;
}

.book-world-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--book-world-shadow-md);
}

.book-world-new-arrivals {
    padding: 80px 0;
    background-color: var(--book-world-bg-light);
}

.book-world-section-header {
    margin-bottom: 3rem;
}

.book-world-section-label {
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--book-world-text-medium);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.book-world-section-title {
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    color: var(--book-world-text-dark);
    font-weight: 400;
    margin-bottom: 0;
}

.book-world-view-all-link {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--book-world-text-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1.5px solid var(--book-world-text-dark);
    padding-bottom: 2px;
    transition: all 0.3s ease;
    display: inline-block;
}

.book-world-view-all-link:hover {
    color: var(--book-world-primary-gold);
    border-bottom-color: var(--book-world-primary-gold);
}

.book-world-new-book-card {
    background: var(--book-world-text-white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--book-world-shadow-sm);
    transition: all 0.4s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.book-world-new-book-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--book-world-shadow-lg);
}

.book-world-new-cover-author {
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--book-world-text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.book-world-new-cover-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 1.5rem;
}

.book-world-new-cover-bottom {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}

.book-world-new-book-info {
    padding: 1.8rem 1.5rem;
    background: var(--book-world-text-white);
    flex-grow: 1;
}

.book-world-new-book-name {
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--book-world-text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.book-world-new-book-description {
    font-size: 0.85rem;
    color: var(--book-world-text-medium);
    margin-bottom: 0.4rem;
    line-height: 1.5;
}

.book-world-new-book-meta {
    font-size: 0.85rem;
    color: var(--book-world-text-medium);
    margin-bottom: 1.2rem;
}

.book-world-new-book-price {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--book-world-primary-gold);
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .book-world-new-arrivals {
        padding: 3rem 0;
    }

    .book-world-section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .book-world-new-arrivals {
        padding: 2rem 0;
    }

    .book-world-section-title {
        font-size: 1.8rem;
    }

    .book-world-new-book-info {
        padding: 1.5rem 1.2rem;
    }
}

.book-world-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: book-world-fadeInUp 0.6s ease forwards;
}

@keyframes book-world-fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.book-world-new-book-card:nth-child(1) {
    animation-delay: 0.1s;
}

.book-world-new-book-card:nth-child(2) {
    animation-delay: 0.2s;
}

.book-world-new-book-card:nth-child(3) {
    animation-delay: 0.3s;
}

.book-world-new-book-card:nth-child(4) {
    animation-delay: 0.4s;
}

.book-world-new-book-image {
    position: relative;
}

.book-world-new-book-card:hover .hover-img {
    opacity: 1;
    transform: scale(1.05);
}

.book-world-new-book-card:hover .default-img {
    opacity: 0;
}

.book-world-new-book-image {
    position: relative;
    overflow: hidden;
}

.book-img {
    width: 100%;
    height: 330px;
    display: block;
    object-fit: cover;
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.book-world-fade-in {
    opacity: 1;
    transform: none;
}

.book-world-new-book-image {
    position: relative;
    overflow: hidden;
}

.hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.book-world-new-book-card:hover .hover-img {
    opacity: 1;
    transform: scale(1.05);
}

.book-world-new-book-card:hover .default-img {
    opacity: 0;
}

.swiper-slide {
    height: auto;
}

/* Navigation Buttons */
.book-arrivals-swiper .swiper-button-next,
.book-arrivals-swiper .swiper-button-prev {
    width: 45px;
    height: 45px;
    background: #111;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.book-arrivals-swiper .swiper-button-next:hover,
.book-arrivals-swiper .swiper-button-prev:hover {
    background: #c9a961;
    /* Golden theme */
    transform: scale(1.1);
}

/* Arrow icon size */
.book-arrivals-swiper .swiper-button-next::after,
.book-arrivals-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Pagination Dots */
.book-arrivals-swiper .swiper-pagination {
    bottom: 0px !important;
}

.book-arrivals-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    transition: 0.3s;
}

.book-arrivals-swiper .swiper-pagination-bullet-active {
    background: #c9a961;
    width: 25px;
    border-radius: 10px;
}

.book-world-hero-slide {
    transform: scale(1.05);
    transition: transform 6s ease;
}

.swiper-slide-active.book-world-hero-slide {
    transform: scale(1);
}

.book-world-hero-swiper .swiper-slide {
    pointer-events: none;
}

.book-world-hero-swiper .swiper-slide-active {
    pointer-events: auto;
}

/* Book Showcase Section */


/* Overlay */
.book-world-showcase-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:#00000038;
    z-index: 1;
}

/* Content should stay above overlay */
.book-world-showcase-section > * {
    position: relative;
    z-index: 2;
}

.book-world-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 240, 232, 0.95);
    z-index: 1;
}

.book-world-showcase-content {
    position: relative;
    z-index: 2;
}

/* Section Header */
.book-world-showcase-header {
    text-align: center;
    margin-bottom: 3rem;
}

.book-world-showcase-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--book-world-primary-gold);
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
}

.book-world-showcase-title {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    color: var(--book-world-text-dark);
    font-weight: 400;
    margin-bottom: 1rem;
}

.book-world-showcase-view-all {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 1.5px solid var(--book-world-text-medium);
    color: var(--book-world-text-medium);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.book-world-showcase-view-all:hover {
    background: var(--book-world-text-dark);
    border-color: var(--book-world-text-dark);
    color: var(--book-world-text-white);
}

/* Main Content Layout */

/* Testimonial Section */
.book-world-testimonial {
    background: var(--book-world-text-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--book-world-shadow-sm);
}

.book-world-testimonial-quote {
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--book-world-text-dark);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.book-world-testimonial-quote::before {
    content: '"';
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    color: var(--book-world-primary-gold);
    line-height: 0;
    display: block;
    margin-bottom: 1rem;
}

.book-world-testimonial-author {
    border-top: 1px solid #e8e8e8;
    padding-top: 1rem;
}

.book-world-testimonial-author-name {
    font-weight: 600;
    color: var(--book-world-text-dark);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.book-world-testimonial-author-title {
    font-size: 0.85rem;
    color: var(--book-world-text-medium);
}

/* Book Card */
.book-world-book-card {
    background: var(--book-world-text-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--book-world-shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
}

.book-world-book-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--book-world-shadow-lg);
}

.book-world-book-image {
    position: relative;
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.book-world-book-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Book Cover Design (Yellow Book Style) */
.book-world-book-cover-design {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.book-world-book-cover-author {
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--book-world-text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.book-world-book-cover-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.book-world-book-cover-title {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--book-world-text-dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.book-world-book-cover-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 0.8rem;
    color: var(--book-world-text-dark);
    line-height: 1.5;
    font-weight: 400;
}

.book-world-book-cover-flowers {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
    margin-top: auto;
}

.book-world-book-cover-flower {
    font-size: 2rem;
}

/* Book Info */
.book-world-book-info {
    padding: 1.5rem;
}

.book-world-book-name {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--book-world-text-dark);
    margin-bottom: 0.5rem;
}

.book-world-book-details {
    font-size: 0.85rem;
    color: var(--book-world-text-medium);
    margin-bottom: 0.3rem;
}

.book-world-book-author {
    font-size: 0.85rem;
    color: var(--book-world-text-medium);
    margin-bottom: 1rem;
}

.book-world-book-price {
    font-family: "Montserrat", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--book-world-primary-gold);
}

/* Responsive */

@media (max-width: 992px) {
    .book-world-showcase-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .book-world-testimonial {
        position: static;
    }

    .book-world-showcase-header {
        position: relative;
    }

    .book-world-showcase-view-all {
        position: static;
        display: inline-block;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .book-world-showcase-section {
        padding: 3rem 0;
    }

    .book-world-showcase-section {
        background-attachment: scroll;
    }

    .book-world-showcase-title {
        font-size: 2.2rem;
    }

    .book-world-testimonial {
        padding: 2rem;
    }

    .book-world-book-image {
        height: 320px;
    }
}

@media (max-width: 576px) {
    .book-world-showcase-section {
        padding: 2rem 0;
    }

    .book-world-showcase-title {
        font-size: 1.8rem;
    }

    .book-world-testimonial {
        padding: 1.5rem;
    }

    .book-world-testimonial-quote {
        font-size: 0.9rem;
    }

    .book-world-book-cover-design {
        padding: 1.5rem 1rem;
    }

    .book-world-book-cover-title {
        font-size: 1.3rem;
    }
}

/* Loading Animation */
.book-world-loading {
    opacity: 0;
    animation: book-world-fadeIn 0.6s ease forwards;
}

@keyframes book-world-fadeIn {
    to {
        opacity: 1;
    }
}

.book-world-book-card:nth-child(1) {
    animation-delay: 0.1s;
}

.book-world-book-card:nth-child(2) {
    animation-delay: 0.2s;
}

.book-world-book-card:nth-child(3) {
    animation-delay: 0.3s;
}

.book-world-book-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.book-world-book-card.book-visible {
    opacity: 1;
    transform: translateY(0);
}

.bookSwiper .swiper-button-next,
.bookSwiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #111;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.bookSwiper .swiper-button-next:hover,
.bookSwiper .swiper-button-prev:hover {
    background: #a76c05;
    transform: scale(1.1);
}

.bookSwiper .swiper-button-next::after,
.bookSwiper .swiper-button-prev::after {
    font-size: 16px;
}

/* Main Section */
#our-heritage-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--book-world-bg-light);
}

.our-heritage-container {
    width: 100%;
    padding: 80px 0;
}

/* Image Column */
.our-heritage-image-col {
    position: relative;
    height: 80vh;
    padding: 0 !important;
}

.our-heritage-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    /* overflow: hidden; */
}

.our-heritage-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.our-heritage-image-wrapper:hover .our-heritage-main-image {
    transform: scale(1.05);
}

/* Established Badge */
.our-heritage-badge {
    position: absolute;
    bottom: -60px;
    right: -80px;
    background-color: var(--book-world-text-dark);
    color: var(--book-world-text-white);
    padding: 70px 70px;
    text-align: center;
    box-shadow: var(--book-world-shadow-lg);
    z-index: 10;
    animation: our-heritage-badge-fade-in 1s ease 0.5s both;
}

.our-heritage-badge-text {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--book-world-text-gray);
    margin-bottom: 8px;
}

.our-heritage-badge-year {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--book-world-text-white);
    line-height: 1;
}

/* Content Column */
.our-heritage-content-col {
    padding: 0px 60px;
    display: flex;
    align-items: start;
    min-height: 80vh;
}

.our-heritage-content {
    max-width: 580px;
    animation: our-heritage-content-slide-in 0.8s ease both;
}

/* Label */
.our-heritage-label {
    color: var(--book-world-primary-gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: inline-block;
    position: relative;
}

.our-heritage-label::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 2px;
    background-color: var(--book-world-primary-gold);
}

/* Title */
.our-heritage-title {
    font-size: 52px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--book-world-text-dark);
    margin-bottom: 28px;
    font-family: "Georgia", "Times New Roman", serif;
}

/* Description */
.our-heritage-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--book-world-text-medium);
    margin-bottom: 40px;
}

/* Button */
.our-heritage-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: transparent;
    color: var(--book-world-text-dark);
    border: 2px solid var(--book-world-text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.our-heritage-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--book-world-text-dark);
    transition: left 0.3s ease;
    z-index: -1;
}

.our-heritage-btn:hover {
    color: var(--book-world-text-white);
    border-color: var(--book-world-text-dark);
}

.our-heritage-btn:hover::before {
    left: 0;
}

.our-heritage-arrow {
    transition: transform 0.3s ease;
}

.our-heritage-btn:hover .our-heritage-arrow {
    transform: translateX(5px);
}

/* Animations */
@keyframes our-heritage-badge-fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes our-heritage-content-slide-in {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */

/* Large Desktop */
@media (max-width: 1400px) {
    .our-heritage-title {
        font-size: 46px;
    }

    .our-heritage-badge {
        right: -60px;
        bottom: 60px;
        padding: 35px 45px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .our-heritage-content-col {
        padding: 60px 50px;
    }

    .our-heritage-title {
        font-size: 42px;
    }

    .our-heritage-badge {
        right: -50px;
        bottom: 50px;
        padding: 30px 40px;
    }

    .our-heritage-badge-year {
        font-size: 42px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    #our-heritage-section {
        min-height: auto;
    }

    .our-heritage-image-col {
        height: 60vh;
        min-height: 500px;
    }

    .our-heritage-content-col {
        min-height: auto;
        padding: 60px 40px;
    }

    .our-heritage-badge {
        right: 30px;
        bottom: 30px;
        padding: 25px 35px;
    }

    .our-heritage-badge-year {
        font-size: 38px;
    }

    .our-heritage-title {
        font-size: 38px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .our-heritage-image-col {
        height: 50vh;
        min-height: 400px;
    }

    .our-heritage-content-col {
        padding: 50px 30px;
    }

    .our-heritage-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .our-heritage-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .our-heritage-badge {
        right: 20px;
        bottom: 20px;
        padding: 20px 30px;
    }

    .our-heritage-badge-text {
        font-size: 12px;
    }

    .our-heritage-badge-year {
        font-size: 32px;
    }

    .our-heritage-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* Mobile Small */
@media (max-width: 576px) {
    .our-heritage-image-col {
        height: 45vh;
        min-height: 350px;
    }

    .our-heritage-content-col {
        padding: 40px 20px;
    }

    .our-heritage-label {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .our-heritage-title {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .our-heritage-description {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .our-heritage-badge {
        right: 15px;
        bottom: 15px;
        padding: 18px 25px;
    }

    .our-heritage-badge-text {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .our-heritage-badge-year {
        font-size: 28px;
    }

    .our-heritage-btn {
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
    .our-heritage-title {
        font-size: 24px;
    }

    .our-heritage-badge {
        padding: 15px 20px;
    }

    .our-heritage-badge-year {
        font-size: 24px;
    }
}

/* Main Section */
#the-reading-room-section {
    padding: 80px 0;
    background-color: var(--book-world-text-white);
}

.the-reading-room-container {
    width: 100%;
}

/* Header Section */
.the-reading-room-header {
    margin-bottom: 50px;
    position: relative;
}

.the-reading-room-header::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
}

/* Label */
.the-reading-room-label {
    color: var(--book-world-primary-gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

/* Title */
.the-reading-room-title {
    font-size: 48px;
    font-weight: 400;
    color: var(--book-world-text-dark);
    font-family: "Georgia", "Times New Roman", serif;
    line-height: 1.2;
    margin: 0;
}

/* View More Link */
.the-reading-room-view-more {
    color: var(--book-world-text-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.the-reading-room-view-more::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--book-world-text-dark);
    transition: width 0.3s ease;
}

.the-reading-room-view-more:hover {
    color: var(--book-world-primary-gold);
}

.the-reading-room-view-more:hover::after {
    width: 0;
    background-color: var(--book-world-primary-gold);
}

/* Blog Grid */
.the-reading-room-blog-grid {
    margin-top: 50px;
}

/* Blog Card */
.the-reading-room-blog-card {
    background-color: var(--book-world-text-white);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

.the-reading-room-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

/* Image Wrapper */
.the-reading-room-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.the-reading-room-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.the-reading-room-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.the-reading-room-blog-card:hover .the-reading-room-card-image {
    transform: scale(1.05);
}

.the-reading-room-blog-card:hover .the-reading-room-image-overlay {
    opacity: 1;
}

/* Card Content */
.the-reading-room-card-content {
    padding: 32px 0 0 0;
}

/* Card Category */
.the-reading-room-card-category {
    color: var(--book-world-primary-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Card Title */
.the-reading-room-card-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--book-world-text-dark);
    line-height: 1.4;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.the-reading-room-blog-card:hover .the-reading-room-card-title {
    color: var(--book-world-primary-gold);
}

/* Card Description */
.the-reading-room-card-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--book-world-text-medium);
    margin: 0;
}

/* Animations */
@keyframes the-reading-room-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.the-reading-room-blog-card {
    animation: the-reading-room-fade-in-up 0.6s ease both;
}

.the-reading-room-blog-card:nth-child(2) {
    animation-delay: 0.1s;
}

/* Responsive Design */

/* Large Desktop */
@media (max-width: 1400px) {
    .the-reading-room-title {
        font-size: 44px;
    }

    .the-reading-room-image-wrapper {
        height: 380px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    #the-reading-room-section {
        padding: 80px 0;
    }

    .the-reading-room-title {
        font-size: 40px;
    }

    .the-reading-room-image-wrapper {
        height: 350px;
    }

    .the-reading-room-card-content {
        padding: 28px 0 0 0;
    }
}

/* Tablet */
@media (max-width: 992px) {
    #the-reading-room-section {
        padding: 70px 0;
    }

    .the-reading-room-header {
        margin-bottom: 40px;
    }

    .the-reading-room-header::after {
        bottom: -20px;
    }

    .the-reading-room-title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .the-reading-room-view-more {
        margin-top: 15px;
    }

    .the-reading-room-blog-grid {
        margin-top: 40px;
    }

    .the-reading-room-image-wrapper {
        height: 320px;
    }

    .the-reading-room-card-title {
        font-size: 22px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    #the-reading-room-section {
        padding: 60px 0;
    }

    .the-reading-room-header {
        margin-bottom: 35px;
    }

    .the-reading-room-label {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .the-reading-room-title {
        font-size: 32px;
    }

    .the-reading-room-view-more {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .the-reading-room-blog-grid {
        margin-top: 35px;
    }

    .the-reading-room-image-wrapper {
        height: 300px;
    }

    .the-reading-room-card-content {
        padding: 24px 0 0 0;
    }

    .the-reading-room-card-category {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .the-reading-room-card-title {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .the-reading-room-card-description {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* Mobile Small */
@media (max-width: 576px) {
    #the-reading-room-section {
        padding: 50px 0;
    }

    .the-reading-room-header {
        margin-bottom: 30px;
    }

    .the-reading-room-header::after {
        bottom: -15px;
    }

    .the-reading-room-label {
        font-size: 11px;
        letter-spacing: 1.5px;
        margin-bottom: 10px;
    }

    .the-reading-room-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .the-reading-room-view-more {
        font-size: 11px;
    }

    .the-reading-room-blog-grid {
        margin-top: 30px;
    }

    .the-reading-room-image-wrapper {
        height: 250px;
    }

    .the-reading-room-card-content {
        padding: 20px 0 0 0;
    }

    .the-reading-room-card-category {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .the-reading-room-card-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .the-reading-room-card-description {
        font-size: 14px;
    }

    /* Stack cards vertically on mobile */
    .the-reading-room-blog-grid .row {
        gap: 40px;
    }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
    .the-reading-room-title {
        font-size: 24px;
    }

    .the-reading-room-image-wrapper {
        height: 220px;
    }

    .the-reading-room-card-title {
        font-size: 16px;
    }

    .the-reading-room-card-description {
        font-size: 13px;
    }
}

/* Hover Effects for Desktop Only */
@media (min-width: 992px) {
    .the-reading-room-blog-card {
        cursor: pointer;
    }

    .the-reading-room-blog-card:hover {
        transform: translateY(-5px);
    }
}

/* Print Styles */
@media print {
    #the-reading-room-section {
        padding: 20px 0;
    }

    .the-reading-room-view-more {
        display: none;
    }

    .the-reading-room-image-wrapper {
        height: auto;
        max-height: 300px;
    }
}

.the-reading-room-image-wrapper {
    position: relative;
    overflow: hidden;
}

.the-reading-room-card-image {
    width: 100%;
    display: block;
    transition: 0.5s ease;
}

/* Hover image ko upar stack karte hain */
.the-reading-room-image-wrapper .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

/* Hover effect */
.the-reading-room-blog-card:hover .hover-img {
    opacity: 1;
}

.the-reading-room-blog-card:hover .main-img {
    opacity: 0;
}

/* Smooth zoom effect */
.the-reading-room-blog-card:hover .the-reading-room-card-image {
    transform: scale(1.05);
}

/* Main Section */
#consignment-acquisition-section {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    background-color: var(--book-world-bg-light);
    padding: 80px 0;
}

.consignment-acquisition-container {
    width: 100%;
}

/* Content Column */
.consignment-acquisition-content-col {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: var(--book-world-bg-light);
    position: relative;
}

.consignment-acquisition-content {
    max-width: 520px;
    width: 100%;
}

/* Label */
.consignment-acquisition-label {
    color: var(--book-world-primary-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

.consignment-acquisition-label::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 1px;
    background-color: var(--book-world-primary-gold);
}

/* Title */
.consignment-acquisition-title {
    font-size: 44px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--book-world-text-dark);
    margin-bottom: 24px;
    font-family: "Georgia", "Times New Roman", serif;
}

/* Description */
.consignment-acquisition-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--book-world-text-medium);
    margin-bottom: 40px;
}

/* Features List */
.consignment-acquisition-features {
    margin-bottom: 40px;
}

.consignment-acquisition-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.consignment-acquisition-feature-item:last-child {
    margin-bottom: 0;
}

/* Icon Wrapper */
.consignment-acquisition-icon-wrapper {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consignment-acquisition-icon {
    width: 24px;
    height: 24px;
    color: var(--book-world-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Feature Content */
.consignment-acquisition-feature-content {
    flex: 1;
}

.consignment-acquisition-feature-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--book-world-text-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.consignment-acquisition-feature-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--book-world-text-medium);
    margin: 0;
}

/* CTA Button */
.consignment-acquisition-btn {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--book-world-text-dark);
    color: var(--book-world-text-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--book-world-text-dark);
    position: relative;
    overflow: hidden;
}

.consignment-acquisition-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--book-world-text-white);
    transition: left 0.3s ease;
    z-index: 0;
}

.consignment-acquisition-btn:hover {
    color: var(--book-world-text-dark);
    background-color: var(--book-world-text-white);
}

.consignment-acquisition-btn:hover::before {
    left: 0;
}

.consignment-acquisition-btn span {
    position: relative;
    z-index: 1;
}

/* Image Column */
.consignment-acquisition-image-col {
    position: relative;
    min-height: 100vh;
    padding: 0;
}

.consignment-acquisition-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.consignment-acquisition-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.consignment-acquisition-image-wrapper:hover .consignment-acquisition-image {
    transform: scale(1.05);
}

.consignment-acquisition-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.2) 0%,
        transparent 50%
    );
    pointer-events: none;
}

/* Animations */
@keyframes consignment-acquisition-fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes consignment-acquisition-fade-in-right {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.consignment-acquisition-content {
    animation: consignment-acquisition-fade-in-left 0.8s ease both;
}

.consignment-acquisition-image-wrapper {
    animation: consignment-acquisition-fade-in-right 0.8s ease both 0.2s;
}

/* Responsive Design */

/* Large Desktop */
@media (max-width: 1400px) {
    .consignment-acquisition-title {
        font-size: 40px;
    }

    .consignment-acquisition-content-col {
        padding: 70px 50px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .consignment-acquisition-title {
        font-size: 36px;
    }

    .consignment-acquisition-content-col {
        padding: 60px 40px;
    }

    .consignment-acquisition-description {
        font-size: 14px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    #consignment-acquisition-section {
        min-height: auto;
    }

    .consignment-acquisition-content-col {
        padding: 60px 40px;
        min-height: auto;
    }

    .consignment-acquisition-image-col {
        min-height: 500px;
        order: -1;
    }

    .consignment-acquisition-title {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .consignment-acquisition-description {
        margin-bottom: 35px;
    }

    .consignment-acquisition-features {
        margin-bottom: 35px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .consignment-acquisition-content-col {
        padding: 50px 30px;
    }

    .consignment-acquisition-image-col {
        min-height: 400px;
    }

    .consignment-acquisition-label {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }

    .consignment-acquisition-title {
        font-size: 30px;
        margin-bottom: 18px;
    }

    .consignment-acquisition-description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .consignment-acquisition-features {
        margin-bottom: 30px;
    }

    .consignment-acquisition-feature-item {
        margin-bottom: 24px;
        gap: 14px;
    }

    .consignment-acquisition-icon-wrapper {
        width: 36px;
        height: 36px;
    }

    .consignment-acquisition-icon {
        width: 22px;
        height: 22px;
    }

    .consignment-acquisition-feature-title {
        font-size: 15px;
    }

    .consignment-acquisition-feature-text {
        font-size: 13px;
    }

    .consignment-acquisition-btn {
        padding: 16px 45px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }
}

/* Mobile Small */
@media (max-width: 576px) {
    .consignment-acquisition-content-col {
        padding: 40px 20px;
    }

    .consignment-acquisition-image-col {
        min-height: 350px;
    }

    .consignment-acquisition-label {
        font-size: 10px;
        letter-spacing: 1.5px;
        margin-bottom: 14px;
    }

    .consignment-acquisition-label::after {
        width: 50px;
    }

    .consignment-acquisition-title {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .consignment-acquisition-description {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .consignment-acquisition-features {
        margin-bottom: 25px;
    }

    .consignment-acquisition-feature-item {
        margin-bottom: 20px;
        gap: 12px;
    }

    .consignment-acquisition-icon-wrapper {
        width: 32px;
        height: 32px;
    }

    .consignment-acquisition-icon {
        width: 20px;
        height: 20px;
    }

    .consignment-acquisition-feature-title {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .consignment-acquisition-feature-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .consignment-acquisition-btn {
        padding: 14px 40px;
        font-size: 11px;
        width: 100%;
        text-align: center;
    }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
    .consignment-acquisition-title {
        font-size: 22px;
    }

    .consignment-acquisition-image-col {
        min-height: 300px;
    }

    .consignment-acquisition-btn {
        padding: 12px 30px;
        font-size: 10px;
    }
}

/* Hover Effects for Desktop */
@media (min-width: 992px) {
    .consignment-acquisition-feature-item {
        transition: transform 0.3s ease;
        cursor: default;
    }

    .consignment-acquisition-feature-item:hover {
        transform: translateX(5px);
    }

    .consignment-acquisition-feature-item:hover .consignment-acquisition-icon {
        color: var(--book-world-primary-gold);
        transition: color 0.3s ease;
    }
}

/* Focus States for Accessibility */
.consignment-acquisition-btn:focus {
    outline: 3px solid var(--book-world-primary-gold);
    outline-offset: 3px;
}

/* Print Styles */
@media print {
    #consignment-acquisition-section {
        min-height: auto;
    }

    .consignment-acquisition-image-col {
        min-height: 400px;
    }

    .consignment-acquisition-btn {
        border: 2px solid var(--book-world-text-dark);
    }
}

#new-fresh-arrivals-section {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.new-fresh-arrivals-wrapper {
    width: 100%;
}

/* Header Section */
.new-fresh-arrivals-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

/* Badge */
.new-fresh-arrivals-badge {
    color: var(--book-world-primary-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    opacity: 0;
    animation: new-fresh-arrivals-fade-in-down 0.8s ease forwards 0.1s;
}

/* Tagline */
.new-fresh-arrivals-tagline {
    color: var(--book-world-text-medium);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 18px;
    opacity: 0;
    animation: new-fresh-arrivals-fade-in-down 0.8s ease forwards 0.2s;
}

/* Heading */
.new-fresh-arrivals-heading {
    font-size: 50px;
    font-weight: 400;
    color: var(--book-world-text-dark);
    font-family: "Georgia", "Times New Roman", serif;
    line-height: 1.2;
    margin: 0;
    opacity: 0;
    animation: new-fresh-arrivals-fade-in-down 0.8s ease forwards 0.3s;
}

/* Slider Container */
.new-fresh-arrivals-slider-container {
    position: relative;
    padding: 0 70px;
    opacity: 0;
    animation: new-fresh-arrivals-fade-in-up 1s ease forwards 0.4s;
}

.new-fresh-arrivals-swiper {
    width: 100%;
    height: auto;
    overflow: hidden; /* VERY IMPORTANT */
    padding: 10px 0 30px;
}

.new-fresh-arrivals-swiper .swiper-wrapper {
    align-items: stretch;
}

.new-fresh-arrivals-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.new-fresh-arrivals-swiper .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Book Card */
.new-fresh-arrivals-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.new-fresh-arrivals-card:hover {
    transform: translateY(-12px);
}

/* Media Box */
.new-fresh-arrivals-media-box {
    position: relative;
    width: 100%;
    aspect-ratio: 2/3;
    overflow: hidden;
    background-color: #d0d0d0;
    box-shadow: var(--book-world-shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.new-fresh-arrivals-card:hover .new-fresh-arrivals-media-box {
    box-shadow: var(--book-world-shadow-lg);
}

/* Cover Image */
.new-fresh-arrivals-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    position: relative;
    z-index: 1;
}

/* Cover Video */
.new-fresh-arrivals-cover-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 2;
}

.new-fresh-arrivals-media-box.video-playing .new-fresh-arrivals-cover-image {
    opacity: 0;
}

.new-fresh-arrivals-media-box.video-playing .new-fresh-arrivals-cover-video {
    opacity: 1;
}

/* Overlay */
.new-fresh-arrivals-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 3;
}

.new-fresh-arrivals-media-box:hover .new-fresh-arrivals-overlay {
    opacity: 1;
}

/* Play Button */
.new-fresh-arrivals-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--book-world-text-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 4;
    padding: 0;
    outline: none;
}

.new-fresh-arrivals-play-button:hover {
    background-color: var(--book-world-text-white);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
}

.new-fresh-arrivals-play-button:active {
    transform: translate(-50%, -50%) scale(1.05);
}

.new-fresh-arrivals-play-icon {
    margin-left: 3px;
    transition: transform 0.3s ease;
}

.new-fresh-arrivals-play-button:hover .new-fresh-arrivals-play-icon {
    transform: scale(1.1);
}

.new-fresh-arrivals-media-box.video-playing .new-fresh-arrivals-play-button {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.8);
}

/* Navigation */
.new-fresh-arrivals-navigation {
    position: relative;
    width: 100%;
}

.new-fresh-arrivals-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    color: var(--book-world-text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    outline: none;
}

.new-fresh-arrivals-nav-prev {
    left: 0;
}

.new-fresh-arrivals-nav-next {
    right: 0;
}

.new-fresh-arrivals-nav-button:hover {
    color: var(--book-world-primary-gold);
    transform: translateY(-50%) scale(1.15);
}

.new-fresh-arrivals-nav-button:active {
    transform: translateY(-50%) scale(1.05);
}

.new-fresh-arrivals-nav-button.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Animations */
@keyframes new-fresh-arrivals-fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes new-fresh-arrivals-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading State */
.new-fresh-arrivals-cover-image.loading {
    background: linear-gradient(90deg, #d0d0d0 25%, #e0e0e0 50%, #d0d0d0 75%);
    background-size: 200% 100%;
    animation: new-fresh-arrivals-shimmer 1.5s ease-in-out infinite;
}

@keyframes new-fresh-arrivals-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Responsive Design */

/* Extra Large Desktop */
@media (max-width: 1600px) {
    .new-fresh-arrivals-heading {
        font-size: 46px;
    }
}

/* Large Desktop */
@media (max-width: 1400px) {
    .new-fresh-arrivals-heading {
        font-size: 44px;
    }

    .new-fresh-arrivals-slider-container {
        padding: 0 60px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    #new-fresh-arrivals-section {
        padding: 80px 0 100px;
    }

    .new-fresh-arrivals-heading {
        font-size: 40px;
    }

    .new-fresh-arrivals-header {
        margin-bottom: 50px;
    }

    .new-fresh-arrivals-slider-container {
        padding: 0 55px;
    }

    .new-fresh-arrivals-play-button {
        width: 58px;
        height: 58px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    #new-fresh-arrivals-section {
        padding: 70px 0 90px;
    }

    .new-fresh-arrivals-header {
        margin-bottom: 45px;
    }

    .new-fresh-arrivals-heading {
        font-size: 38px;
    }

    .new-fresh-arrivals-slider-container {
        padding: 0 50px;
    }

    .new-fresh-arrivals-nav-button {
        width: 46px;
        height: 46px;
    }

    .new-fresh-arrivals-nav-button svg {
        width: 38px;
        height: 38px;
    }

    .new-fresh-arrivals-play-button {
        width: 54px;
        height: 54px;
    }

    .new-fresh-arrivals-play-icon {
        width: 26px;
        height: 26px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    #new-fresh-arrivals-section {
        padding: 60px 0 80px;
    }

    .new-fresh-arrivals-header {
        margin-bottom: 40px;
    }

    .new-fresh-arrivals-badge {
        font-size: 11px;
        letter-spacing: 2.2px;
    }

    .new-fresh-arrivals-tagline {
        font-size: 10px;
        letter-spacing: 1.5px;
        margin-bottom: 16px;
    }

    .new-fresh-arrivals-heading {
        font-size: 34px;
    }

    .new-fresh-arrivals-slider-container {
        padding: 0 45px;
    }

    .new-fresh-arrivals-nav-button {
        width: 42px;
        height: 42px;
    }

    .new-fresh-arrivals-nav-button svg {
        width: 36px;
        height: 36px;
    }

    .new-fresh-arrivals-play-button {
        width: 50px;
        height: 50px;
    }

    .new-fresh-arrivals-play-icon {
        width: 24px;
        height: 24px;
    }

    .new-fresh-arrivals-card:hover {
        transform: translateY(-8px);
    }
}

/* Mobile Small */
@media (max-width: 576px) {
    #new-fresh-arrivals-section {
        padding: 50px 0 70px;
    }

    .new-fresh-arrivals-header {
        margin-bottom: 35px;
        padding: 0 15px;
    }

    .new-fresh-arrivals-badge {
        font-size: 10px;
        letter-spacing: 1.8px;
        margin-bottom: 8px;
    }

    .new-fresh-arrivals-tagline {
        font-size: 9px;
        letter-spacing: 1.2px;
        margin-bottom: 14px;
    }

    .new-fresh-arrivals-heading {
        font-size: 30px;
    }

    .new-fresh-arrivals-slider-container {
        padding: 0 40px;
    }

    .new-fresh-arrivals-nav-button {
        width: 38px;
        height: 38px;
    }

    .new-fresh-arrivals-nav-button svg {
        width: 34px;
        height: 34px;
    }

    .new-fresh-arrivals-play-button {
        width: 46px;
        height: 46px;
    }

    .new-fresh-arrivals-play-icon {
        width: 22px;
        height: 22px;
    }

    .new-fresh-arrivals-card:hover {
        transform: translateY(-6px);
    }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
    #new-fresh-arrivals-section {
        padding: 45px 0 60px;
    }

    .new-fresh-arrivals-heading {
        font-size: 26px;
    }

    .new-fresh-arrivals-slider-container {
        padding: 0 35px;
    }

    .new-fresh-arrivals-nav-button {
        width: 36px;
        height: 36px;
    }

    .new-fresh-arrivals-nav-button svg {
        width: 32px;
        height: 32px;
    }

    .new-fresh-arrivals-play-button {
        width: 42px;
        height: 42px;
    }

    .new-fresh-arrivals-play-icon {
        width: 20px;
        height: 20px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .new-fresh-arrivals-card:hover {
        transform: none;
    }

    .new-fresh-arrivals-card:active {
        transform: scale(0.98);
    }

    .new-fresh-arrivals-play-button {
        opacity: 1;
    }

    .new-fresh-arrivals-media-box.video-playing
        .new-fresh-arrivals-play-button {
        opacity: 0;
    }
}

/* Accessibility - Focus States */
.new-fresh-arrivals-play-button:focus-visible {
    outline: 3px solid var(--book-world-primary-gold);
    outline-offset: 4px;
}

.new-fresh-arrivals-nav-button:focus-visible {
    outline: 3px solid var(--book-world-primary-gold);
    outline-offset: 4px;
    border-radius: 50%;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .new-fresh-arrivals-play-button {
        border: 2px solid var(--book-world-text-dark);
    }

    .new-fresh-arrivals-nav-button {
        border: 2px solid var(--book-world-text-dark);
        border-radius: 50%;
    }
}

/* Print Styles */
@media print {
    #new-fresh-arrivals-section {
        padding: 30px 0;
    }

    .new-fresh-arrivals-navigation,
    .new-fresh-arrivals-play-button {
        display: none;
    }

    .new-fresh-arrivals-slider-container {
        padding: 0;
    }
}

/* Navigation Wrapper Fix */
.new-fresh-arrivals-slider-container {
    position: relative;
}

/* Navigation Buttons */
.new-fresh-arrivals-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s ease;
    z-index: 20;
    color: var(--book-world-text-dark);
}

/* Position */
.new-fresh-arrivals-nav-prev {
    left: 45px;
}

.new-fresh-arrivals-nav-next {
    right: 45px;
}

/* Hover */
.new-fresh-arrivals-nav-button:hover {
    background: var(--book-world-primary-gold);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

/* Disabled */
.new-fresh-arrivals-nav-button.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .new-fresh-arrivals-nav-prev {
        left: -15px;
    }

    .new-fresh-arrivals-nav-next {
        right: -15px;
    }

    .new-fresh-arrivals-nav-button {
        width: 44px;
        height: 44px;
    }
}

/* Main Section */
#journal-section {
    padding: 80px 0;
    background-color: var(--book-world-bg-light);
}

.journal-wrapper {
    width: 100%;
}

/* Header Section */
.journal-header {
    margin-bottom: 50px;
    position: relative;
}

.journal-header::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
}

/* Label */
.journal-label {
    color: var(--book-world-primary-gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

/* Title */
.journal-title {
    font-size: 48px;
    font-weight: 400;
    color: var(--book-world-text-dark);
    font-family: "Georgia", "Times New Roman", serif;
    line-height: 1.2;
    margin: 0;
}

/* View Link */
.journal-view-link {
    color: var(--book-world-text-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.journal-view-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--book-world-text-dark);
    transition: all 0.3s ease;
}

.journal-view-link:hover {
    color: var(--book-world-primary-gold);
}

.journal-view-link:hover::after {
    width: 0;
    background-color: var(--book-world-primary-gold);
}

/* Grid */
.journal-grid {
    margin-top: 50px;
}

/* Article Card */
.journal-card {
    background-color: var(--book-world-text-white);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.journal-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

/* Image Container */
.journal-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.journal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.journal-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.journal-card:hover .journal-image {
    transform: scale(1.05);
}

.journal-card:hover .journal-image-overlay {
    opacity: 1;
}

/* Content */
.journal-content {
    padding: 32px 0 0 0;
}

/* Category */
.journal-category {
    color: var(--book-world-primary-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Article Title */
.journal-article-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--book-world-text-dark);
    line-height: 1.4;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.journal-card:hover .journal-article-title {
    color: var(--book-world-primary-gold);
}

/* Excerpt */
.journal-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: var(--book-world-text-medium);
    margin: 0;
}

/* Animations */
@keyframes journal-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.journal-card {
    animation: journal-fade-in-up 0.6s ease both;
}

.journal-card:nth-child(2) {
    animation-delay: 0.1s;
}

/* Responsive Design */

/* Large Desktop */
@media (max-width: 1400px) {
    .journal-title {
        font-size: 44px;
    }

    .journal-image-container {
        height: 380px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    #journal-section {
        padding: 80px 0;
    }

    .journal-title {
        font-size: 40px;
    }

    .journal-image-container {
        height: 350px;
    }

    .journal-content {
        padding: 28px 0 0 0;
    }
}

/* Tablet */
@media (max-width: 992px) {
    #journal-section {
        padding: 70px 0;
    }

    .journal-header {
        margin-bottom: 40px;
    }

    .journal-header::after {
        bottom: -20px;
    }

    .journal-title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .journal-view-link {
        margin-top: 15px;
    }

    .journal-grid {
        margin-top: 40px;
    }

    .journal-image-container {
        height: 320px;
    }

    .journal-article-title {
        font-size: 22px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    #journal-section {
        padding: 60px 0;
    }

    .journal-header {
        margin-bottom: 35px;
    }

    .journal-label {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .journal-title {
        font-size: 32px;
    }

    .journal-view-link {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .journal-grid {
        margin-top: 35px;
    }

    .journal-image-container {
        height: 300px;
    }

    .journal-content {
        padding: 24px 0 0 0;
    }

    .journal-category {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .journal-article-title {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .journal-excerpt {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* Mobile Small */
@media (max-width: 576px) {
    #journal-section {
        padding: 50px 0;
    }

    .journal-header {
        margin-bottom: 30px;
    }

    .journal-header::after {
        bottom: -15px;
    }

    .journal-label {
        font-size: 11px;
        letter-spacing: 1.5px;
        margin-bottom: 10px;
    }

    .journal-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .journal-view-link {
        font-size: 11px;
    }

    .journal-grid {
        margin-top: 30px;
    }

    .journal-image-container {
        height: 250px;
    }

    .journal-content {
        padding: 20px 0 0 0;
    }

    .journal-category {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .journal-article-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .journal-excerpt {
        font-size: 14px;
    }

    /* Stack cards vertically on mobile */
    .journal-grid .row {
        gap: 40px;
    }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
    .journal-title {
        font-size: 24px;
    }

    .journal-image-container {
        height: 220px;
    }

    .journal-article-title {
        font-size: 16px;
    }

    .journal-excerpt {
        font-size: 13px;
    }
}

/* Hover Effects for Desktop Only */
@media (min-width: 992px) {
    .journal-card {
        cursor: pointer;
    }

    .journal-card:hover {
        transform: translateY(-5px);
    }
}

/* Print Styles */
@media print {
    #journal-section {
        padding: 20px 0;
    }

    .journal-view-link {
        display: none;
    }

    .journal-image-container {
        height: auto;
        max-height: 300px;
    }
}

/* Main Section */
#newsletter-contact-section {
    padding: 80px 0;
}

.newsletter-contact-wrapper {
    width: 100%;
}

/* Box Container */
.newsletter-contact-box {
    background-color: var(--book-world-text-white);
    padding: 60px 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e8e8e8;
}

/* Heading */
.newsletter-contact-heading {
    font-size: 32px;
    font-weight: 400;
    color: var(--book-world-text-dark);
    font-family: "Georgia", "Times New Roman", serif;
    line-height: 1.3;
    margin-bottom: 16px;
}

/* Description */
.newsletter-contact-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--book-world-text-medium);
    margin-bottom: 32px;
}

/* Additional Text */
.newsletter-contact-text {
    margin-bottom: 32px;
}

.newsletter-contact-text p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--book-world-text-medium);
    margin: 0;
}

/* Form */
.newsletter-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Input Group */
.newsletter-contact-input-group {
    width: 100%;
}

/* Input Field */
.newsletter-contact-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 14px;
    color: var(--book-world-text-dark);
    background-color: var(--book-world-text-white);
    border: 1px solid #d0d0d0;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-contact-input::placeholder {
    color: var(--book-world-text-light);
}

.newsletter-contact-input:focus {
    border-color: var(--book-world-text-dark);
}

/* Button */
.newsletter-contact-button {
    width: 100%;
    padding: 18px 40px;
    background-color: var(--book-world-text-dark);
    color: var(--book-world-text-white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--book-world-text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.newsletter-contact-button:hover {
    background-color: var(--book-world-text-white);
    color: var(--book-world-text-dark);
}

.newsletter-contact-link-button {
    display: block;
}

/* Animations */
@keyframes newsletter-contact-fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.newsletter-contact-box {
    animation: newsletter-contact-fade-in 0.8s ease both;
}

.newsletter-contact-box:nth-child(2) {
    animation-delay: 0.1s;
}

/* Responsive Design */

/* Desktop */
@media (max-width: 1200px) {
    .newsletter-contact-box {
        padding: 50px 40px;
    }

    .newsletter-contact-heading {
        font-size: 30px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    #newsletter-contact-section {
        padding: 70px 0;
    }

    .newsletter-contact-box {
        padding: 45px 35px;
    }

    .newsletter-contact-heading {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .newsletter-contact-description {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .newsletter-contact-text {
        margin-bottom: 28px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    #newsletter-contact-section {
        padding: 60px 0;
    }

    .newsletter-contact-box {
        padding: 40px 30px;
    }

    .newsletter-contact-heading {
        font-size: 26px;
    }

    .newsletter-contact-description {
        margin-bottom: 24px;
    }

    .newsletter-contact-text {
        margin-bottom: 24px;
    }

    .newsletter-contact-input {
        padding: 15px 18px;
        font-size: 13px;
    }

    .newsletter-contact-button {
        padding: 16px 35px;
        font-size: 12px;
    }
}

/* Mobile Small */
@media (max-width: 576px) {
    #newsletter-contact-section {
        padding: 50px 0;
    }

    .newsletter-contact-box {
        padding: 35px 25px;
    }

    .newsletter-contact-heading {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .newsletter-contact-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .newsletter-contact-text {
        margin-bottom: 20px;
    }

    .newsletter-contact-text p {
        font-size: 14px;
    }

    .newsletter-contact-input {
        padding: 14px 16px;
        font-size: 13px;
    }

    .newsletter-contact-button {
        padding: 15px 30px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
    .newsletter-contact-box {
        padding: 30px 20px;
    }

    .newsletter-contact-heading {
        font-size: 22px;
    }

    .newsletter-contact-description {
        font-size: 13px;
    }

    .newsletter-contact-text p {
        font-size: 13px;
    }
}

/* Focus States */
.newsletter-contact-input:focus-visible {
    outline: 2px solid var(--book-world-primary-gold);
    outline-offset: 2px;
}

.newsletter-contact-button:focus-visible {
    outline: 2px solid var(--book-world-primary-gold);
    outline-offset: 3px;
}

/* Print Styles */
@media print {
    #newsletter-contact-section {
        padding: 20px 0;
    }

    .newsletter-contact-box {
        border: 1px solid var(--book-world-text-dark);
        padding: 30px;
    }
}
@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}
.the-reading-room-animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
