@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body { font-family: 'Poppins', sans-serif; background-color: #f4f4f4; margin: 0; padding: 0; }
.app-container { max-width: 480px; margin: 0 auto; background-color: #fff; min-height: 100vh; position: relative; padding-bottom: 90px; box-shadow: 0 0 15px rgba(0,0,0,0.1); }
.header { background-color: #cc0000; color: #fff; padding: 15px 20px; text-align: center; border-bottom: 4px solid #000; }
.header-logo { max-width: 120px; height: auto; display: block; margin: 0 auto 5px auto; border-radius: 8px; }
.header p { margin: 5px 0 0 0; font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; }
.user-info-section { padding: 20px 15px; background-color: #000; color: #fff; }
.user-info-section label { display: block; font-size: 0.9rem; margin-bottom: 8px; font-weight: 600; }
.user-info-section input { width: 100%; padding: 12px; border: 2px solid #fff; border-radius: 8px; font-size: 1rem; box-sizing: border-box; background: transparent; color: #fff; font-weight: bold; }
.user-info-section input::placeholder { color: #aaa; font-weight: normal; }
.mt-15 { margin-top: 15px; }
.menu-container { padding: 15px; }
.menu-item { display: flex; flex-direction: column; border: 2px solid #eaeaea; border-radius: 12px; margin-bottom: 20px; overflow: hidden; background-color: #fff; transition: border-color 0.3s; }
.menu-item:hover { border-color: #cc0000; }
.menu-img { width: 100%; height: 180px; object-fit: cover; background-color: #eee; }
.menu-info { padding: 15px; }
.menu-title { font-size: 1.1rem; font-weight: 700; margin: 0 0 5px 0; color: #000; }
.menu-desc { margin-bottom: 12px; }
.menu-desc summary { font-size: 0.8rem; color: #cc0000; font-weight: 600; cursor: pointer; outline: none; }
.menu-desc p { font-size: 0.75rem; color: #444; margin: 8px 0 0 0; padding: 8px; background-color: #f9f9f9; border-left: 3px solid #000; }
.menu-price { font-size: 1.1rem; font-weight: 700; color: #cc0000; margin: 0 0 15px 0; }
.controls-wrapper { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; padding-top: 10px; border-top: 1px dashed #ddd; }
.qty-controls { display: flex; align-items: center; gap: 15px; }
.btn-qty { background-color: #000; color: #fff; border: none; width: 32px; height: 32px; border-radius: 6px; font-size: 1.2rem; font-weight: bold; cursor: pointer; }
.btn-qty.minus { background-color: #ccc; color: #000; }
.btn-qty.plus { background-color: #cc0000; }
.qty-number { font-size: 1.1rem; font-weight: 700; width: 20px; text-align: center; }
.note-input { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 6px; font-size: 0.85rem; box-sizing: border-box; }
.footer-bar { position: fixed; bottom: 0; width: 100%; max-width: 480px; background-color: #000; padding: 15px 20px; box-sizing: border-box; display: flex; justify-content: space-between; align-items: center; border-top: 4px solid #cc0000; z-index: 100; }
.total-box { color: #fff; }
.total-label { font-size: 0.8rem; color: #aaa; margin: 0; }
.total-amount { font-size: 1.2rem; font-weight: 700; margin: 0; }
.btn-order { background-color: #cc0000; color: #fff; border: none; padding: 12px 25px; border-radius: 8px; font-size: 1rem; font-weight: 700; cursor: pointer; }
/* Gaya untuk Dropdown Menu Pilihan */
.addon-select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #cc0000;
    border-radius: 6px;
    font-size: 0.85rem;
    font-family: inherit;
    background-color: #fffafa;
    color: #000;
    outline: none;
}