*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{

background:#f4f4f4;

}

header{

background:#009245;
padding:15px;

display:flex;

justify-content:space-between;

align-items:center;

color:white;

flex-wrap:wrap;

}

.logo{

font-size:28px;

font-weight:bold;

}

.search{

position:relative;

}

.search input{

padding:12px;

width:320px;

border:none;

border-radius:30px;

}

.search i{

position:absolute;

right:15px;

top:13px;

color:#888;

}

.hero{

background:white;

padding:40px;

text-align:center;

}

.hero h1{

font-size:40px;

margin-bottom:10px;

}

.hero p{

color:#666;

}

.container{

width:95%;

margin:auto;

padding:20px;

}

.produk-grid{

display:grid;

grid-template-columns:repeat(auto-fill,minmax(280px,1fr));

gap:25px;

}

.card{

background:white;

border-radius:12px;

overflow:hidden;

box-shadow:0 3px 12px rgba(0,0,0,.15);

transition:.3s;

}

.card:hover{

transform:translateY(-5px);

}

.card img{

width:100%;

height:220px;

object-fit:cover;

}

.info{

padding:15px;

}

.nama{

font-size:22px;

font-weight:bold;

margin-bottom:8px;

}

.harga{

color:red;

font-size:24px;

font-weight:bold;

margin-bottom:8px;

}

.pedagang{

margin-bottom:5px;

}

.lokasi{

margin-bottom:10px;

color:#777;

}

.wa{

display:block;

text-align:center;

background:#25D366;

color:white;

padding:12px;

border-radius:8px;

text-decoration:none;

font-size:18px;

font-weight:bold;

}

footer{

margin-top:40px;

background:#222;

color:white;

padding:20px;

text-align:center;

}