/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    line-height:1.4;
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f5f5;
    overflow-x:hidden;
}
/* CONTAINER */
.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    position:relative;
    padding-bottom:100px;
}
/* HEADER */
.satu{
    width:100%;
    height:80px;
    background:black;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 8px;
}
/* LOGO */
.namatoko{
    display:flex;
    align-items:center;
}
.namadepan{
    color:white;
    font-size:1.2rem;
    font-weight:bold;
}
.namabelakang{
    color:crimson;
    margin-left:4px;
    font-size:1rem;
}
/* FOTO USER */
.foto{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}
.bingkai{
    width:43px;
    height:43px;
    border-radius:50%;
    overflow:hidden;
    background:#fff;
}
.bingkai img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.inisial{
    margin-top:5px;
    font-size:9px;
}
.inisial a{
    color:white;
    text-decoration:none;
}
/* ICON */
.icon{
    display:flex;
    align-items:center;
    gap:10px;
}
.lonceng{
    width:28px;
    margin-left: 120px;
}
/* NAVIGATION BOTTOM */
.dua{
    width:100%;
    height:65px;
    background-image:linear-gradient(80deg,#6a376c,#8ec5fc);
    position:fixed;
    bottom:0;
    left:0;
    z-index:999;
    display:flex;
    justify-content:space-around;
    align-items:center;
}
.dua img{
    width:35px;
}
/* CONTENT HEADER */
.tiga{
    width:100%;
    margin-top:80px;
    background:rgb(215,211,211);
    padding:15px;
    position:relative;
}
.judul h2{
    text-align:center;
    font-size:1rem;
    font-weight:800;
}
/* NAVIGASI */
.navigasi{
    margin-top:10px;
    display:flex;
    justify-content:flex-end;
}
.kembali{
    padding:8px 15px;
    border:1px solid black;
    border-radius:20px;
    background:white;
    font-size:12px;
}
.kembali a{
    text-decoration:none;
    color:black;
}
/* PRODUK */
.empat{
    width:100%;
    padding:10px;
}
/* KOTAK */
.kotak{
    width:100%;
    min-height:70px;
    background:rgb(215,211,211);
    border-radius:10px;
    margin-bottom:10px;
    padding:10px;
    display:flex;
    text-align: center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    position:relative;
}
/* TOKO */
.nama_toko{
    width:100%;
    background:#8ec5fc;
    padding:10px;
    border-radius:8px;
    font-size:14px;
    font-weight:700;
}
.nav{
    margin-top:10px;
    display:flex;
    justify-content:flex-end;
}
.checkout{
    padding:4px 15px;
    border:1px solid black;
    border-radius:20px;
    background:white;
    font-size:12px;
    position: absolute;
    margin-top: -35px;
    margin-right: 160px;
}
.checkout a{
    text-decoration:none;
    color:black;
}
/* ISI */
.urut_pembelian{
    width:30px;
    font-weight:bold;
}
.nama_produk{
    flex:1;
    min-width:120px;
    font-size:13px;
    font-weight:600;
}
.harga_produk{
    min-width:90px;
    font-size:12px;
}
.jumlah{
    min-width:40px;
    text-align:center;
    font-size:12px;
}
.harga{
    min-width:90px;
    font-size:12px;
    font-weight:bold;
}
/* AKSI */
.aksi{
    margin-left:auto;
}
.hapus{
    border:1px solid black;
    border-radius:15px;
    padding:6px 12px;
    background:white;
    text-align:center;
}
.aksi a{
    text-decoration:none;
    color:black;
    font-size:12px;
}
/* CHECKOUT */
.co{
    margin-left:auto;
    background:#8ec5fc;
    border-radius:15px;
    padding:8px 15px;
}
.co a{
    text-decoration:none;
    color:black;
    font-size:12px;
    font-weight:bold;
}
/* CLEAR */
.clear{
    clear:both;
}
/* TABLET */
@media screen and (min-width:768px){

    .kotak{
        flex-wrap:nowrap;
    }

    .judul h2{
        font-size:1.5rem;
    }

    .nama_produk{
        font-size:14px;
    }

    .harga_produk,
    .jumlah,
    .harga{
        font-size:13px;
    }
}

/* DESKTOP */
@media screen and (min-width:1024px){

    .container{
        max-width:1200px;
    }

    .empat{
        width:90%;
        margin:auto;
    }

    .kotak{
        padding:15px;
    }
}
.foto-user{
    width:100%;
    height:100%;
    object-fit:cover;
}
.nomor{
    width:30px;
    height:30px;
    border-radius:50%;
    background:#7b42ed;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:12px;
    font-weight:bold;
}