/* Page-specific CSS only. Navbar/marquee/mobile nav/promo/WhatsApp are controlled by assets/css/global.css. */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #1a1a1a;
            background-color: #ffffff;
            line-height: 1.5;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 60px 0;
        }

        .btn-primary {
            display: inline-block;
            background: #c9002c;
            color: white;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 600;
            transition: 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary:hover {
            background: #a30023;
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            border: 1px solid #c9002c;
            color: #c9002c;
            padding: 10px 24px;
            border-radius: 40px;
            font-weight: 500;
            transition: 0.3s;
            display: inline-block;
        }

        .btn-outline:hover {
            background: #c9002c;
            color: white;
        }

        /* =========================
           HERO
        ========================= */
        .massage-hero {
    position: relative;
    min-height: 760px;
    background:
        linear-gradient(rgba(241, 235, 235, 0.292), rgba(0, 0, 0, 0.65)),
        url("../../msgbg.webp") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
}

        .massage-hero-overlay {
            position: absolute;
            inset: 0;
            background: rgba(124, 123, 123, 0.222);
        }

        .massage-hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 40px 30px;
        }

        .massage-hero-inner {
            display: grid;
            grid-template-columns: 1.05fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .massage-hero-left {
            max-width: 560px;
        }

        .massage-hero-code {
            font-size: 1.1rem;
            color: #111;
            margin-bottom: 18px;
            font-weight: 500;
        }

        .massage-hero-badge {
            width: 220px;
            display: block;
            margin-bottom: 26px;
        }

        .massage-hero-left h1 {
            font-size: 3rem;
            line-height: 1.15;
            font-weight: 500;
            color: #971D37;
            margin-bottom: 22px;
        }

        .massage-hero-list {
            list-style: none;
            margin: 0 0 28px;
            padding: 0;
        }

        .massage-hero-list li {
            position: relative;
            padding-left: 18px;
            margin-bottom: 8px;
            font-size: 1rem;
            color: #ffffff;
        }

        .massage-hero-list li::before {
            content: "▪";
            position: absolute;
            left: 0;
            top: 0;
            color: #971D37;
        }

        .massage-hero-price {
            font-size: 1rem;
            color: #971D37;
            margin-bottom: 28px;
        }

        .massage-hero-price strong {
            font-size: 2.25rem;
            font-weight: 700;
        }

        .massage-hero-btn {
            display: inline-block;
            background: #971D37;
            color: #fff;
            padding: 16px 30px;
            border-radius: 18px;
            font-size: 1.05rem;
            font-weight: 700;
            box-shadow: 0 10px 20px rgba(151,29,55,0.25);
            transition: 0.3s ease;
        }

        .massage-hero-btn:hover {
            background: #7f1830;
            transform: translateY(-2px);
        }

        .massage-hero-right {
            position: relative;
        }

        .massage-hero-swiper {
            width: 100%;
            max-width: 620px;
            margin: 0 auto;
        }

        .massage-hero-swiper .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .massage-hero-swiper .swiper-slide img {
            width: 100%;
            max-height: 560px;
            object-fit: contain;
        }

        .massage-hero-swiper .swiper-button-prev,
        .massage-hero-swiper .swiper-button-next {
            color: #971D37;
            width: 42px;
            height: 42px;
        }

        .massage-hero-swiper .swiper-button-prev::after,
        .massage-hero-swiper .swiper-button-next::after {
            font-size: 20px;
            font-weight: 700;
        }

        .massage-hero-swiper .swiper-pagination-bullet {
            background: #bdbdbd;
            opacity: 1;
        }

        .massage-hero-swiper .swiper-pagination-bullet-active {
            background: #971D37;
        }

        @media (max-width: 1024px) {
            .massage-hero {
                min-height: auto;
                padding: 70px 0;
            }

            .massage-hero-inner {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .massage-hero-left {
                max-width: 100%;
            }

            .massage-hero-left h1 {
                font-size: 2.4rem;
            }

            .massage-hero-right {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .massage-hero-content {
                padding: 30px 20px;
            }

            .massage-hero-badge {
                width: 180px;
            }

            .massage-hero-code {
                font-size: 1rem;
            }

            .massage-hero-left h1 {
                font-size: 2rem;
            }

            .massage-hero-list li {
                font-size: 0.95rem;
            }

            .massage-hero-price strong {
                font-size: 1.8rem;
            }

            .massage-hero-btn {
                padding: 14px 24px;
                font-size: 1rem;
            }

            .massage-hero-swiper .swiper-slide img {
                max-height: 420px;
            }
        }

        /* =========================
           PRICING
        ========================= */
        .pricing-section {
            position: relative;
            margin-top: -70px;
            z-index: 5;
            padding: 0 20px 28px;
            background: transparent;
        }

        .pricing-shell {
            max-width: 1000px;
            margin: 0 auto;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 10px 24px rgba(0,0,0,0.06);
            padding: 18px 18px;
        }

        .pricing-flex {
            display: grid;
            grid-template-columns: 1fr 1fr auto;
            gap: 16px;
            align-items: center;
        }

        .pricing-card {
            background: #fff;
            border: 1px dashed #d8d8d8;
            border-radius: 14px;
            padding: 18px 20px;
            text-align: left;
            box-shadow: none;
            min-width: 0;
        }

        .pricing-card h3 {
            margin-bottom: 8px;
            font-size: 15px;
        }

        .pricing-card .price {
            font-size: 1.7rem;
            font-weight: 700;
            color: #334a62;
            margin: 4px 0 6px;
        }

        .pricing-card .price small {
            font-size: 0.9rem;
            color: #334a62;
        }

        .pricing-card p {
            font-size: 13px;
            margin: 0;
        }

        .pricing-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .pricing-link-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-width: 190px;
            height: 48px;
            padding: 0 18px;
            border: 1.5px solid #b1203d;
            border-radius: 10px;
            color: #b1203d;
            font-weight: 600;
            background: #fff;
            font-size: 14px;
        }

        .pricing-enquire-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-width: 130px;
            height: 48px;
            padding: 0 18px;
            border-radius: 10px;
            background: #ff4a43;
            color: #fff;
            font-weight: 700;
            font-size: 14px;
        }

        .lg-subscribe-logo {
            height: 32px;
            max-width: 140px;
            width: auto;
            object-fit: contain;
            margin-bottom: 8px;
        }

        @media (max-width: 1024px) {
            .pricing-section {
                margin-top: -40px;
            }

            .pricing-flex {
                grid-template-columns: 1fr;
            }

            .pricing-actions {
                justify-content: flex-start;
            }
        }

        /* =========================
           BODY CONTENT
        ========================= */
        .detail-section,
        .section-padding {
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
        }

        .detail-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 50px;
            margin-bottom: 70px;
        }

        .detail-row.reverse {
            flex-direction: row-reverse;
        }

        .detail-text,
        .detail-image {
            flex: 1 1 480px;
            max-width: 560px;
        }

        .detail-text {
            text-align: left;
        }

        .detail-text h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .detail-image {
            text-align: center;
        }

        .detail-image img,
        .detail-image video {
            width: 100%;
            max-width: 560px;
            display: block;
            margin: 0 auto;
            border-radius: 20px;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1280px;
            margin: 40px auto;
            justify-content: center;
        }

        .feature-card {
            background: white;
            border-radius: 24px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            max-width: 320px;
            margin: 0 auto;
        }

        .feature-card img {
            max-width: 100%;
            border-radius: 16px;
            margin-bottom: 15px;
        }

       .video-section {
            max-width: 1280px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 20px;
        }

        .video-wrapper iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .container.section-padding > img {
            max-width: 1100px;
            margin: 0 auto;
            display: block;
            width: 100%;
            border-radius: 20px;
        }

        @media (max-width: 768px) {
            .detail-row {
                gap: 28px;
            }

            .detail-text,
            .detail-image {
                max-width: 100%;
                flex: 1 1 100%;
            }

            .detail-text {
                text-align: center;
            }
        }

        html {
            scroll-behavior: smooth;
        }

        /* =========================
           SWIPERS / SECTION TITLE
        ========================= */
        .motion-carousel {
            margin: 40px 0;
        }

        .motion-slide {
            text-align: center;
            padding: 10px;
        }

        .motion-slide video {
            width: 100%;
            border-radius: 20px;
        }

        .swiper-button-prev,
        .swiper-button-next {
            color: #c9002c;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 40px;
            font-weight: 700;
        }

        /* ===== SPECIFICATION ACCORDION - WATER PURIFIER STYLE ===== */
        #full-specification .spec-accordion {
            width: 100%;
            max-width: 1180px;
            margin: 0 auto;
            background: #fff;
            border: 1px solid #f0f0f0;
            border-radius: 16px;
            box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
            overflow: hidden;
        }

        #full-specification .spec-accordion-header {
            background: #fff;
            color: #1a1a1a;
            padding: 18px 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #eee;
            transition: 0.2s ease;
        }

        #full-specification .spec-accordion-header:hover {
            color: #971D37;
            background: #fff;
        }

        #full-specification .spec-accordion-header .spec-title {
            color: inherit;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0;
        }

        #full-specification .spec-accordion-header .spec-toggle-icon {
            color: inherit;
            font-size: 1.2rem;
            font-weight: 700;
            line-height: 1;
        }

        #full-specification .spec-accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
            background: #fff;
        }

        #full-specification .spec-accordion-body.active {
            max-height: 2200px;
        }

        #full-specification .spec-table-wrapper {
            padding: 20px 24px 32px;
            overflow-x: auto;
        }

        #full-specification .spec-table {
            width: 100%;
            border-collapse: collapse;
            margin: 0;
            font-size: 14px;
            color: #222;
            min-width: 680px;
        }

        #full-specification .spec-table td,
        #full-specification .spec-table th {
            border: 1px solid #ddd;
            padding: 14px 12px;
            vertical-align: top;
            text-align: left;
            background: #fff;
        }

        #full-specification .spec-table td:first-child {
            width: 25%;
            min-width: 260px;
            font-weight: 700;
            color: #222;
        }

        #full-specification .spec-table td:last-child {
            color: #333;
        }

        @media (max-width: 768px) {
            #full-specification .spec-accordion {
                border-radius: 12px;
            }

            #full-specification .spec-accordion-header {
                padding: 16px 20px;
            }

            #full-specification .spec-accordion-header .spec-title {
                font-size: 0.95rem;
            }

            #full-specification .spec-table-wrapper {
                padding: 16px;
            }

            #full-specification .spec-table {
                font-size: 13px;
                min-width: 560px;
            }

            #full-specification .spec-table td,
            #full-specification .spec-table th {
                padding: 12px 10px;
            }
        }

        /* ===== FAQ ACCORDION ===== */
        #faqAccordion {
            max-width: 700px;
            margin: 0 auto;
        }

        .accordion-item {
            background: #fff;
            border: 1px solid #e5e5e5;
            border-radius: 12px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: 0.2s;
        }

        .accordion-header {
            padding: 18px 22px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            color: #1a1a1a;
        }

        .accordion-header i {
            color: #999;
            font-size: 0.9rem;
            transition: 0.2s;
        }

        .accordion-content {
            padding: 0 22px 20px 22px;
            display: none;
            border-top: none;
            color: #555;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .accordion-item.active .accordion-header {
            color: #c9002c;
        }

        .accordion-item.active .accordion-header i {
            color: #c9002c;
        }

        .accordion-item.active .accordion-content {
            display: block;
        }

        .accordion-header:hover {
            color: #c9002c;
        }

        .accordion-header:hover i {
            color: #c9002c;
        }

        /* =========================
           FOOTER - INDEX STYLE
        ========================= */
        .footer {
            background: #971D37;
            color: #fff;
            padding: 100px 0 28px;
            position: relative;
            margin-top: 60px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.35fr 0.8fr 1fr 1.3fr;
            gap: 50px;
            max-width: 1380px;
            margin: 0 auto;
            padding: 0 32px;
            align-items: start;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-col p,
        .footer-col a,
        .footer-contact-item {
            color: #fff;
            font-size: 17px;
            line-height: 1.45;
        }

        .footer-intro-title {
            font-size: 28px;
            font-weight: 500;
            line-height: 1.25;
            margin-bottom: 24px;
            max-width: 360px;
        }

        .footer-intro-desc {
            max-width: 360px;
            margin-bottom: 28px;
        }

        .footer-bullet-list a,
        .footer-bullet-list .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 10px;
            color: #fff;
        }

        .footer-bullet-list a::before {
            content: "●";
            font-size: 12px;
            line-height: 1.8;
            flex-shrink: 0;
        }

        .footer-contact-item i {
            width: 20px;
            margin-top: 4px;
            flex-shrink: 0;
        }

        .footer-branch-label {
            font-weight: 700;
            margin: 6px 0 4px 0;
        }

        .footer-whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #fff;
            color: #111 !important;
            padding: 12px 22px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 500;
            margin-top: 24px;
            width: fit-content;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: 0.3s;
        }

        .footer-whatsapp-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(0,0,0,0.15);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 44px;
            color: #fff;
            font-size: 18px;
        }

        @media (max-width: 1100px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 36px;
            }
        }

        @media (max-width: 768px) {
            .footer {
                padding: 50px 0 24px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
                padding: 0 20px;
            }

            .footer-intro-title {
                font-size: 24px;
                max-width: 100%;
            }

            .footer-intro-desc {
                max-width: 100%;
            }

            .footer-col p,
            .footer-col a,
            .footer-contact-item {
                font-size: 16px;
            }

            .footer-whatsapp-btn {
                min-width: 100%;
                width: 100%;
            }

            .footer-bottom {
                font-size: 16px;
                margin-top: 34px;
            }
        }

        /* =========================
           FLOATING
        ========================= */
        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #25D366;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            z-index: 99;
        }

        #openPromoBtn {
            position: fixed;
            top: 45%;
            right: -60px;
            transform: translateY(-50%) rotate(-90deg);
            background: #9C0E2E;
            color: white;
            border: none;
            padding: 15px 28px;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            z-index: 1000;
            box-shadow: -8px 8px 15px rgba(156,14,46,0.5);
            border-radius: 10px 10px 0 0;
            white-space: nowrap;
        }

        #ohsemSticker {
            position: fixed;
            left: 15px;
            bottom: 20px;
            width: 160px;
            height: 160px;
            z-index: 1000;
            cursor: pointer;
            overflow: hidden;
            background: transparent;
            animation: stickerBreath 2s ease-in-out infinite;
        }

        #ohsemSticker img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        #ohsemSticker:hover {
            animation-play-state: paused;
            transform: scale(1.08);
        }

        @keyframes stickerBreath {
            0% { transform: scale(1); }
            50% { transform: scale(1.08); }
            100% { transform: scale(1); }
        }

        /* =========================
           PROMO MODAL
        ========================= */
        .promo-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(0,0,0,0.7);
            justify-content: center;
            align-items: center;
        }

        .promo-modal-card {
            font-family: 'Ubuntu', sans-serif;
            position: relative;
            width: 90%;
            max-width: 820px;
            background: #9C0E2E;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            padding-bottom: 14px;
        }

        .close-modal-btn {
            position: absolute;
            top: 18px;
            right: 18px;
            z-index: 20;
            width: 32px;
            height: 32px;
            border: none;
            border-radius: 50%;
            background: #fff;
            color: #9C0E2E;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
        }

        .modal-header {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 18px 24px 8px 24px;
        }

        .modal-header h1, .modal-header .modal-title {
            margin: 0;
            color: #fff;
            font-family: 'Ubuntu', sans-serif;
            font-size: 34px;
            font-weight: 700;
            line-height: 1;
            margin-left: 270px;
        }

        .header-logo {
            width: 63px;
            height: auto;
            display: block;
            flex-shrink: 0;
            margin-top: 4px;
        }

        .modal-body-flex {
            display: flex;
            align-items: flex-start;
            flex-wrap: nowrap;
            gap: 18px;
            background: #9C0E2E;
            padding: 8px 22px 0 10px;
        }

        .sidebar {
            width: 168px;
            flex: 0 0 168px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            padding: 92px 0 0 0;
            margin: 0;
            background: transparent;
        }

        .sidebar button {
            width: 100%;
            max-width: 150px;
            min-height: 84px;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            border: 1.5px solid #fff;
            border-radius: 28px;
            background: transparent;
            color: #fff;
            font-family: 'Ubuntu', sans-serif;
            font-size: 17px;
            font-weight: 700;
            line-height: 1.02;
            text-align: left;
            cursor: pointer;
            transition: 0.25s ease;
        }

        .sidebar button.active {
            background: #fff;
            color: #9C0E2E;
            box-shadow: none;
        }

        .sidebar button:hover:not(.active) {
            background: rgba(255,255,255,0.2);
        }

        .main-content-area {
            flex: 1;
            padding: 0;
            text-align: center;
            background: #9C0E2E;
            color: #fff;
        }

        .slider-wrapper-main {
            overflow: hidden;
            width: 100%;
            max-width: 440px;
            margin: 0 auto 14px;
        }

        .slider-track {
            display: flex;
            transition: transform 0.35s ease-in-out;
            will-change: transform;
        }

        .slide {
            min-width: 220px;
            flex: 0 0 220px;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .slider-img-dua {
            width: 210px;
            height: 210px;
            object-fit: cover;
            border-radius: 12px;
            background: #fff;
            display: block;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 12px 0 18px;
        }

        .dot {
            width: 10px;
            height: 10px;
            background: #d9d9d9;
            border-radius: 50%;
            cursor: pointer;
            transition: 0.2s;
        }

        .dot.active {
            width: 22px;
            background: #c9002c;
            border-radius: 10px;
        }

        .white-box {
            margin: 0;
            padding: 26px 24px 20px;
            border-radius: 40px;
            background: url("../../Background.webp") center / cover no-repeat;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .white-box .cooling-badge {
            display: inline-block;
            margin: 10px 0;
            padding: 8px 20px;
            border-radius: 40px;
            background: #c9002c;
            color: #fff;
            font-size: 13px;
            font-weight: 700;
        }

        .white-box .price-big {
            margin: 5px 0;
            color: #c9002c;
            font-size: 24px;
            font-weight: 800;
        }

        .white-box .description-box {
            margin: 15px 0;
            padding: 0;
            background: transparent;
            border-radius: 0;
        }

        .white-box .description-box strong {
            color: #9C0E2E;
        }

        .white-box .description-box p {
            color: #555;
            font-size: 12px;
        }

        .whatsapp-btn {
            position: relative;
            z-index: 1;
            display: inline-block;
            overflow: hidden;
            margin: 10px 0;
            padding: 12px 38px;
            border-radius: 999px;
            background: #9C0E2E;
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            box-shadow: 0 8px 18px rgba(37,211,102,0.28);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            animation: breathingBtn 2.5s ease-in-out infinite;
        }

        .whatsapp-btn::before,
        .whatsapp-btn::after {
            content: "";
            position: absolute;
            z-index: -1;
            border-radius: 50%;
            background: rgba(255,255,255,0.22);
            animation: bubbleFloat 4s ease-in-out infinite;
        }

        .whatsapp-btn::before {
            top: 50%;
            left: 12px;
            width: 38px;
            height: 38px;
            transform: translateY(-50%);
        }

        .whatsapp-btn::after {
            top: 28%;
            right: 18px;
            width: 22px;
            height: 22px;
            animation-delay: 1.2s;
        }

        .whatsapp-btn:hover {
            transform: scale(1.08);
            box-shadow: 0 14px 28px rgba(37,211,102,0.35);
        }

        @keyframes bubbleFloat {
            0% { transform: translateY(-50%) translateX(0); opacity: 0.55; }
            25% { transform: translateY(-58%) translateX(6px); opacity: 0.75; }
            50% { transform: translateY(-45%) translateX(-4px); opacity: 0.45; }
            75% { transform: translateY(-55%) translateX(5px); opacity: 0.7; }
            100% { transform: translateY(-50%) translateX(0); opacity: 0.55; }
        }

        @keyframes breathingBtn {
            0% { transform: scale(1); box-shadow: 0 8px 18px rgba(37,211,102,0.25); }
            50% { transform: scale(1.06); box-shadow: 0 14px 30px rgba(37,211,102,0.45); }
            100% { transform: scale(1); box-shadow: 0 8px 18px rgba(37,211,102,0.25); }
        }

        .new-customer-card {
            max-width: 600px;
            margin: 20px auto;
            padding: 30px 25px;
            text-align: center;
            border-radius: 30px;
            background: url("../../Background.webp") center / cover no-repeat;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .new-img {
            width: 100%;
            max-width: 400px;
            margin-bottom: 20px;
            border-radius: 20px;
        }

        .new-text-small {
            margin-bottom: 5px;
            color: #9C0E2E;
            font-size: 15px;
        }

        .new-text-big {
            margin-bottom: 10px;
            color: #9C0E2E;
            font-size: 26px;
            font-weight: 800;
        }

        .new-text-desc {
            margin-bottom: 20px;
            color: #9C0E2E;
            font-size: 14px;
        }

        .terms-note {
            margin-top: 12px;
            color: rgba(255,255,255,0.6);
            font-size: 10px;
        }

        @media (max-width: 650px) {
            .modal-body-flex {
                flex-direction: column;
            }

            .sidebar {
                width: 100%;
                max-width: none;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 10px;
                padding: 12px 18px 0 18px;
                justify-content: center;
            }

            .sidebar button {
                max-width: none;
                width: auto;
                text-align: center;
                padding: 12px 18px;
            }

            .main-content-area {
                padding: 18px;
            }

            .modal-header h1, .modal-header .modal-title {
                font-size: 18px;
                margin-left: 0;
            }
        }

        .feature-three-card-section {
            max-width: 1380px;
            margin: 0 auto;
            padding: 18px;
        }

        .feature-three-card-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .feature-three-card {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
        }

        .feature-three-card-image {
            width: 100%;
            height: 180px;
            overflow: hidden;
            border-radius: 16px;
        }

        .feature-three-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .feature-three-card-content {
            padding: 10px 4px 0;
        }

        .feature-three-card-label {
            font-size: 11px;
            color: #555;
            margin-bottom: 4px;
        }

        .feature-three-card-content h3 {
            font-size: 14px;
            font-weight: 500;
        }

        @media (max-width: 900px) {
            .feature-three-card-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }
            .feature-three-card-image {
                height: 140px;
            }
        }

        @media (max-width: 640px) {
            .feature-three-card-grid {
                grid-template-columns: 1fr;
            }
            .feature-three-card-image img {
                height: auto;
                max-height: 320px;
            }
            .feature-three-card-label {
                font-size: 12px;
            }
            .feature-three-card-content h3 {
                font-size: 20px;
            }
        }
        .lg-cta {
            position: relative;
            width: 100%;
            margin-top: 80px;
            margin-bottom: -74px;
            z-index: 20;
            padding: 0 20px;
            background: transparent;
        }

        .lg-cta::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            bottom: 0;
            background: #971D37;
            z-index: 0;
        }

        .cta-container {
            max-width: 980px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 999px;
            padding: 20px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
            position: relative;
            z-index: 2;
        }

        .cta-logo {
            flex-shrink: 0;
            width: 78px;
            height: 78px;
            border-radius: 50%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cta-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .cta-text {
            flex: 1;
            font-size: 25px;
            line-height: 1.4;
            color: #555;
            font-weight: 400;
            max-width: 560px;
        }

        .cta-btn {
            flex-shrink: 0;
        }

        .cta-btn a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #a50034;
            color: #ffffff;
            padding: 13px 30px;
            border-radius: 999px;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            white-space: nowrap;
            min-width: 170px;
            transition: all 0.3s ease;
        }

        /* ===== DESIGN SWIPER FIX ===== */
        .design-swiper {
            width: 100%;
        }

        .design-swiper .swiper-slide {
            width: 100%;
        }

        .design-swiper .swiper-slide img {
            width: 100%;
            height: 560px;
            object-fit: cover;
            display: block;
        }

        @media (max-width: 768px) {
            .design-swiper .swiper-slide img {
                height: 260px;
            }
        }

        /* ===== FEATURE GRID FIX ===== */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
        }

        .feature-card {
            background: #fff;
            border-radius: 18px;
            padding: 18px;
            text-align: center;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .feature-card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 12px;
        }

        .feature-card h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .feature-card p {
            font-size: 12px;
            color: #555;
            line-height: 1.4;
            flex-grow: 1;
        }

        @media (max-width: 768px) {
            .feature-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .feature-card img {
                height: 100px;
            }
        }

        .feature-card img {
            width: 100%;
            height: 180px !important;
            object-fit: cover;
            border-radius: 14px;
            display: block;
        }

        .feature-card {
            padding: 22px;
        }

        .feature-card h3 {
            font-size: 16px;
            font-weight: 600;
            margin-top: 10px;
        }

        .feature-card p {
            font-size: 13px;
            color: #555;
        }

        @media (max-width: 768px) {
            .feature-card img {
                height: 120px !important;
            }
        }

        @media (max-width: 650px) {
            .promo-modal-card {
                width: 92%;
                max-width: 360px;
                max-height: 85vh;
                overflow-y: auto;
                border-radius: 18px;
            }
            .modal-header {
                padding: 16px;
                justify-content: center;
            }
            .modal-header h1, .modal-header .modal-title {
                margin-left: 0 !important;
                font-size: 22px !important;
                text-align: center;
            }
            .header-logo {
                width: 45px;
            }
            .modal-body-flex {
                flex-direction: column;
                gap: 10px;
                padding: 10px 14px 18px;
            }
            .sidebar {
                width: 100%;
                flex: none;
                flex-direction: column;
                padding: 0;
                gap: 10px;
            }
            .sidebar button {
                width: 100%;
                max-width: 100%;
                min-height: 54px;
                border-radius: 22px;
                justify-content: center;
                text-align: center;
                font-size: 15px;
                padding: 10px 14px;
            }
            .main-content-area {
                width: 100%;
                padding: 0;
                overflow: hidden;
            }
            .slider-wrapper-main {
                max-width: 100%;
                overflow: hidden;
            }
            .slider-track {
                gap: 0;
            }
            .slide {
                min-width: 100% !important;
                flex: 0 0 100% !important;
                display: flex;
                justify-content: center;
            }
            .slider-img-dua {
                width: 100% !important;
                height: auto;
                object-fit: cover;
            }
        }
        /* ===== FIX .lg-cta MOBILE FOLLOW INDEX STYLE ===== */
@media (max-width: 768px) {
    .lg-cta {
        position: relative !important;
        width: 100% !important;
        margin-top: -55px !important;
        margin-bottom: -65px !important;
        padding: 0 18px !important;
        z-index: 60 !important;
        background: transparent !important;
    }

    .lg-cta::before {
        content: "" !important;
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        top: 55% !important;
        bottom: 0 !important;
        background: #971D37 !important;
        z-index: 0 !important;
    }

    .cta-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 26px 22px 24px !important;
        border-radius: 38px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 18px !important;
        text-align: center !important;
        background: #fff !important;
        position: relative !important;
        z-index: 2 !important;
    }

    .cta-logo {
        width: 86px !important;
        height: 86px !important;
        margin: 0 auto !important;
    }

    .cta-text {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 16px !important;
        line-height: 1.45 !important;
        color: #555 !important;
        text-align: center !important;
    }

    .cta-btn {
        width: 100% !important;
    }

    .cta-btn a {
        width: 100% !important;
        min-width: 0 !important;
        padding: 15px 20px !important;
        font-size: 16px !important;
        border-radius: 999px !important;
    }

    .footer {
        margin-top: 0 !important;
        padding-top: 155px !important;
    }
}
    

/* ===== MASSAGE RECLINER GLOBAL SAFETY OVERRIDE ===== */
.whatsapp-float { display: none !important; }

/* ===== MASSAGE RECLINER MOBILE REFERENCE LAYOUT 20260729 ===== */
@media (max-width: 768px) {
    /*
     * Reference layout:
     * product slider at the top, centred product details underneath,
     * no room-scene crop and no floating white information card.
     */
    .massage-hero {
        min-height: 0 !important;
        padding: 0 !important;
        display: block !important;
        background:
            radial-gradient(circle at 8% 84%, rgba(151, 29, 55, 0.035) 0 18%, transparent 19%),
            radial-gradient(circle at 94% 72%, rgba(151, 29, 55, 0.025) 0 22%, transparent 23%),
            linear-gradient(180deg, #ffffff 0%, #ffffff 70%, #fbf9f8 100%) !important;
        overflow: hidden !important;
    }

    .massage-hero-overlay {
        display: none !important;
    }

    .massage-hero-content {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .massage-hero-inner {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        align-items: stretch !important;
    }

    /* Product picture area */
    .massage-hero-right {
        order: 0 !important;
        width: 100% !important;
        height: clamp(275px, 60vw, 430px) !important;
        margin: 0 !important;
        padding: 10px 22px 20px !important;
        background: transparent !important;
        overflow: hidden !important;
    }

    .massage-hero-swiper {
        width: 100% !important;
        max-width: 720px !important;
        height: 100% !important;
        margin: 0 auto !important;
        overflow: hidden !important;
    }

    .massage-hero-swiper .swiper-wrapper,
    .massage-hero-swiper .swiper-slide {
        height: 100% !important;
    }

    .massage-hero-swiper .swiper-slide {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .massage-hero-swiper .swiper-slide img {
        width: 100% !important;
        height: 100% !important;
        max-width: 650px !important;
        max-height: none !important;
        display: block !important;
        object-fit: contain !important;
        object-position: center center !important;
    }

    .massage-hero-swiper .swiper-button-prev,
    .massage-hero-swiper .swiper-button-next {
        width: 42px !important;
        height: 48px !important;
        margin-top: -24px !important;
        color: #a7193b !important;
    }

    .massage-hero-swiper .swiper-button-prev {
        left: 10px !important;
    }

    .massage-hero-swiper .swiper-button-next {
        right: 10px !important;
    }

    .massage-hero-swiper .swiper-button-prev::after,
    .massage-hero-swiper .swiper-button-next::after {
        font-size: 25px !important;
        font-weight: 800 !important;
    }

    /* Reference only shows the side arrows. */
    .massage-hero-swiper .swiper-pagination {
        display: none !important;
    }

    /* Product details area */
    .massage-hero-left {
        order: 1 !important;
        width: 100% !important;
        max-width: 720px !important;
        margin: 0 auto !important;
        padding: 4px 28px 30px !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        position: relative !important;
        z-index: 2 !important;
        text-align: center !important;
    }

    /* Hide desktop-only logo and CTA to match the supplied reference. */
    .massage-hero-badge,
    .massage-hero-btn {
        display: none !important;
    }

    .massage-hero-code {
        margin: 0 0 8px !important;
        color: #111 !important;
        font-size: clamp(15px, 3.3vw, 20px) !important;
        font-weight: 500 !important;
        line-height: 1.25 !important;
        text-align: center !important;
    }

    .massage-hero-left h1 {
        margin: 0 0 18px !important;
        color: #a7193b !important;
        font-size: clamp(28px, 6.3vw, 40px) !important;
        font-weight: 400 !important;
        line-height: 1.12 !important;
        text-align: center !important;
    }

    .massage-hero-list {
        width: fit-content !important;
        max-width: 100% !important;
        margin: 0 auto 22px !important;
        padding: 0 !important;
        list-style: none !important;
        text-align: left !important;
    }

    .massage-hero-list li {
        position: relative !important;
        margin: 0 0 7px !important;
        padding-left: 19px !important;
        color: #111 !important;
        font-size: clamp(14px, 3.05vw, 19px) !important;
        font-weight: 400 !important;
        line-height: 1.28 !important;
        white-space: normal !important;
    }

    .massage-hero-list li::before {
        content: "" !important;
        position: absolute !important;
        left: 0 !important;
        top: 0.47em !important;
        width: 10px !important;
        height: 10px !important;
        background: #a7193b !important;
        transform: translateY(-50%) !important;
    }

    .massage-hero-price {
        margin: 0 !important;
        color: #111 !important;
        font-size: clamp(13px, 2.8vw, 16px) !important;
        font-weight: 400 !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }

    .massage-hero-price strong {
        color: #111 !important;
        font-size: clamp(28px, 5.4vw, 37px) !important;
        font-weight: 400 !important;
        line-height: 1 !important;
        vertical-align: -2px !important;
    }

    /* Pricing remains below the redesigned hero without overlap. */
    .pricing-section {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* Keep the OHSEM sticker from covering the product text. */
    #ohsemSticker {
        width: 88px !important;
        height: 88px !important;
        left: 8px !important;
        bottom: 72px !important;
    }
}

@media (max-width: 420px) {
    .massage-hero-right {
        height: 255px !important;
        padding: 6px 14px 10px !important;
    }

    .massage-hero-left {
        padding: 4px 20px 25px !important;
    }

    .massage-hero-left h1 {
        margin-bottom: 15px !important;
    }

    .massage-hero-list {
        margin-bottom: 19px !important;
    }

    .massage-hero-list li {
        padding-left: 17px !important;
        margin-bottom: 6px !important;
    }

    .massage-hero-list li::before {
        width: 9px !important;
        height: 9px !important;
    }

    #ohsemSticker {
        width: 80px !important;
        height: 80px !important;
        bottom: 70px !important;
    }
}
