/* =========================================================
   AIR PURIFIER PAGE CSS
   Product/page layout only. Global navbar, marquee, latest promo,
   OHSEM sticker and WhatsApp floating styles are in 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;
        }

        /* ===== PRODUCT HERO ===== */
       .product-hero {
             padding: 80px 20px 70px;
            background-image:
             linear-gradient(to right, rgba(255,255,255,0.78), rgba(255,255,255,0.88)),
            url("../../BACKGROUND/1.webp");
         background-repeat: no-repeat;
            background-size: cover;
            background-position: left bottom;
}
        .hero-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .hero-content {
            flex: 1;
        }
        .hero-content h3 {
            font-size: 1.2rem;
            color: #c9002c;
        }
        .hero-content h2 {
            font-size: 1.8rem;
            margin: 10px 0;
        }
        .hero-content ul {
            list-style: none;
            margin: 20px 0;
        }
        .hero-content ul li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .price-start {
            font-size: 1.5rem;
            font-weight: 700;
            color: #c9002c;
            margin: 20px 0;
        }
        .hero-image {
            flex: 1;
            text-align: center;
        }
        .hero-image img {
            max-width: 100%;
            max-height: 500px;
            object-fit: contain;
        }

/* ===== PRICING - ORI STYLE ===== */
.pricing-section {
    background: #fff;
    padding: 0 0 2px;
}

.pricing-section .container {
    max-width: 1180px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 24px 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.pricing-section h3,
.pricing-section p {
    display: none;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 45px;
}

.pricing-flex {
    display: flex;
    align-items: stretch;
    gap: 28px;
    justify-content: flex-start;
}

.pricing-card {
    width: 300px;
    min-width: 300px;
    flex: 0 0 300px;
    min-height: 130px;
    background: #fff;
    border: 1px dashed #ddd;
    border-radius: 8px;
    padding: 20px 22px;
    text-align: left;
    box-shadow: none;
}

.pricing-card h3 {
    display: block;
    color: #ff3131;
    font-size: 16px;
    margin-bottom: 6px;
}

.pricing-card img {
    height: 22px !important;
    margin-bottom: 12px !important;
}

.pricing-card .price {
    font-size: 34px;
    font-weight: 500;
    color: #3f4a54;
    margin: 0 0 6px;
    line-height: 1;
}

.pricing-card .price small {
    font-size: 18px;
    font-weight: 400;
}

.pricing-card p {
    display: block;
    color: #3f4a54;
    font-size: 16px;
    line-height: 1.3;
    margin: 6px 0 0;
}

.pricing-card .btn-outline {
    display: none;
}

.pricing-actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}

.btn-price-list,
.btn-enquire {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.btn-price-list {
    padding: 0 28px;
    border: 1px solid #a5102d;
    background: #fff;
    color: #a5102d;
    cursor: pointer;
}

.btn-enquire {
    padding: 0 26px;
    background: #ff3131;
    color: #fff;
    border: 1px solid #ff3131;
}

.btn-enquire:hover {
    background: #e60023;
}

html {
    scroll-behavior: smooth;
}

        /* ===== FEATURE GRID ===== */
        .feature-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin: 40px 0;
        }
        .feature-card {
            background: #f8f9fc;
            border-radius: 24px;
            padding: 25px;
            text-align: center;
        }
        .feature-card img {
            width: 100%;
            border-radius: 16px;
            margin-bottom: 15px;
        }
        .feature-card .gradient-bg {
            background: linear-gradient(135deg, #c9002c, #8b0020);
            padding: 30px;
            border-radius: 20px;
            color: white;
        }
        .feature-card .gradient-bg h3 {
            color: white;
        }

        /* ===== ACCORDION ===== */
        .accordion-item {
            background: #fff;
            border-radius: 16px;
            margin-bottom: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .accordion-header {
            padding: 18px 24px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .accordion-content {
            padding: 0 24px 20px 24px;
            display: none;
            border-top: 1px solid #eee;
            font-size: 0.9rem;
            overflow-x: auto;
        }
        .accordion-item.active .accordion-content {
            display: block;
        }

        /* ===== SPEC TABLE ===== */
        .spec-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 0.8rem;
        }
        .spec-table td, .spec-table th {
            padding: 10px;
            border: 1px solid #ddd;
            vertical-align: top;
        }

        /* ===== FOOTER ===== */
        .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;
            justify-content: center;
                gap: 12px;
    background: #fff;
    color: #111 !important;
            min-width: 330px;
            padding: 16px 28px;
            border-radius: 999px;
            font-size: 16px;
            font-weight: 600;
            margin-top: 28px;
        }
        .footer-bottom {
            text-align: center;
            margin-top: 44px;
            color: #fff;
            font-size: 18px;
        }

        @media (min-width: 768px) {
            .hero-content h2 { font-size: 2.5rem; }
            .feature-grid { grid-template-columns: repeat(2, 1fr); }
            .spec-table { font-size: 1rem; }
            .spec-table td, .spec-table th { padding: 12px; }
        }
        @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;
            }
        }

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

/* =========================================================
   AS60GHWG0 BODY REVAMP - screenshot style body sections only
   Keeps header, footer, pricing, global colours untouched.
   ========================================================= */
.as60-body-wrap {
    max-width: 1440px;
    padding-top: 36px;
    padding-bottom: 36px;
}

.as60-hero-card,
.as60-feature-card,
.as60-spec-card {
    background: #f3f3f3;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 28px;
}

.as60-hero-card {
    position: relative;
}

.as60-hero-card > img {
    display: block;
    width: 100%;
    min-height: 380px;
    object-fit: cover;
}

.as60-overlay-box {
    position: absolute;
    background: rgba(245, 245, 245, 0.95);
    color: #111;
    padding: 34px 40px;
    max-width: 470px;
}

.as60-overlay-box h3 {
    font-size: clamp(34px, 4.1vw, 62px);
    line-height: 1.05;
    font-weight: 400;
    margin: 0 0 24px;
    letter-spacing: -0.03em;
}

.as60-overlay-box p {
    margin: 0;
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.45;
    color: #222;
    max-width: 360px;
}

.as60-overlay-left {
    left: 0;
    bottom: 0;
    width: min(42%, 540px);
}

.as60-overlay-bottom-left {
    left: 0;
    bottom: 0;
    width: min(36%, 430px);
}

.as60-dual-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 28px;
}

.as60-feature-card {
    padding: 18px 18px 28px;
    text-align: center;
}

.as60-feature-card img {
    width: 100%;
    border-radius: 18px;
    display: block;
    margin: 0 0 26px;
    min-height: 300px;
    object-fit: cover;
}

.as60-feature-copy {
    max-width: 86%;
    margin: 0 auto;
}

.as60-feature-copy h3 {
    margin: 0 0 16px;
    font-size: clamp(24px, 2.3vw, 34px);
    line-height: 1.2;
    font-weight: 400;
    color: #111;
}

.as60-feature-copy p {
    margin: 0;
    font-size: clamp(17px, 1.25vw, 22px);
    line-height: 1.42;
    color: #6f7580;
}

.as60-wide-panel > img {
    min-height: 470px;
}

.as60-spec-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding: 24px;
}

.as60-spec-panel {
    background: #efefef;
    border-radius: 12px;
    overflow: hidden;
}

.as60-spec-panel img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 1100px) {
    .as60-overlay-left,
    .as60-overlay-bottom-left {
        width: min(48%, 520px);
    }

    .as60-overlay-box {
        padding: 28px 30px;
    }
}

@media (max-width: 860px) {
    .as60-dual-grid,
    .as60-spec-card {
        grid-template-columns: 1fr;
    }

    .as60-hero-card > img,
    .as60-wide-panel > img {
        min-height: 280px;
    }

    .as60-feature-card img {
        min-height: 240px;
    }

    .as60-overlay-box,
    .as60-overlay-left,
    .as60-overlay-bottom-left {
        position: static;
        width: 100%;
        max-width: none;
        padding: 26px 24px;
    }

    .as60-overlay-box p {
        max-width: none;
    }
}

@media (max-width: 560px) {
    .as60-body-wrap {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .as60-hero-card,
    .as60-feature-card,
    .as60-spec-card {
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .as60-feature-card {
        padding: 14px 14px 20px;
    }

    .as60-feature-card img {
        border-radius: 14px;
        margin-bottom: 18px;
    }

    .as60-feature-copy {
        max-width: 94%;
    }
}

/* =========================================================
   AS60GHWG0 ONLY - smaller screenshot-style body layout
   This only affects AS60GHWG0 body detail sections.
   Header, footer, pricing, modal, background colour untouched.
   ========================================================= */
.as60-body-wrap {
    max-width: 1180px;
    padding-top: 34px;
    padding-bottom: 34px;
}

.as60-hero-card,
.as60-feature-card,
.as60-spec-card {
    background: #f4f4f4;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 24px;
}

.as60-hero-card {
    position: relative;
}

.as60-hero-card > img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 300px;
    max-height: 430px;
    object-fit: cover;
}

.as60-overlay-box {
    position: absolute;
    background: rgba(245, 245, 245, 0.94);
    color: #111;
    padding: 28px 32px;
    max-width: 400px;
}

.as60-overlay-box h3 {
    font-size: clamp(30px, 3.4vw, 48px);
    line-height: 1.08;
    font-weight: 400;
    margin: 0 0 18px;
    letter-spacing: -0.03em;
}

.as60-overlay-box p {
    margin: 0;
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.45;
    color: #111;
    max-width: 320px;
}

.as60-overlay-left {
    left: 0;
    bottom: 0;
    width: min(40%, 430px);
}

.as60-overlay-bottom-left {
    left: 0;
    bottom: 0;
    width: min(34%, 360px);
}

.as60-dual-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.as60-feature-card {
    padding: 14px 14px 24px;
    text-align: center;
}

.as60-feature-card img {
    width: 100%;
    height: 255px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    margin: 0 0 22px;
}

.as60-feature-copy {
    max-width: 88%;
    margin: 0 auto;
}

.as60-feature-copy h3 {
    margin: 0 0 12px;
    font-size: clamp(22px, 1.9vw, 30px);
    line-height: 1.22;
    font-weight: 400;
    color: #111;
}

.as60-feature-copy p {
    margin: 0;
    font-size: clamp(15px, 1.05vw, 18px);
    line-height: 1.45;
    color: #6f7580;
}

.as60-wide-panel > img {
    min-height: 330px;
    max-height: 390px;
}

.as60-spec-card {
    max-width: 780px;
    margin: 26px auto 24px;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.as60-spec-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
}

@media (max-width: 980px) {
    .as60-body-wrap {
        max-width: 94%;
    }

    .as60-overlay-left,
    .as60-overlay-bottom-left {
        width: min(48%, 420px);
    }
}

@media (max-width: 760px) {
    .as60-dual-grid {
        grid-template-columns: 1fr;
    }

    .as60-hero-card > img,
    .as60-wide-panel > img {
        min-height: 250px;
        max-height: 330px;
    }

    .as60-feature-card img {
        height: 230px;
    }

    .as60-overlay-box,
    .as60-overlay-left,
    .as60-overlay-bottom-left {
        position: static;
        width: 100%;
        max-width: none;
        padding: 24px 22px;
    }

    .as60-overlay-box p {
        max-width: none;
    }

    .as60-spec-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .as60-body-wrap {
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .as60-hero-card,
    .as60-feature-card,
    .as60-spec-card {
        border-radius: 18px;
        margin-bottom: 18px;
    }

    .as60-feature-card {
        padding: 12px 12px 18px;
    }

    .as60-feature-card img {
        height: 200px;
        border-radius: 14px;
        margin-bottom: 16px;
    }

    .as60-feature-copy {
        max-width: 94%;
    }
}

/* =========================================================
   AS60GHWG0 FINAL SPEC IMAGE FILL FIX
   Purpose: jangan besarkan box; gambar spec terakhir isi penuh dalam kotak.
   ========================================================= */

/* keep spec box size normal, not oversized */
.as60-spec-card {
    width: 100% !important;
    max-width: 1180px !important;
    margin: 28px auto 34px !important;
    padding: 24px !important;
    background: #f4f4f4 !important;
    border-radius: 28px !important;
    overflow: hidden !important;
}

/* if the spec section has only one image/panel, make it fill the whole box */
.as60-spec-card > img,
.as60-spec-card > .as60-spec-panel:only-child,
.as60-spec-card > .as60-spec-panel:only-child img {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
}

/* if the spec image is inside a panel, remove the half-width look */
.as60-spec-panel {
    background: transparent !important;
    border-radius: 0 !important;
    overflow: hidden !important;
}

/* make the image fill the card width, no tiny left-side image */
.as60-spec-panel img,
.as60-spec-card > img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center !important;
    margin: 0 auto !important;
    border-radius: 0 !important;
}

/* if old grid forces empty right side, make single image span full row */
.as60-spec-card > img,
.as60-spec-card > .as60-spec-panel:only-child {
    grid-column: 1 / -1 !important;
}

/* if there are 2 separate panels, still keep them side-by-side */
.as60-spec-card:has(.as60-spec-panel:nth-child(2)) {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
}

/* if there is only 1 spec panel/image, make it one full row */
.as60-spec-card:not(:has(.as60-spec-panel:nth-child(2))) {
    display: block !important;
}

@media (max-width: 760px) {
    .as60-spec-card {
        max-width: 100% !important;
        padding: 14px !important;
        border-radius: 20px !important;
    }

    .as60-spec-card:has(.as60-spec-panel:nth-child(2)) {
        grid-template-columns: 1fr !important;
    }
}


/* QA FIX: mobile CTA/footer alignment only */
@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; }
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .footer-whatsapp-btn { width: 100% !important; min-width: 0 !important; }
}
