/*
Theme Name: GrosirKota Simple Store
Author: Prabu Dev
Description: Tema toko online sederhana, ringan dan mobile friendly
Version: 1.0
*/

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

header {
    background: #c40000;
    color: white;
    padding: 15px;
    text-align: center;
}

nav {
    background: #ffcc00;
    padding: 10px;
    text-align: center;
}

nav a {
    color: black;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}

.container {
    padding: 15px;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.product {
    background: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.product img {
    max-width: 100%;
    height: auto;
}

button {
    background: #c40000;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 10px;
}