/* ===============================
   ROOT VARIABLES (THEME)
=============================== */
:root {
    --main-color: #f46c33;
    --main-hover: #e65f27;

    --dark: #111111;
    --light: #ffffff;
    --muted: #6c757d;
    --bg-light: #f9f9f9;

    --radius: 12px;
    --transition: all 0.3s ease;

    --font-primary: "Anek Bangla", system-ui;
    --font-heading: "Baloo Da 2", cursive;
    --font-decorative: "Galada", cursive;
}

/* ===============================
   GLOBAL STYLES
=============================== */
body {
    font-family: var(--font-primary);
    background: var(--bg-light);
    color: var(--dark);
    margin: 0;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
}

a {
    color: var(--main-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--main-hover);
}

/* ===============================
   SWIPER TOP MARQUEE
=============================== */

.top-marquee {
    width: 100%;
    background: red;
    position: sticky;
    top: 0;
    z-index: 9999;
    overflow: hidden;
}

/* Swiper */
.marquee-swiper {
    width: 100%;
}

/* Slide */
.marquee-swiper .swiper-slide {
    width: auto !important;
    /* IMPORTANT */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 40px;

    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

/* Icon */
.marquee-swiper i {
    font-size: 15px;
}

/* Mobile */
@media (max-width: 768px) {
    .marquee-swiper .swiper-slide {
        font-size: 14px;
        padding: 8px 24px;
    }
}


/* Force continuous linear movement */
.marquee-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}











/* ---------------------------------------------------------------------------------------------------------------------------------------------- */
/* ===============================
   PRODUCT GALLERY
=============================== */

.product-gallery {
    display: flex;
    gap: 16px;
}

/* ===============================
   THUMB SWIPER (DESKTOP)
=============================== */

.product-thumbs-swiper {
    width: 90px;
    height: 420px;
    position: relative;
    flex-shrink: 0;
}

.product-thumbs-swiper .swiper-slide {
    cursor: pointer;
}

.product-thumbs-swiper img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #e5e5e5;
    transition: var(--transition);
}

/* ACTIVE THUMB */
.product-thumbs-swiper .swiper-slide-active img {
    border-color: var(--main-color);
}

/* ===============================
   THUMB ARROWS (DESKTOP)
=============================== */

.thumb-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;

    /* Glassy effect */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);

    color: var(--main-hover);

}

.thumb-nav.prev {
    top: -4px;
}

.thumb-nav.next {
    bottom: 26px;
}



/* ===============================
   MAIN IMAGE
=============================== */

.product-main-image {
    flex: 1;
    background: #f9f9f9;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.product-main-image img {
    width: 100%;
    height: 520px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

/* ZOOM */
.product-main-image:hover img {
    transform: scale(1.15);
}

/* ===============================
   INFO
=============================== */

.product-title {
    font-size: 32px;
    font-weight: 700;
}

/* ===============================
   MOBILE VIEW (UPDATED AS REQUESTED)
=============================== */

@media (max-width: 991px) {

    /* Ensure correct stacking */
    .product-gallery {
        flex-direction: column;
    }

    .product-main-image {
        order: 1;
    }

    .product-main-image img {

        height: 320px;
    }

    .product-thumbs-swiper {
        order: 2;
        width: 100%;
        height: auto;
        margin-top: 14px;
        padding: 0 44px;
        /* space for arrows */
        position: relative;
    }

    .product-thumbs-swiper img {
        height: 80px;
    }

    /* RESET + ALIGN ARROWS */
    .thumb-nav {
        top: 50%;
        transform: translateY(-50%);
    }

    .thumb-nav.prev {
        left: -6px;
        /* fine-tuned */
        right: auto;
        transform: translateY(91%) rotate(-90deg);
    }

    .thumb-nav.next {
        right: -6px;
        /* fine-tuned */
        left: auto;
        transform: translateY(-50%) rotate(-90deg);
    }
}


/* ===============================
   PRODUCT INFO RIGHT SECTION
=============================== */

.product-info-box {
    background: #fff6e8;
    padding: 28px;
    border-radius: 20px;
}

/* Title */
.product-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.35;
}

.featured-icon {
    margin-right: 6px;
}


/* Price */
.product-price {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.current-price {
    font-size: 28px;
    font-weight: 700;
    color: #000;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 15px;
}

.discount-badge {
    background: #000;
    color: #fff;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
}

/* CTA Button */
.product-cta {
    display: block;
    width: 100%;
    background: var(--main-color);
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    padding: 16px;
    border-radius: 999px;
    transition: var(--transition);
}

.product-cta:hover {
    background: var(--main-hover);
    color: #fff;
}

/* ===============================
   MOBILE
=============================== */
@media (max-width: 767px) {
    .product-info-box {
        padding: 22px;
    }

    .product-title {
        font-size: 22px;
    }

    .current-price {
        font-size: 24px;
    }
}

/* ===============================
   REVIEW STRIP
=============================== */

.review-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 14px 0 18px;
}

/* Avatars */
.review-avatars {
    display: flex;
}

.review-avatars img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-left: -10px;
    background: #eee;
}

.review-avatars img:first-child {
    margin-left: 0;
}

/* Text */
.review-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.review-stars {
    color: #ffb400;
    font-size: 14px;
}

.review-text {
    font-size: 14px;
    color: #111;
    font-weight: 500;
}

/* Mobile */
@media (max-width: 767px) {
    .review-avatars img {
        width: 30px;
        height: 30px;
    }

    .review-text {
        font-size: 13px;
    }
}



/* ===============================
   PINCODE CHECK SECTION
=============================== */

.pincode-check-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px 12px;
    margin: 18px 0 22px;
}

/* Icon */
.pincode-icon {
    font-size: 20px;
    color: #111;
}

/* Input */
.pincode-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 6px 4px;
}

/* Button */
.pincode-btn {
    background: #fff3df;
    border: 1px solid #f1d3a7;
    color: #111;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.pincode-btn:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}





/* ===============================
   PINCODE RESULT MESSAGE
=============================== */

.pincode-result {
    /* margin-top: 8px; */
    font-size: 14px;
    font-weight: 500;
    color: #1a7f37;
    /* green */
    display: none;
}

.pincode-result.error {
    color: #c0392b;
    /* red */
}






/* ===============================
   MOBILE
=============================== */
@media (max-width: 767px) {
    .pincode-check-box {
        padding: 10px;
    }

    .pincode-btn {
        padding: 8px 14px;
        font-size: 15px;
    }
}


/* ===============================
   PRODUCT FAQ SECTION
=============================== */

.product-faq-section {
    background: #fff4e8;
    padding: 30px 0;
}

/* FAQ Item */
.faq-item {
    border-top: 1px solid var(--main-color);
    border-bottom: 1px solid var(--main-color);
    padding: 14px 0;
}

/* Question */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-title {
    font-size: 16px;
    font-weight: 600;
}

/* Icons */
.faq-icon {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    display: inline-block;
}

.faq-icon.blue {
    background: #4aa3ff;
}

.faq-icon.green {
    background: #2ecc71;
}

.faq-icon.purple {
    background: #9b59b6;
}

.faq-icon.red {
    background: #880808;
}


/* Toggle */
.faq-toggle {
    font-size: 16px;
    font-weight: 700;
}

/* Answer */
.faq-answer {
    display: none;
    padding-top: 12px;
    font-size: 15px;
    color: #222;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    content: "▲";
}

/* List */
.faq-answer ol {
    padding-left: 20px;
}

/* Mobile */
@media (max-width: 767px) {
    .faq-title {
        font-size: 15px;
    }
}



/* ===============================
   LIVE WATCHING SECTION
=============================== */

.live-watching-box {
    background: #fff4e8;
    border: 1px dashed var(--main-color);
    border-radius: 12px;
    padding: 14px 18px;
    margin: 18px 0;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    text-align: center;
}

/* Highlight number */
#watchCount {
    color: var(--main-color);
    font-size: 18px;
    font-weight: 700;
}

/* Mobile */
@media (max-width: 767px) {
    .live-watching-box {
        font-size: 15px;
        padding: 12px 14px;
    }
}








/* ===============================
   DESKTOP SPLIT SCROLL LAYOUT
=============================== */
@media (min-width: 992px) {

    /* Keep left gallery visible */
    .product-gallery-12 {
        position: sticky;
        top: 20px;
        /* adjust if header exists */
        box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
        border-radius: 20px;

        padding: 10px;

    }




    /* Right column scrolls */
    .product-info-box {
        max-height: calc(100vh - 40px);
        overflow-y: auto;
        padding-right: 6px;

        /* Hide scrollbar - Firefox */
        scrollbar-width: none;

        /* Smooth feel */
        scroll-behavior: smooth;
    }

    /* Optional: smooth scrolling feel */
    .product-info-box {
        scroll-behavior: smooth;
    }

    /* Hide ugly scrollbar (optional) */
    .product-info-box::-webkit-scrollbar {
        width: 0;
        height: 0;
        display: none;
    }

    .product-info-box::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 6px;
    }

    .product-info-box::-webkit-scrollbar-track {
        background: transparent;
    }
}













/* ===============================
   PRODUCT TRUST FEATURES (DESKTOP)
=============================== */

/* Wrapper */
.product-trust-features {
    display: grid;
    /* Bootstrap will control visibility */
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

/* Single feature */
.trust-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #222;
    line-height: 1.4;
}

/* Icon */
.trust-feature i {
    font-size: 18px;
    color: red;
    min-width: 22px;
}

/* Optional hover polish */
.trust-feature:hover i {
    transform: scale(1.08);
    transition: var(--transition);
}

/* ===============================
   LARGE DESKTOP POLISH
=============================== */
@media (min-width: 1200px) {
    .product-trust-features {
        gap: 16px 28px;
    }

    .trust-feature {
        font-size: 16px;
    }

    .trust-feature i {
        font-size: 19px;
    }



}


/* ===============================
   PRODUCT TRUST FEATURES (MOBILE)
   2 COLUMNS • LEFT ALIGNED
=============================== */

.product-trust-features-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns */
    gap: 10px 18px;
    margin: 14px auto 0;
    padding: 14px 14px;
    background: #fff4e8;
    border-radius: 12px;
}

/* Single feature */
.product-trust-features-mobile .trust-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    text-align: left;
    /* IMPORTANT */
}

/* Icon */
.product-trust-features-mobile .trust-feature i {
    font-size: 15px;
    color: var(--main-color);
    min-width: 18px;
    /* keeps alignment clean */
}

/* ===============================
   VERY SMALL DEVICES
=============================== */
@media (max-width: 360px) {
    .product-trust-features-mobile {
        gap: 8px 14px;
        padding: 12px;
    }

    .product-trust-features-mobile .trust-feature {
        font-size: 13px;
    }

    .product-trust-features-mobile .trust-feature i {
        font-size: 14px;
    }
}

















/* ===============================
   REVIEWS SECTION
=============================== */

.reviews-section {
    background: #fff6e8;
    padding: 50px 0;
}

.reviews-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 24px;
}

/* SUMMARY CARD */
.review-summary-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.rating-left {
    text-align: center;
}

.rating-score {
    font-size: 42px;
    font-weight: 700;
}

.rating-stars {
    color: #ff9800;
    margin: 6px 0;
}

.rating-count {
    font-size: 14px;
    color: #666;
}

/* Bars */
.rating-bars .bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 10px;
}

.bar {
    flex: 1;
    height: 8px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.bar span {
    display: block;
    height: 100%;
    background: var(--main-color);
}

.count {
    font-size: 13px;
}

/* REVIEW CARDS */
.review-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.review-stars {
    color: #ff9800;
    margin-bottom: 10px;
}

/* PRODUCT IMAGES INSIDE REVIEW */
.review-images {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.review-images img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eee;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.review-user {
    font-size: 14px;
    font-weight: 600;
}

.verified {
    color: #ff7a00;
    font-size: 13px;
    margin-left: 6px;
}

/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 992px) {
    .review-summary-card {
        grid-template-columns: 1fr;
    }

    .review-cards {
        grid-template-columns: 1fr;
    }
}













/* ===============================
   REVIEW IMAGE LIGHTBOX
=============================== */

.review-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

/* Active */
.review-lightbox.active {
    display: flex;
}

/* Image */
.review-lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 14px;
    animation: lightboxZoom 0.25s ease;
}

.review-lightbox-img:hover {
    cursor: pointer;
}




/* Close button */
.lightbox-close {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
}

/* Zoom animation */
@keyframes lightboxZoom {
    from {
        transform: scale(0.92);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* ===============================
   REVIEW SLIDER
=============================== */

.review-swiper {
    padding: 10px 0 30px;
}

.review-swiper .swiper-slide {
    height: auto;
}

/* Review card (reuse your design) */
.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    height: 100%;
}

/* Mobile spacing */
@media (max-width: 767px) {
    .review-card {
        padding: 18px;
    }
}

/* ===============================
   REVIEW SLIDER PAGINATION
=============================== */

.review-pagination {
    margin-top: 16px;
    position: relative;
    text-align: center;
}

.review-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
    margin: 0 5px !important;
    transition: var(--transition);
}

.review-pagination .swiper-pagination-bullet-active {
    background: var(--main-color);
    width: 18px;
    border-radius: 999px;
}












/* ===============================
   CTA CONSULTATION SECTION
=============================== */

.cta-consult-section {
    position: relative;
    /* ✅ REQUIRED */
    overflow: hidden;
    /* ✅ REQUIRED */

    background: #fff7e6;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===============================
   FLOATING BLOBS
=============================== */

.cta-blob {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 1;
    /* 🔥 darker */
    pointer-events: none;
    animation: blobFloat 18s ease-in-out infinite alternate;
}

/* Blob colors */
.blob-1 {
    background: radial-gradient(circle,
            rgba(244, 108, 51, 0.95) 0%,
            rgba(244, 108, 51, 0.65) 35%,
            rgba(244, 108, 51, 0.25) 60%,
            transparent 70%);
    top: -70px;
    left: 8%;
    animation-duration: 22s;
}

.blob-2 {
    background: radial-gradient(circle,
            rgba(255, 183, 3, 0.95) 0%,
            rgba(255, 183, 3, 0.6) 35%,
            rgba(255, 183, 3, 0.25) 60%,
            transparent 70%);
    bottom: -90px;
    right: 10%;
    animation-duration: 26s;
}

.blob-3 {
    background: radial-gradient(circle,
            rgba(255, 209, 102, 0.9) 0%,
            rgba(255, 209, 102, 0.55) 35%,
            rgba(255, 209, 102, 0.25) 60%,
            transparent 70%);
    top: 38%;
    right: 32%;
    animation-duration: 30s;
}


.cta-blob {
    mix-blend-mode: multiply;
}

/* Blob animation */
@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, -30px) scale(1.1);
    }

    100% {
        transform: translate(-30px, 40px) scale(1);
    }
}

/* ===============================
   CTA GLOW WRAPPER
=============================== */

.cta-glow-wrapper {
    position: relative;
    z-index: 2;
    /* ✅ ABOVE BLOBS */

    padding: 14px;
    border-radius: 40px;
    background: rgba(244, 108, 51, 0.18);
    animation: glowPulse 2.6s ease-in-out infinite;
}

/* CTA Button */
.cta-btn-single {
    background: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 16px 34px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    animation: floatPulse 2.6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.cta-btn-single:hover {
    transform: scale(1.05);
}

/* Glow animation */
@keyframes glowPulse {
    0% {
        box-shadow: 0 0 0 rgba(148, 0, 0, 0.964);
    }

    50% {
        box-shadow: 0 0 28px rgba(244, 108, 51, 0.45);
    }

    100% {
        box-shadow: 0 0 0 rgba(244, 108, 51, 0.4);
    }
}

@keyframes floatPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

/* ===============================
   MOBILE OPTIMIZATION
=============================== */

@media (max-width: 767px) {
    .cta-consult-section {
        padding: 40px 12px;
    }

    .cta-btn-single {
        font-size: 15px;
        padding: 12px 22px;
    }

    .cta-blob {
        width: 160px;
        height: 160px;
        filter: blur(50px);
    }
}


/* ===============================
   CONSULTATION MODAL
=============================== */

.consult-modal {
    border-radius: 18px;
    padding: 10px;
}

/* Inputs */
.theme-input {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 10px 14px;
    font-size: 15px;
}

.theme-input:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 2px rgba(244, 108, 51, 0.15);
}

/* Submit button */
.theme-submit-btn {
    background: var(--main-color);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    padding: 12px;
    border: none;
}

.theme-submit-btn:hover {
    background: var(--main-hover);
}





/* ===============================
   BOOK ABOUT SECTION
=============================== */

.book-about-section {
    background: #ffffff;
}

/* Title */
.about-title {
    font-size: 36px;
    font-weight: 800;
    color: #111;
}

.about-title span {
    color: var(--main-color);
}

.about-subtitle {
    max-width: 720px;
    margin: 10px auto 0;
    font-size: 16px;
    color: #444;
}

/* Book Image */
.about-book-img {
    max-width: 260px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Points */
.about-point {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;

    background: #fff7e6;
    padding: 18px 20px 18px 30px;
    /* extra left space */
    border-radius: 18px;
    margin-bottom: 16px;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}


/* LEFT COLOR STRIP */
.about-point::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 14px;
    bottom: 14px;

    width: 6px;
    background: red;

    border-radius: 999px;
    box-shadow: 0 0 10px rgba(244, 108, 51, 0.35);
}




.about-point i {
    font-size: 18px;
    color: red;
    margin-top: 2px;
}

.about-point span {
    font-size: 15px;
    line-height: 1.6;
    color: #222;
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width: 991px) {

    .about-title {
        font-size: 28px;
    }

    .about-book-img {
        max-width: 220px;
        margin: 30px 0;
    }

    .about-point {
        font-size: 14px;
    }
}











/* ===============================
   FAQ – BOOTSTRAP ACCORDION
=============================== */

.faq-section {
    background: #fff6e6;
    padding: 60px 16px;
}

.faq-title-2 {
    font-size: 28px;
    font-weight: 700;
    color: #111;
}

/* Accordion Container */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

/* Item */
.faq-accordion .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--main-color);
}

/* Header Button */
.faq-accordion .accordion-button {
    background: transparent;
    font-weight: 600;
    font-size: 16px;
    color: #111;
    padding: 18px 10px;
    box-shadow: none;
}

/* Remove Bootstrap default icon */
.faq-accordion .accordion-button::after {
    background-image: none;
    content: "⌄";
    font-size: 18px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

/* Rotate arrow */
.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

/* Active */
.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--main-color);
}

/* Body */
.faq-accordion .accordion-body {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    padding: 0 10px 18px 34px;
}

/* Remove focus border */
.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

/* Mobile */
@media (max-width: 767px) {
    .faq-title {
        font-size: 22px;
    }

    .faq-accordion .accordion-button {
        font-size: 15px;
    }

    .faq-accordion .accordion-body {
        font-size: 14px;
        padding-left: 28px;
    }
}










/* ===============================
   PUBLISHER / ABOUT SECTION
=============================== */

.publisher-section {
    background: #fff6e6;
    padding: 70px 16px;
}

/* Card */
.publisher-card {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 22px;
    padding: 40px 36px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}

/* Title */
.publisher-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #111;
}

/* Academy Name */
.publisher-name {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 18px;
}

/* Intro */
.publisher-intro {
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

/* Points Wrapper */
.publisher-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Single Point */
.publisher-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    background: #f9fafc;
    padding: 18px 20px;
    border-radius: 18px;

    position: relative;
}

/* Theme strip */
.publisher-point::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 5px;
    background: var(--main-color);
    border-radius: 999px;
}

/* Icon */
.publisher-point i {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    color: var(--main-color);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Text */
.publisher-point span {
    font-size: 15px;
    line-height: 1.7;
    color: #222;
}

/* Mobile */
@media (max-width: 767px) {
    .publisher-card {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .publisher-title {
        font-size: 22px;
    }

    .publisher-name {
        font-size: 18px;
    }

    .publisher-intro {
        font-size: 15px;
    }

    .publisher-point span {
        font-size: 14px;
    }
}











/* ===============================
   MEDICAL ASTRO CTA SECTION
=============================== */

.astro-cta-section {
    background: #fff6e6;
    padding: 60px 16px;
}

.astro-cta-box {
    max-width: 820px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 22px;
    padding: 42px 30px;
    text-align: center;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}

.astro-cta-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.astro-cta-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 26px;
}

/* CTA BUTTON */
.astro-cta-btn {
    background: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.astro-cta-btn:hover {
    transform: scale(1.05);
}

/* ===============================
   MODAL STYLING
=============================== */

.astro-modal {
    border-radius: 18px;
    border: none;
}

.astro-modal .modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.astro-modal .modal-title {
    font-weight: 700;
    color: #111;
}

.astro-modal .modal-body {
    padding-top: 16px;
}

.astro-modal-points {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.astro-modal-points li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #222;
}

.astro-modal-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--main-color);
    font-weight: 700;
}

/* MODAL FOOTER */
.modal-close-btn {
    background: var(--main-color);
    color: #fff;
    border-radius: 999px;
    padding: 10px 24px;
    font-weight: 600;
    border: none;
}

/* MOBILE */
@media (max-width: 767px) {
    .astro-cta-box {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .astro-cta-title {
        font-size: 22px;
    }

    .astro-cta-text {
        font-size: 15px;
    }

    .astro-cta-btn {
        font-size: 15px;
        padding: 12px 24px;
        margin-bottom: 50px;
    }
}






/* ===============================
   ORDER BUTTON (MODAL)
=============================== */

.modal-order-btn {
    background: var(--main-color);
    color: #fff;
    border-radius: 999px;
    padding: 10px 26px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
}

.modal-order-btn:hover {
    transform: scale(1.06);
}

/* ===============================
   CTA BUTTON PULSE ANIMATION
=============================== */

.astro-cta-btn {
    animation: ctaPulse 2.4s ease-in-out infinite;
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 108, 51, 0.45);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 22px 6px rgba(244, 108, 51, 0.25);
        transform: scale(1.04);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 108, 51, 0.45);
        transform: scale(1);
    }
}


/* ===============================
   MOBILE BOTTOM SHEET MODAL
=============================== */









/* ===============================
   PURCHASE POPUP TOAST
=============================== */

.purchase-toast {
    position: fixed;
    left: 16px;
    bottom: 22px;
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 12px;

    background: #ffffff;
    border-left: 4px solid var(--main-color);
    border-radius: 14px;
    padding: 12px 16px;

    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);

    font-size: 14px;
    color: #111;

    opacity: 0;
    transform: translateX(-20px);
    pointer-events: none;

    transition: all 0.45s ease;
}

/* SHOW STATE */
.purchase-toast.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* ICON */
.toast-icon {
    font-size: 22px;
    line-height: 1;
}

/* TEXT */
.toast-text {
    line-height: 1.4;
}

.toast-text strong {
    color: var(--main-color);
    font-weight: 700;
}

.toast-time {
    font-size: 12px;
    color: #666;
}

/* MOBILE */
@media (max-width: 767px) {
    .purchase-toast {
        left: 12px;
        right: 12px;
        bottom: 16px;
        max-width: calc(100% - 24px);
        font-size: 13px;
    }
}










/* ===============================
   STICKY OFFER BAR
=============================== */

.sticky-offer-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;

    background: #fff;
    border-top: 2px solid var(--main-color);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    padding: 12px 20px;

    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
}

/* PRICE */
.offer-price {
    background: linear-gradient(135deg, var(--main-color), #ff8c5a);
    color: #fff;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.offer-new {
    font-size: 20px;
    margin-right: 6px;
}

.offer-old {
    font-size: 14px;
    opacity: 0.7;
    text-decoration: line-through;
}

/* TIMER */
.offer-timer {
    text-align: center;
    flex: 1;
}

.timer-label {
    font-size: 13px;
    color: #555;
    margin-bottom: 2px;
}

.timer-clock {
    font-size: 22px;
    font-weight: 700;
    color: #122b45;
    letter-spacing: 1px;
}

/* CTA */
.offer-cta-btn {
    background: transparent;
    border: 2px solid var(--main-color);
    color: var(--main-color);
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.offer-cta-btn:hover {
    background: var(--main-color);
    color: #fff;
}

/* ===============================
   MOBILE
=============================== */

@media (max-width: 767px) {

    .sticky-offer-bar {
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px 12px;
    }

    .offer-price {
        padding: 8px 14px;
    }

    .offer-new {
        font-size: 18px;
    }

    .timer-clock {
        font-size: 18px;
    }

    .offer-cta-btn {
        width: 100%;
        padding: 12px;
        font-size: 15px;
    }
}














/* ===============================
   SCROLLABLE MODAL CONTENT
=============================== */

/* Limit modal height */
.modal-dialog {
    max-height: 90vh;
}

/* Scroll only body */
.modal-body {
    max-height: calc(90vh - 140px);
    /* header + footer space */
    overflow-y: auto;
}

/* Smooth scrolling */
.modal-body {
    scroll-behavior: smooth;
}

@media (max-width: 767px) {

    .bottom-sheet-modal .modal-dialog {
        max-height: 85vh;
    }

    .bottom-sheet-modal .modal-body {
        max-height: 60vh;
        overflow-y: auto;
    }
}


/* ===============================
   MODAL BACKGROUND BLUR
=============================== */

.modal-backdrop.show {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(6px);
}