/* Clubhouse theme — customer-facing order pages only.
   Loaded AFTER shared.css; staff pages (counter/prep/tv) never load this file. */

.cust-hero { padding: 28px 16px 8px; }
.cust-hero h1 { font-size: 28px; letter-spacing: 0.2px; }
.cust-hero .tagline {
  display: block; margin-top: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
}
.gold-rule {
  width: 56px; height: 2px; background: var(--gold);
  border: none; margin: 14px auto 0; opacity: 0.85;
}

/* Category pills — match the landing site feel */
.cat-tabs { justify-content: center; }
.cat-tab { background: transparent; border-color: #d8d0bf; }
.cat-tab.active { color: var(--gold); }

/* Item cards */
.menu-item {
  background: var(--cream-light);
  border-color: #e2dbca;
  border-radius: 12px;
  padding: 16px 10px;
}
.menu-item:hover { border-color: var(--gold); }
.menu-item .name { font-size: 13.5px; }
.menu-item .price {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
}
.menu-item .price::before { content: '£'; }

/* Basket bar */
.cust-cart-bar { border-top: 2px solid var(--gold); padding: 14px 20px; }
.cust-cart-bar #cartBarTotal { font-family: 'Playfair Display', serif; font-size: 20px; }
.cust-cart-bar #cartBarTotal::before { content: '£'; }

/* Review + totals */
.cust-review-item .name { font-size: 14px; }
.cart-total { font-family: 'Playfair Display', serif; font-size: 18px; }
#reviewTotal::before { content: '£'; }
.cust-review-item > div:last-child span:first-child::before { content: '£'; }

/* Order placed */
.cust-sent .num { color: var(--gold); }

/* Status page */
.status-num { color: var(--dark-green); }
.status-page .gold-rule { margin: 18px auto; }
