/* === Reset dasar === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom right, #c8f7c5, #a3e635, #63c132);
    color: #333;
    min-height: 100vh;
    line-height: 1.6;
}

/* === Navbar === */
.navbar {
    background-color: #28a745 !important;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* === Hero Section === */
.hero {
    background-color: #f6fff7;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    text-align: center;
}

.hero h1 {
    font-size: 2rem;
    font-weight: bold;
}

.hero .tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: #2f4f2f;
}

/* === Produk Card === */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-title {
    font-size: 1.1rem;
    font-weight: bold;
}

/* === Tombol === */
.btn-cart {
    background-color: #28a745;
    color: white;
    font-weight: bold;
    transition: background-color 0.2s;
}

.btn-cart:hover {
    background-color: #218838;
}

/* === Keranjang === */
.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeeba;
    color: #856404;
    text-align: center;
}
