/* Minimal theme — printed menu style, no images, typography-driven */
* { box-sizing: border-box; }
body { margin: 0; background: white; min-height: 100vh; color: #111827; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 300; }

.order-header {
  background: white; border-bottom: 1px solid #e5e7eb;
  padding: 1rem 1.25rem; text-align: center;
  position: sticky; top: 0; z-index: 10;
}
.order-header h1 { font-size: 0.85rem; font-weight: 600; margin: 0; letter-spacing: 0.1em; text-transform: uppercase; }
.order-header p { font-size: 0.75rem; color: #9ca3af; margin: 0.2rem 0 0; }
.order-body { max-width: 640px; margin: 0 auto; padding: 1rem; }

/* Category tabs become section headers inline — hide tab bar */
.cat-tabs-bar { display: none; }

/* Product grid becomes a flat list */
.product-grid { display: block; margin-bottom: 1.5rem; }

.p-card {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 0.55rem 0; border: none; border-bottom: 1px solid #f3f4f6;
  border-radius: 0; background: transparent; cursor: pointer;
  overflow: visible;
}
.p-card:hover { background: #fafafa; }

/* Hide images entirely */
.p-card img, .p-card .no-img { display: none; }

.p-card-info { flex: 1; padding: 0; }
.p-card-name { font-size: 0.9rem; font-weight: 600; margin: 0; line-height: 1.3; }
.p-card-desc { font-size: 0.78rem; color: #9ca3af; margin: 0.1rem 0 0; font-weight: 300; line-height: 1.35; }
.p-card-price {
  font-size: 0.9rem; font-weight: 500; color: var(--primary);
  white-space: nowrap; margin: 0 0 0 1rem; flex-shrink: 0; padding-top: 0.05rem;
}

/* Category section headers injected via template {% ifchanged %} */
.cat-section-header {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: #9ca3af; padding: 0.9rem 0 0.3rem; font-weight: 600;
  border-bottom: none;
}

.cat-tab {
  white-space: nowrap; padding: 0.35rem 0.75rem;
  border: 1px solid #d1d5db; border-radius: 9999px;
  background: white; color: #111827; font-size: 0.8rem; font-weight: 600; cursor: pointer;
}
.cat-tab.active { background: var(--primary); color: white; border-color: var(--primary); }

.cart-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #111827; color: white;
  padding: 0.85rem 1.25rem; cursor: pointer;
  display: none; z-index: 20; text-align: center;
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.03em;
  border-radius: 0;
}
.cart-bar.visible { display: block; }

.cart-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 30;
}
.cart-overlay.open { display: flex; align-items: flex-end; justify-content: center; }
.cart-sheet {
  background: white; width: 100%; max-width: 640px;
  border-radius: 1rem 1rem 0 0; max-height: 90vh; overflow-y: auto;
  padding: 1.5rem; box-shadow: 0 -8px 40px rgba(0,0,0,0.15);
}

.loc-card {
  display: block; padding: 1rem; border: 1px solid #e5e7eb; border-radius: 0;
  border-bottom: 2px solid #111827;
  text-decoration: none; color: #111827; font-weight: 600; font-size: 0.95rem;
  transition: background 0.15s; text-align: left;
}
.loc-card:hover { background: #f9fafb; }
.loc-card small { display: block; color: #6b7280; font-weight: 300; font-size: 0.8rem; margin-top: 0.25rem; }

.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.65rem 0.75rem; border: 1px solid #d1d5db;
  border-bottom: 2px solid #111827; border-radius: 0; font-size: 0.9rem; outline: none;
  background: transparent; font-family: inherit; font-weight: 300;
}
.form-input:focus, .form-select:focus { border-bottom-color: var(--primary); }

.header-cart-btn { background: #111827; }
