*{margin:0;padding:0;box-sizing:border-box}
body{font-family:Segoe UI}

body{
    font-family:Segoe UI;
    min-height:100vh;
    display:flex;
    flex-direction:column;
	min-height:100vh;
}

/* NAVBAR DESKTOP */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 60px;
    background:linear-gradient(90deg,#0d6efd,#18a558);
}

.logo-img{
    height:48px;
    filter:brightness(0) invert(1);
}

.menu{
    display:flex;
    gap:35px;
}

.menu a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
}

/* hamburger hidden desktop */
.hamburger{display:none}

/* mobile dropdown hidden desktop */
.mobile-menu{display:none}

/* SPLIT LAYOUT */
.split{
    display:flex;
    flex:1;
}


.doctor{
    width:250px;        /* ukuran foto desktop */
    max-width:100%;
    height:auto;
    margin:1px 0;
    border-radius:18px;
}

.left{
    width:30%;
    background:#f1f7ff;
    padding:70px;
}

.right{
    width:70%;
    display:flex;
    align-items:center;
    justify-content:center;
	background:#f1f7ff;
}

.card{
    width:520px;
    padding:20px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

input,select,textarea{
    width:100%;
    padding:14px;
    margin-bottom:18px;
    border:1px solid #ddd;
    border-radius:8px;
}

button {
    width: 100%;
    padding: 16px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

/* saat mouse diarahkan */
button:hover {
    background: #00497a;
}

/* saat tombol diklik */
button:active {
    background: #ff0101;
    transform: scale(0.98);
}
.left, .right{
    min-height:600px;
}

/* ===== FOOTER ===== */

.footer{
    background:#0f172a;
    color:#ddd;
}

.footer-container{
    max-width:1100px;
    margin:auto;
    padding:50px 30px;
    display:flex;
    justify-content:space-between;
    gap:40px;
}

.footer-col{
    width:33%;
}

.footer-logo{
    height:45px;
    filter:brightness(0) invert(1);
    margin-bottom:15px;
}

.footer-col h4{
    margin-bottom:15px;
    color:white;
}

.footer-col a{
    display:block;
    color:#ccc;
    text-decoration:none;
    margin-bottom:8px;
}

.footer-col a:hover{
    color:white;
}

.footer-bottom{
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,.1);
}

.menu-inmenu{
    background:blue;      /* warna hijau */
    color:white;             /* warna teks */
    padding:6px 6px;       /* tinggi tombol */
    border-top-left-radius:10px;
	border-top-right-radius:1px;
	border-bottom-right-radius:10px;
	border-bottom-left-radius:1px;

    width:45%;              /* panjang full */
    box-sizing:border-box;
	display:flex;
	text-align:left;
    font-weight:600;
}


/* ABOUT PAGE */

.about-hero{
    background:#f1f7ff;
    padding:80px 20px;
    text-align:center;
}

.about-container{
    max-width:900px;
    margin:auto;
}

.about-hero h1{
    font-size:42px;
    color:#0d6efd;
    margin-bottom:10px;
}

.about-content{
    padding:60px 20px;
}

.about-content h2{
    color:#0d6efd;
    margin-top:30px;
    margin-bottom:10px;
}

.about-content p{
    line-height:1.7;
    color:#444;
}

.about-content ul{
    padding-left:20px;
    line-height:1.8;
}

/* SHOP */

.shop-section{
    padding:60px 20px;
}

.shop-container{
    max-width:1100px;
    margin:auto;
    display:flex;
    gap:40px;
    justify-content:center;
}

.product-card{
    width:320px;
    padding:25px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    text-align:center;
}

.product-img{
    width:100%;
    border-radius:12px;
    margin-bottom:15px;
}

.price{
    margin:15px 0;
}

.old{
    text-decoration:line-through;
    color:#999;
    margin-right:10px;
}

.new{
    color:#16a34a;
    font-size:22px;
    font-weight:bold;
}

.buy-btn{
    display:block;
    background:#25D366;
    color:white;
    padding:14px;
    border-radius:10px;
    text-decoration:none;
}


.lp-section{margin:60px 0;text-align:left}
.lp-section h2{color:#0d6efd;margin-bottom:15px}
.lp-section ul{padding-left:20px;line-height:1.8}

.lp-img{
    width:100%;
    max-width:500px;
    display:block;
    margin:30px auto;
    border-radius:18px;
}

/* dokter rekomendasi */
.doctor-box{
    background:#0b3d0b;
    color:white;
    padding:40px 20px;
    border-radius:20px;
}

.testimoni{
    display:flex;
    gap:25px;
    margin:25px 0;
    align-items:center;
}

.testimoni img{
    width:90px;height:90px;border-radius:50%;
    background:#ddd;
}

.stars{color:gold;font-size:20px}

/* customer review */
.review-grid{
    display:flex;
    flex-wrap:wrap;
    gap:25px;
}

.review-card{
    width:300px;
    padding:20px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    text-align:center;
}
.review-card img{
    width:80px;height:80px;border-radius:50%;
    background:#ddd;margin-bottom:10px;
}

/* form order */
.order-box{
    background:#f1f7ff;
    padding:10px;
    border-radius:10px;
}


/* MENU CTA */
.cta-menu{
   
    padding:5px 5px;
    gap:10px;
    align-items:center;
}

.cta-menu a{
    color:white;
    text-decoration:none;
    font-size:12px;
}

.cta-btn{
    background:#0d6efd;
    padding:12px 12px;
    border-radius:10px;
    box-shadow:0 6px 18px rgba(0,0,0,.2);
    font-weight:bold;
}

