:root {
    --primary: #222;
    --accent: #2e7d32;
    --bg: #f9f9f9;
    --white: #ffffff;
}

body { font-family: 'Inter', sans-serif; background: var(--bg); margin: 0; color: #333; overflow-x: hidden; }

/* Header */
.minimal-header { background: var(--white); padding: 10px 20px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #eee; }
.header-content { display: flex; justify-content: space-between; align-items: center; max-width: 800px; margin: 0 auto; }
.logo-small { height: 45px; }

#cart-toggle-btn { background: var(--primary); color: white; border: none; padding: 10px 15px; border-radius: 50px; cursor: pointer; position: relative; }
#cart-count { background: #d32f2f; font-size: 10px; padding: 2px 6px; border-radius: 50%; position: absolute; top: -5px; right: -5px; }

/* Buscador */
.search-container { padding: 15px; max-width: 800px; margin: 0 auto; position: relative; }
.search-container input { width: 100%; padding: 12px 12px 12px 40px; border-radius: 10px; border: 1px solid #ddd; outline: none; box-sizing: border-box; }
.search-container i { position: absolute; left: 30px; top: 28px; color: #aaa; }

/* Navegación */
.category-nav { overflow-x: auto; white-space: nowrap; padding: 10px; background: var(--white); scrollbar-width: none; }
.category-nav::-webkit-scrollbar { display: none; }
#category-buttons { list-style: none; display: flex; gap: 10px; padding: 0; margin: 0; }
.category-btn { padding: 8px 18px; border-radius: 20px; border: 1px solid #ddd; background: white; cursor: pointer; font-size: 14px; transition: 0.2s; }
.category-btn.active { background: var(--primary); color: white; border-color: var(--primary); font-weight: 600; }

/* Contenedor de Menú */
#menu-container { max-width: 800px; margin: 0 auto; padding: 15px; }
.category-title { font-size: 18px; margin: 25px 0 15px; text-transform: uppercase; letter-spacing: 1px; border-left: 4px solid var(--primary); padding-left: 10px; }

/* Productos CON imagen (1 Columna) */
.products-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
.product-card { display: flex; background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.product-card img { width: 110px; height: 110px; object-fit: cover; flex-shrink: 0; }
.product-info { padding: 12px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.prod-desc { font-size: 12px; color: #777; margin: 5px 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Productos SIN imagen (2 Columnas) */
.products-grid-simple { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.product-card-simple { background: white; padding: 12px; border-radius: 10px; border: 1px solid #eee; display: flex; flex-direction: column; justify-content: space-between; height: 110px; box-sizing: border-box; }
.product-card-simple h4 { font-size: 13px; margin: 0; line-height: 1.2; }

.price { color: var(--accent); font-weight: 600; font-size: 14px; }
.add-btn { background: var(--primary); color: white; border: none; padding: 6px 12px; border-radius: 6px; cursor: pointer; width: fit-content; font-size: 12px; }

/* Carrito Sidebar */
#cart-sidebar { position: fixed; right: 0; top: 0; width: 85%; max-width: 350px; height: 100%; background: white; z-index: 2000; transition: 0.3s; padding: 20px; box-shadow: -5px 0 15px rgba(0,0,0,0.1); display: flex; flex-direction: column; box-sizing: border-box; }
#cart-sidebar.hidden { transform: translateX(100%); }
#cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1500; display: none; }

.cart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.close-cart { background: none; border: none; font-size: 24px; cursor: pointer; }
#cart-items { flex: 1; overflow-y: auto; }
.cart-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #f9f9f9; }
.item-details { display: flex; flex-direction: column; }
.item-name { font-size: 14px; font-weight: 600; }
.item-qty { font-size: 12px; color: #777; }
.remove-btn { background: none; border: none; color: #d32f2f; cursor: pointer; margin-left: 10px; }

.cart-footer { border-top: 1px solid #eee; padding-top: 15px; }
.total-row { display: flex; justify-content: space-between; font-weight: bold; font-size: 18px; margin-bottom: 15px; }
.cart-footer input { width: 100%; padding: 12px; margin-top: 10px; border-radius: 8px; border: 1px solid #ddd; box-sizing: border-box; font-size: 14px; }
.btn-confirm { width: 100%; background: var(--accent); color: white; border: none; padding: 15px; border-radius: 10px; margin-top: 15px; font-weight: bold; cursor: pointer; }

/* Mapa */
.location-section { padding: 30px 20px; background: white; text-align: center; }
.map-responsive { margin-top: 15px; border-radius: 15px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }

/* Escritorio */
@media (min-width: 650px) {
    .products-grid { grid-template-columns: 1fr 1fr; }
}