* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #f4f4f4;
}

/* NAVBAR */
.navbar {
    background: #111;
    color: #fff;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

.menu a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

/* BANNER */
.banner {
    height: 350px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('https://images.unsplash.com/photo-1608198093002-ad4e005484ec');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner h1 {
    color: white;
    font-size: 40px;
}

/* CONTAINER */
.container {
    width: 90%;
    margin: auto;
    padding: 40px 0;
}

/* TITLE */
.section-title {
    font-size: 24px;
    margin-bottom: 20px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

/* PRODUK */
.produk {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.produk:hover {
    transform: translateY(-5px);
}

/* IMAGE DUMMY */
.produk-img {
    height: 180px;
    background: #ddd;
}

/* CONTENT */
.produk-content {
    padding: 15px;
}

.harga {
    color: #e63946;
    font-weight: bold;
}

/* FOOTER */
.footer {
    background: #111;
    color: #fff;
    padding: 40px 20px;
    margin-top: 50px;
}

.footer-content {
    text-align: center;
}

.footer-menu {
    margin: 15px 0;
}

.footer-menu a {
    color: #ccc;
    margin: 0 10px;
    text-decoration: none;
}

.footer-menu a:hover {
    color: white;
}

.copy {
    font-size: 12px;
    color: #aaa;
}
