* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background: #f8f9fa; }
.app { max-width: 1200px; margin: 0 auto; padding: 20px; }
header { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; margin-bottom: 20px; }
.logo { font-size: 24px; font-weight: 700; color: #e17055; display: flex; align-items: center; gap: 10px; }
.cart { position: relative; font-size: 24px; color: #2d3436; cursor: pointer; }
.cart span { position: absolute; top: -10px; right: -10px; background: #e17055; color: white; font-size: 12px; padding: 2px 8px; border-radius: 50%; }
.categories { display: flex; gap: 10px; margin-bottom: 30px; overflow-x: auto; padding-bottom: 10px; }
.cat { padding: 12px 25px; border: none; background: white; border-radius: 25px; font-weight: 500; cursor: pointer; white-space: nowrap; transition: all 0.3s; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.cat.active { background: #e17055; color: white; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 25px; }
.menu-item { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.08); transition: transform 0.3s; }
.menu-item:hover { transform: translateY(-5px); }
.menu-item img { width: 100%; height: 180px; object-fit: cover; }
.menu-item-info { padding: 20px; }
.menu-item-info h3 { font-size: 18px; margin-bottom: 8px; color: #2d3436; }
.menu-item-info p { color: #636e72; font-size: 14px; margin-bottom: 15px; }
.menu-item-bottom { display: flex; justify-content: space-between; align-items: center; }
.price { font-size: 20px; font-weight: 700; color: #e17055; }
.add-btn { background: #e17055; color: white; border: none; padding: 10px 20px; border-radius: 20px; cursor: pointer; font-weight: 500; transition: all 0.3s; }
.add-btn:hover { background: #d63031; }
.cart-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); justify-content: flex-end; z-index: 100; }
.cart-modal.show { display: flex; }
.cart-content { width: 100%; max-width: 400px; background: white; padding: 30px; display: flex; flex-direction: column; }
.cart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.cart-header h2 { font-size: 24px; }
.cart-header button { background: none; border: none; font-size: 24px; cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; }
.cart-item { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid #eee; }
.cart-item-info h4 { font-size: 16px; }
.cart-item-info span { color: #e17055; font-weight: 600; }
.cart-item-actions button { background: none; border: none; color: #e74c3c; cursor: pointer; }
.cart-total { display: flex; justify-content: space-between; padding: 20px 0; font-size: 20px; font-weight: 700; border-top: 2px solid #eee; margin-top: auto; }
.order-btn { background: #e17055; color: white; border: none; padding: 15px; border-radius: 30px; font-size: 16px; font-weight: 600; cursor: pointer; }