/* ===== GLOBAL ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f4f1ea;
    color:#333;
}

h1,h2,h3{
    font-family:'Playfair Display',serif;
}

section{
    padding:80px 10%;
}

.container{
    max-width:1200px;
    margin:auto;
}

/* ===== HEADER SIMPLE ===== */
.header{
    background:#ffffff;
    height:120px;
    display:flex;
    align-items:center;
    padding:0 10%;
    border-bottom:1px solid #eee;
}

.brand{
    display:flex;
    align-items:center;
    gap:18px;
}

.brand img{
    height:60px;
}

.brand h2{
    font-size:24px;
    color:#1f4d2e;
    margin:0;
}

.header h2{
    color:#1f4d2e;
}

.breadcrumb{
    padding:15px 10%;
    font-size:14px;
    color:#777;
}

.breadcrumb a{
    color:#1f4d2e;
    text-decoration:none;
}

/* ===== PRODUCT HERO ===== */
.product-hero{
    display:flex;
    flex-wrap:wrap;
    gap:50px;
    align-items:center;
}

.product-hero img{
    width:100%;
    max-width:500px;
    border-radius:15px;
}

.product-info{
    flex:1;
}

.product-info h1{
    font-size:42px;
    color:#1f4d2e;
    margin-bottom:15px;
}

.product-info p{
    margin-bottom:20px;
    line-height:1.6;
}

.cta-btn{
    display:inline-block;
    padding:14px 35px;
    background:#1f4d2e;
    color:#fff;
    border-radius:30px;
    text-decoration:none;
    transition:0.3s;
}

.cta-btn:hover{
    background:#2e6a42;
}

/* ===== BENEFIT SECTION ===== */
.benefits{
    background:#eef4ee;
    text-align:center;
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:50px;
}

.benefit-card{
    background:#ffffff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

/* ===== HOW TO USE ===== */
.how-use{
    text-align:center;
}

.how-use p{
    max-width:700px;
    margin:20px auto;
}

/* ===== TESTIMONIAL ===== */
.testimonial{
    background:#eef4ee;
    text-align:center;
}

.video-wrapper{
    margin-top:40px;
    position:relative;
    padding-bottom:56.25%;
    height:0;
    overflow:hidden;
    border-radius:15px;
}

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

/* ===== FINAL CTA ===== */
.final-cta{
    text-align:center;
}

.final-cta h2{
    margin-bottom:20px;
}

/* ===== FOOTER ===== */
.footer{
    background:#1f4d2e;
    color:#ffffff;
    text-align:center;
    padding:25px 10%;
    font-size:14px;
}

@media(max-width:768px){
    .product-hero{
        flex-direction:column;
        text-align:center;
    }
}

/* ===== BROCHURE ===== */
.product-brochure{
    padding:60px 10%;
    background:#ffffff;
}

.brochure-grid{
    display:flex;
    justify-content:center;
}

.brochure-grid img{
    width:100%;
    max-width:450px;   /* supaya tidak terlalu besar */
    aspect-ratio:1/1.414;
    object-fit:contain;
    border-radius:12px;
    cursor:pointer;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    transition:0.3s ease;
}

.brochure-grid img:hover{
    transform:scale(1.03);
}

.image-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.85);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.image-modal img{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
}

.close-modal{
    position:absolute;
    top:20px;
    right:40px;
    font-size:40px;
    color:white;
    cursor:pointer;
}

