*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{

background:#ececec;

}

.phone{

max-width:430px;

margin:auto;

min-height:100vh;

background:#f5f6fb;

padding:20px 20px 100px;

}

header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:25px;

}

header h1{

font-size:28px;

}

header p{

color:#888;

}

.avatar{

width:55px;

height:55px;

background:#ff6b00;

color:white;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

font-weight:bold;

}

.summary{

display:grid;

grid-template-columns:1fr 1fr;

gap:15px;

margin-bottom:25px;

}

.card{

background:white;

padding:18px;

border-radius:18px;

box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.card i{

font-size:24px;

color:#ff6b00;

margin-bottom:10px;

display:block;

}

.card span{

font-size:13px;

color:#777;

}

.card h2{

margin-top:8px;

}

.jualan{

width:100%;

border:none;

background:#ff6b00;

color:white;

padding:18px;

font-size:18px;

border-radius:18px;

font-weight:600;

margin-bottom:25px;

cursor:pointer;

}

.terlaris{

background:white;

padding:20px;

border-radius:20px;

box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.terlaris h2{

margin-bottom:15px;

}

.produk{

display:flex;

justify-content:space-between;

padding:15px 0;

border-bottom:1px solid #eee;

}

nav{

position:fixed;

bottom:0;

left:50%;

transform:translateX(-50%);

width:100%;

max-width:430px;

background:white;

display:flex;

justify-content:space-around;

padding:12px 0;

box-shadow:0 -5px 20px rgba(0,0,0,.08);

}

nav a{

display:flex;

flex-direction:column;

align-items:center;

font-size:12px;

text-decoration:none;

color:#777;

}

.active{

color:#ff6b00;

}

.jual{

margin-top:-28px;

background:#ff6b00;

width:65px;

height:65px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

color:white;

font-size:28px;

box-shadow:0 10px 20px rgba(255,107,0,.4);

}