/* ================= RESET CSS ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,body{
    width:100%;
    overflow-x:hidden;
    font-family:Arial, Helvetica, sans-serif;
    background:#f4f6f9;
}

/* ================= CONTAINER ================= */

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    position:relative;
    padding:0 15px 20px;
}

/* ================= HEADER ================= */

.tiga{
    width:100%;
    min-height:65px;
    background-color:rgb(219, 231, 240);
    border-radius:0 0 12px 12px;
    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:10px 80px 10px 15px;
}

.judul h2{
    font-size:22px;
    font-weight:800;
    text-align:center;
    color:#222;
}

/* ================= NAVIGASI ================= */

.navigasi{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
}

.kembali{
    min-width:80px;
    height:35px;
    border:1px solid #333;
    border-radius:30px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:white;
    transition:0.3s;
}

.kembali:hover{
    background:#333;
}

.kembali a{
    text-decoration:none;
    color:#222;
    font-size:13px;
    font-weight:600;
}

.kembali:hover a{
    color:white;
}

/* ================= FOTO PRODUK ================= */

.empat{
    width:100%;
    margin-top:20px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.foto_produk{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.foto_produk img{
    width:100%;
    max-width:700px;
    height:auto;

    border-radius:15px;
    object-fit:cover;

    box-shadow:0 4px 15px rgba(0,0,0,0.15);
}

/* ================= TABLET ================= */

@media screen and (max-width:768px){

    .container{
        padding:0 12px 20px;
    }

    .tiga{
        min-height:60px;
        padding-right:90px;
    }

    .judul h2{
        font-size:18px;
    }

    .kembali{
        min-width:75px;
        height:33px;
    }

    .kembali a{
        font-size:12px;
    }

    .foto_produk img{
        border-radius:12px;
    }
}

/* ================= MOBILE ================= */

@media screen and (max-width:480px){

    .container{
        padding:0 10px 15px;
    }

    .tiga{
        min-height:55px;
        padding:10px 75px 10px 10px;
    }

    .judul h2{
        font-size:16px;
    }

    .navigasi{
        right:10px;
    }

    .kembali{
        min-width:65px;
        height:30px;
    }

    .kembali a{
        font-size:11px;
    }

    .foto_produk img{
        width:100%;
        border-radius:10px;
    }
}