/* ==================================================
   ZONAPRODUKID - CHECKOUT QRIS V1 PREMIUM
   Orange • White • Clean • Mobile Friendly
================================================== */

/* ================= GOOGLE FONT ================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ================= RESET ================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#FFF8F2;
    color:#222;
    line-height:1.6;
}

a{
    text-decoration:none;
}

img{
    display:block;
    max-width:100%;
}

/* ================= TOPBAR ================= */
.topbar{
    background:linear-gradient(90deg,#ff6b00,#ff9900);
    color:#fff;
    text-align:center;
    padding:12px;
    font-size:14px;
    font-weight:600;
}

/* ================= HEADER ================= */
.header{
    max-width:1100px;
    margin:auto;
    padding:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo{
    width:55px;
    height:55px;
}

.brand h2{
    color:#ff6b00;
    font-size:22px;
}

.brand p{
    font-size:13px;
    color:#777;
}

.back-btn{
    color:#ff6b00;
    font-weight:600;
}

/* ================= HERO ================= */
.hero{
    max-width:700px;
    margin:auto;
    text-align:center;
    padding:10px 20px 40px;
}

.label{
    display:inline-block;
    background:#FFE5CF;
    color:#ff6b00;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
}

.hero h1{
    font-size:34px;
    font-weight:700;
    color:#1d1d1d;
    margin-bottom:10px;
}

.subtitle{
    color:#666;
    margin-bottom:25px;
}

.price{
    font-size:42px;
    font-weight:800;
    color:#ff6b00;
    margin-bottom:30px;
}

.product-cover{
    width:270px;
    margin:auto;
    border-radius:22px;
    box-shadow:0 20px 40px rgba(255,106,0,.18);
}

/* ================= PAYMENT CARD ================= */
.payment-card{
    background:#fff;
    max-width:720px;
    margin:30px auto;
    padding:35px;
    border-radius:30px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.payment-header{
    text-align:center;
    margin-bottom:25px;
}

.payment-icon{
    width:70px;
    height:70px;
    margin:auto;
    background:#FFF1E6;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    margin-bottom:18px;
}

.payment-header h2{
    color:#ff6b00;
    font-size:28px;
    margin-bottom:10px;
}

.payment-header p{
    color:#666;
    font-size:15px;
}

/* ================= QRIS ================= */
.qris-box{
    background:#FFF8F2;
    border:2px dashed #ff6b00;
    padding:25px;
    border-radius:25px;
    margin:30px 0;
    text-align:center;
}

.qris-image{
    width:280px;
    margin:auto;
    border-radius:16px;
}

/* ================= INFO ================= */
.payment-info{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.info-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-bottom:14px;
    border-bottom:1px solid #eee;
    font-size:15px;
}

.info-row span{
    color:#777;
}

.info-row strong{
    color:#111;
}

.total strong{
    font-size:28px;
    color:#ff6b00;
}

/* ================= STEPS ================= */
.steps{
    max-width:720px;
    margin:auto;
    padding:20px;
}

.steps h2{
    text-align:center;
    color:#ff6b00;
    margin-bottom:30px;
}

.step-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.step{
    display:flex;
    align-items:center;
    gap:18px;
    background:#fff;
    padding:18px 22px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.number{
    min-width:40px;
    min-height:40px;
    background:#ff6b00;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:700;
}

.step p{
    color:#555;
}

/* ================= TIMER ================= */
.timer-card{
    max-width:720px;
    margin:40px auto;
    padding:35px;
    background:linear-gradient(180deg,#FFF4EC,#FFFDFB);
    border-radius:28px;
    text-align:center;
    border:1px solid #FFE0C2;
}

.timer-card h3{
    color:#ff6b00;
    margin-bottom:18px;
}

.countdown{
    font-size:56px;
    color:#ff6b00;
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:12px;
}

.timer-card p{
    color:#777;
    font-size:14px;
}

/* ================= KONFIRMASI ================= */
.confirm-card{
    max-width:720px;
    margin:40px auto;
    padding:35px;
    text-align:center;
    background:#fff;
    border-radius:28px;
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.confirm-card h2{
    color:#16a34a;
    margin-bottom:12px;
}

.confirm-card p{
    color:#666;
    margin-bottom:25px;
}

.confirm-btn{
    width:100%;
    background:#16a34a;
    color:#fff;
    border:none;
    padding:18px;
    border-radius:16px;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.confirm-btn:hover{
    background:#138c3f;
    transform:translateY(-2px);
}

/* ================= SUPPORT ================= */
.support-card{
    max-width:720px;
    margin:35px auto;
    padding:30px;
    background:#fff;
    border-radius:28px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
}

.support-card h3{
    color:#ff6b00;
    margin-bottom:10px;
}

.support-card p{
    color:#666;
    margin-bottom:22px;
}

.support-btn{
    display:inline-block;
    background:#25D366;
    color:#fff;
    padding:16px 28px;
    border-radius:14px;
    font-weight:700;
    transition:.3s;
}

.support-btn:hover{
    background:#1EBE5D;
}

/* ================= FOOTER ================= */
.footer{
    margin-top:60px;
    background:#111827;
    color:#fff;
    text-align:center;
    padding:50px 20px;
}

.footer-logo{
    width:70px;
    margin:0 auto 18px;
}

.footer h3{
    color:#ff8c32;
    margin-bottom:10px;
}

.footer p{
    color:#ccc;
    margin-bottom:12px;
}

.footer small{
    color:#777;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){

.header{
    flex-direction:column;
    gap:20px;
}

.hero h1{
    font-size:28px;
}

.price{
    font-size:34px;
}

.product-cover{
    width:220px;
}

.payment-card,
.confirm-card,
.timer-card,
.support-card{
    margin:25px 16px;
    padding:25px;
}

.qris-image{
    width:230px;
}

.countdown{
    font-size:42px;
}

.info-row{
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
}

.confirm-btn{
    font-size:16px;
}

}