
        * {
            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;
        }

        .btn-block {
            display: block;
            text-align: center;
            margin-top: 15px;
        }

        /* =========================
           INDEX HEADER + MARQUEE
        ========================= */
        .promo-marquee {
            background: #971D37;
            color: #e4dbd3;
            padding: 13px 0;
            overflow: hidden;
            white-space: nowrap;
            font-weight: 500;
            font-size: 14px;
            position: sticky;
            top: 0;
            z-index: 1002;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .marquee-content {
            display: inline-block;
            animation: scrollMarquee 40s linear infinite;
        }

        .marquee-content span {
            margin-right: 48px;
        }

        @keyframes scrollMarquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .main-header {
            background: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            position: sticky;
            top: 44px;
            z-index: 1001;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: none;
            margin: 0;
            padding: 14px 14px;
        }

        .logo {
            flex-shrink: 0;
        }

        .logo img {
            height: 34px;
            width: auto;
            display: block;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0;
        }

        .nav-menu > a,
        .nav-menu > .dropdown {
            display: flex;
            align-items: center;
            position: relative;
            padding: 0 12px;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .nav-menu > *:not(:last-child)::after {
            content: "|";
            position: absolute;
            right: -2px;
            top: 50%;
            transform: translateY(-50%);
            color: #d0d0d0;
            font-weight: 400;
        }

        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-toggle {
            cursor: pointer;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background: white;
            min-width: 160px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border-radius: 12px;
            padding: 10px 0;
            top: 35px;
            left: 0;
            z-index: 1001;
        }

        .dropdown-content a {
            display: block;
            padding: 14px 20px;
            font-size: 0.95rem;
            font-weight: 500;
            color: #333;
            background: #fff;
            transition: background 0.2s ease, color 0.2s ease;
        }

        .dropdown-content a:hover {
            background: #971D37;
            color: #fff;
        }

        .dropdown.show .dropdown-content {
            display: block;
        }

        .mobile-menu-btn {
            display: none;
            font-size: 30px;
            cursor: pointer;
            color: #333;
            margin-left: auto;
        }

        .nav-menu .dropdown-content {
            display: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(6px);
            transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
        }

        .nav-menu .dropdown:hover .dropdown-content {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-menu .dropdown {
            position: relative;
        }

        .nav-menu .dropdown::after {
            content: "";
            position: absolute;
            left: 0;
            top: 100%;
            width: 100%;
            height: 12px;
        }

        .nav-menu .dropdown-content {
            position: absolute;
            top: calc(100% + 10px);
            left: 0;
            min-width: 160px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(5px);
            transition: 0.2s ease;
        }

        .nav-menu .dropdown:hover .dropdown-content,
        .nav-menu .dropdown-content:hover {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* =========================
           HERO
        ========================= */
        .dishwasher-hero {
            position: relative;
            min-height: 720px;
            background: url("../../backgrounddw.webp") no-repeat center center;
            background-size: cover;
            display: flex;
            align-items: center;
        }

        .dishwasher-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.35), rgba(0,0,0,0.08));
        }

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

        .dishwasher-hero-left {
            max-width: 560px;
            color: #fff;
        }

        .dishwasher-hero-badge {
            width: 220px;
            display: block;
            margin-bottom: 24px;
        }

        .dishwasher-hero-mini-title {
            font-size: 1.15rem;
            font-weight: 500;
            margin-bottom: 18px;
            color: #fff;
        }

        .dishwasher-hero-left h1 {
            font-size: 3.3rem;
            line-height: 1.15;
            font-weight: 500;
            margin-bottom: 24px;
            color: #fff;
        }

        .dishwasher-hero-left p {
            font-size: 1.15rem;
            line-height: 1.5;
            color: #fff;
            max-width: 560px;
            margin-bottom: 34px;
        }

        .dishwasher-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;
        }

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

        @media (max-width: 1024px) {
            .dishwasher-hero {
                min-height: 620px;
                background-position: center;
            }

            .dishwasher-hero-left h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .dishwasher-hero {
                min-height: auto;
                padding: 90px 0;
                background-position: center;
            }

            .dishwasher-hero-overlay {
                background: linear-gradient(to right, rgba(0,0,0,0.48), rgba(0,0,0,0.18));
            }

            .dishwasher-hero-content {
                padding: 0 20px;
            }

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

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

            .dishwasher-hero-mini-title {
                font-size: 1rem;
            }

            .dishwasher-hero-left h1 {
                font-size: 2rem;
                line-height: 1.22;
            }

            .dishwasher-hero-left p {
                font-size: 1rem;
            }

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

        /* =========================
           CARDS
        ========================= */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

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

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

        .product-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            transition: 0.3s;
            margin-bottom: 30px;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 30px rgba(0,0,0,0.1);
        }

        .product-img {
            padding: 20px;
            text-align: center;
            background: #fafafa;
        }

        .product-img img {
            max-width: 100%;
            max-height: 180px;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        .product-info {
            padding: 20px;
        }

        .product-info h3 {
            font-size: 1.4rem;
            margin-bottom: 5px;
        }

        .price {
            font-size: 1.2rem;
            color: #c9002c;
            font-weight: 700;
            margin: 10px 0;
        }

        .features {
            list-style: none;
            margin: 15px 0;
        }

        .features li {
            margin-bottom: 8px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .features li i {
            color: #c9002c;
            width: 20px;
        }

        /* ===== 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;
        }

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

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

        .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;
            }
        }

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

        .nav-menu > a:hover,
        .nav-menu > .dropdown:hover > a {
            color: #c9002c;
        }

        .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;
        }

        /* ===== MOBILE NAVIGATION - SAME STYLE AS air-purifier.php ===== */
        @media (max-width: 1024px) {
            .main-header,
            .header-inner {
                overflow: visible !important;
                overflow-x: visible !important;
                overflow-y: visible !important;
            }
            .header-inner { 
                position: relative !important; 
                padding: 12px 16px !important; 
            }
            .mobile-menu-btn {
                display: flex !important; 
                align-items: center !important; 
                justify-content: center !important;
                font-size: 24px !important; 
                line-height: 1 !important; 
                z-index: 5001 !important;
                width: 36px !important; 
                height: 36px !important; 
                margin-left: auto !important;
                cursor: pointer;
            }
            .nav-menu {
                display: flex !important; 
                position: absolute !important; 
                top: 100% !important;
                left: 0 !important; 
                right: 0 !important; 
                width: 100% !important; 
                max-width: 100% !important;
                background: #ffffff !important; 
                flex-direction: column !important; 
                flex-wrap: nowrap !important;
                align-items: stretch !important; 
                gap: 0 !important; 
                padding: 0 18px !important;
                box-shadow: 0 12px 24px rgba(0,0,0,0.12) !important; 
                border-top: 1px solid #eeeeee !important;
                z-index: 5000 !important; 
                opacity: 0 !important; 
                visibility: hidden !important; 
                max-height: 0 !important;
                overflow: hidden !important; 
                transform: translateY(-8px) !important;
                transition: opacity 0.25s ease, transform 0.25s ease, max-height 0.25s ease, padding 0.25s ease !important;
            }
            .nav-menu.mobile-nav-active {
                opacity: 1 !important; 
                visibility: visible !important; 
                max-height: calc(100vh - 110px) !important;
                padding: 10px 18px 26px !important; 
                overflow-y: auto !important; 
                overflow-x: hidden !important;
                transform: translateY(0) !important;
            }
            .nav-menu > a,
            .nav-menu > .dropdown {
                display: block !important; 
                width: 100% !important; 
                max-width: 100% !important;
                padding: 10px 0 !important; 
                margin: 0 !important; 
                font-size: 13px !important;
                line-height: 1.25 !important; 
                font-weight: 500 !important; 
                border-bottom: 1px solid #eeeeee !important;
                white-space: normal !important; 
                box-sizing: border-box !important; 
                color: #1a1a1a !important;
            }
            .nav-menu > *::after,
            .nav-menu .dropdown::after { 
                display: none !important; 
                content: none !important; 
            }
            .nav-menu > a:hover,
            .nav-menu > .dropdown:hover > a { 
                color: #c9002c !important; 
            }
            .dropdown { 
                padding-bottom: 0 !important; 
                position: relative !important; 
                width: 100% !important; 
            }
            .dropdown-toggle {
                display: flex !important; 
                align-items: center !important; 
                justify-content: space-between !important;
                width: 100% !important; 
                font-size: 13px !important; 
                line-height: 1.25 !important;
                font-weight: 500 !important; 
                color: #1a1a1a !important;
                cursor: pointer;
            }
            .dropdown-toggle i { 
                font-size: 11px !important; 
                transition: transform 0.2s ease !important; 
            }
            .dropdown.show .dropdown-toggle i { 
                transform: rotate(180deg) !important; 
            }
            .nav-menu .dropdown-content,
            .dropdown .dropdown-content,
            .nav-menu .dropdown:hover .dropdown-content,
            .dropdown:hover .dropdown-content {
                position: static !important; 
                display: none !important; 
                opacity: 1 !important; 
                visibility: visible !important;
                transform: none !important; 
                box-shadow: none !important; 
                border-radius: 0 !important;
                padding: 4px 0 0 12px !important; 
                margin: 0 !important; 
                min-width: 100% !important; 
                width: 100% !important;
                max-height: none !important; 
                overflow: visible !important; 
                background: transparent !important; 
                transition: none !important;
            }
            .nav-menu .dropdown.show .dropdown-content,
            .dropdown.show .dropdown-content { 
                display: block !important; 
            }
            .dropdown-content a {
                display: block !important; 
                width: 100% !important; 
                padding: 9px 0 !important;
                font-size: 12.5px !important; 
                line-height: 1.25 !important; 
                font-weight: 500 !important;
                background: transparent !important; 
                color: #333333 !important; 
                border: none !important;
            }
            .dropdown-content a:hover { 
                background: transparent !important; 
                color: #971D37 !important; 
            }
        }

        @media (max-width: 768px) {
            html, body { 
                width: 100% !important; 
                max-width: 100% !important; 
                overflow-x: hidden !important; 
            }
            .promo-marquee { 
                position: fixed !important; 
                top: 0 !important; 
                left: 0 !important; 
                width: 100% !important; 
                z-index: 3000 !important; 
            }
            .main-header {
                position: fixed !important; 
                top: 43px !important; 
                left: 0 !important; 
                width: 100% !important; 
                z-index: 2999 !important;
                background: #fff !important; 
                overflow: visible !important; 
                overflow-x: visible !important; 
                overflow-y: visible !important;
            }
            body { 
                padding-top: 115px !important; 
            }
            .promo-marquee, .hero-air, main, footer { 
                max-width: 100% !important; 
                overflow-x: hidden !important; 
            }
            .nav-menu { 
                width: 100% !important; 
                left: 0 !important; 
                right: 0 !important; 
                box-sizing: border-box !important; 
            }
            #ohsemSticker {
                width: 125px;
                height: 125px;
                left: 10px;
                bottom: 15px;
            }
            .whatsapp-float {
                width: 52px;
                height: 52px;
                right: 16px;
                bottom: 18px;
                font-size: 28px;
            }
            #openPromoBtn {
                right: -52px !important;
                padding: 12px 22px !important;
                font-size: 12px !important;
            }
            .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;
            }
        }

        @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;
            }
        }

        @media (max-width: 480px) {
            .nav-menu > a, 
            .nav-menu > .dropdown, 
            .dropdown-toggle { 
                font-size: 12.5px !important; 
            }
            .dropdown-content a { 
                font-size: 12px !important; 
            }
            .mobile-menu-btn { 
                font-size: 22px !important; 
            }
        }
        /* ===== 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;
    }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* Mobile jadi 1 column */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    max-width: 520px;
    margin: 0 auto;
}

.product-img img {
    max-height: 200px;
}

.product-info h3 {
    font-size: 16px;
}

.price {
    font-size: 14px;
}

.features li {
    font-size: 13px;
}
    

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