/* =========================
   WARKOP LUMINA - UI STYLE
   Dark Mode | Mobile First
   ========================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #0e0e0e;
    color: #f1f1f1;
}

/* Container utama */
.container {
    max-width: 480px;
    margin: auto;
    padding: 16px;
}

/* Judul */
h1, h2, h3 {
    margin: 10px 0;
    font-weight: 600;
}

/* Link */
a {
    color: #f5c542;
    text-decoration: none;
}

/* Kategori */
.category-list a {
    display: inline-block;
    background: #1c1c1c;
    padding: 6px 12px;
    margin: 4px 4px 4px 0;
    border-radius: 20px;
    font-size: 14px;
}

/* Card produk */
.card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
    border: 1px solid #222;
}

/* Nama produk */
.product-name {
    font-size: 16px;
    font-weight: 600;
}

/* Harga */
.price {
    color: #00e676;
    font-weight: bold;
    margin: 6px 0;
}

/* Tombol */
button {
    background: #f5c542;
    color: #000;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

button:active {
    transform: scale(0.97);
}

/* Keranjang link */
.cart-link {
    display: block;
    margin-top: 20px;
    text-align: center;
    background: #25d366;
    color: #000;
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
}

/* Form checkout */
input, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
}

/* Total harga */
.total {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

/* Footer kecil */
.footer {
    text-align: center;
    font-size: 12px;
    color: #777;
    margin-top: 30px;
}

/* Floating Cart */
.floating-cart {
    position: fixed;
    right: 16px;
    bottom: 16px;
    background: #25d366;
    color: #000;
    padding: 14px 16px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-cart span {
    background: #000;
    color: #fff;
    border-radius: 50%;
    padding: 4px 8px;
    font-size: 13px;
}

