@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root {
  --bg: #0b0b0b;
  --card: #111111;
  --muted: #bcbcbc;
  --text: #f5f5f5;
  --text-dim: #666666;
  --accent: #ffffff;
  --gold: #d4a843;
  --danger: #ff5252;
  --success: #9ae6b4;
  --warning: #ffcc66;
  --border: #2a2a2a;
  --font-display: 'Bebas Neue', 'Arial Narrow', Arial, sans-serif;
}

/* ── Reset & Base ── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
a:hover { opacity: 0.8; }

button { font-family: inherit; }

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-top-space { padding-top: 12px; }

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.build-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.summary-column { position: relative; }

.row {
  display: flex;
  align-items: center;
}

/* ── Topbar ── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.topbar-brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
}

/* legacy compat */
.center-brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 2px;
  color: #fff;
  justify-self: center;
}

/* ── Menu Dropdown ── */
.menu-wrap { position: relative; }

.menu-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #111;
  cursor: pointer;
  color: #fff;
}
.menu-btn:hover { background: #1a1a1a; }

.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.menu-icon .bar {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.menu-icon .chev {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #fff;
  margin-top: 1px;
}

.dropdown {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 46px;
  right: 0;
  left: auto;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 10px;
  min-width: 180px;
  z-index: 20;
  overflow: hidden;
}

.dropdown.open { display: flex; }

.dropdown a {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid #1e1e1e;
  transition: background 0.15s;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: #1a1a1a; opacity: 1; }

/* ── Cards ── */
.card {
  background: var(--card);
  border: 1px solid #1e1e1e;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.hero-card { margin-bottom: 24px; }

.summary-card {
  background: linear-gradient(145deg, #141414 0%, #0f0f0f 100%);
  border: 2px solid #1e1e1e;
  position: sticky;
  top: 20px;
}

/* ── Typography ── */
h1 {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 1px;
  margin: 12px 0 8px;
}

h3 {
  font-size: 20px;
  font-weight: 700;
}

.small {
  font-size: 12px;
  color: var(--muted);
}

.kicker {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.6;
}

.h1 {
  font-size: 28px;
  font-weight: 900;
}

/* ── Step Headers ── */
.step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #1e1e1e;
}

.step-number {
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  flex-shrink: 0;
}

.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
}

.section-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* ── Badges & Chips ── */
.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid #333;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.stockchip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 600;
}

.stock-ok { color: var(--success); }
.stock-low { color: var(--warning); }
.stock-out { color: var(--danger); }

/* ── Status Badges (Admin) ── */
.badge-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-new      { background: #1a2a1a; color: #9ae6b4; }
.badge-confirmed { background: #1a2a2a; color: #7dd3fc; }
.badge-preparing { background: #2a2a1a; color: #fcd34d; }
.badge-cooking  { background: #2a1a1a; color: #fca5a5; }
.badge-ready    { background: #1a2a1a; color: #86efac; }
.badge-picked_up { background: #1a1a2a; color: #c4b5fd; }
.badge-canceled { background: #2a1a1a; color: #666; }

/* ── Option Buttons ── */
.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.option-btn {
  background: #0f0f0f;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  color: var(--text);
  transition: border-color 0.15s, background 0.15s;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}
.option-btn:hover {
  border-color: #555;
  background: #1a1a1a;
}
.option-btn.selected {
  background: #fff;
  color: #000;
  border-color: #fff;
  font-weight: 800;
}

.size-option {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.size-option .price {
  font-size: 14px;
  font-weight: 700;
  color: var(--success);
}

/* ── Date Pills ── */
.date-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.date-pill {
  background: #0f0f0f;
  border: 2px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.15s, color 0.15s;
}
.date-pill:hover { border-color: #555; }
.date-pill.selected {
  border-color: #fff;
  color: #fff;
  font-weight: 700;
}

/* ── Quantity Selector ── */
.qty-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 0;
}

.qty-btn {
  width: 40px;
  height: 40px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s;
}
.qty-btn:hover { opacity: 0.85; }

.qty-display {
  font-size: 28px;
  font-weight: 900;
  min-width: 50px;
  text-align: center;
}

/* ── Summary Card Contents ── */
.summary-header {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #222;
}

.turkey-preview {
  background: #0b0b0b;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}

.preview-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  padding: 4px 0;
}

.preview-label {
  color: var(--muted);
  font-weight: 600;
}

.preview-value {
  color: #fff;
  font-weight: 700;
  text-align: right;
  margin-left: 8px;
}

.preview-empty {
  text-align: center;
  color: #666;
  font-size: 14px;
  padding: 20px;
}

.total-section {
  padding-top: 16px;
  border-top: 2px solid #222;
  margin-top: 16px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

.total-price {
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
}

/* ── Action Buttons ── */
.add-btn {
  width: 100%;
  padding: 16px;
  margin-top: 16px;
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: transform 0.15s, opacity 0.15s;
}
.add-btn:hover:not(:disabled) { transform: translateY(-2px); }
.add-btn:disabled {
  background: #1e1e1e;
  color: #444;
  cursor: not-allowed;
  transform: none;
}

.checkout-btn {
  width: 100%;
  padding: 16px;
  margin-top: 16px;
  background: var(--success);
  color: #000;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.15s;
}
.checkout-btn:hover { transform: translateY(-2px); }

.place-order-btn {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.15s, opacity 0.15s;
}
.place-order-btn:hover:not(:disabled) { transform: translateY(-2px); }
.place-order-btn:disabled {
  background: #1e1e1e;
  color: #444;
  cursor: not-allowed;
}

/* General admin buttons */
.btn {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, opacity 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn.ghost {
  background: transparent;
  color: #fff;
  border: 1px solid #333;
}
.btn.ghost:hover {
  border-color: #555;
  background: #1a1a1a;
  transform: translateY(-1px);
}

.btn.danger {
  background: var(--danger);
  color: #fff;
}
.btn.danger:hover { background: #e04040; }

/* ── Cart Items ── */
.order-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-item {
  background: #0f0f0f;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  gap: 12px;
}

.order-item-details { flex: 1; }
.order-item-name { font-weight: 700; font-size: 14px; }
.order-item-specs { font-size: 12px; color: var(--muted); line-height: 1.4; margin-top: 2px; }

.remove-btn {
  background: var(--danger);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
}
.remove-btn:hover { background: #e04040; }

/* ── Forms ── */
.input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 2px solid var(--border);
  background: #0f0f0f;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}
.input:focus { border-color: #555; }
.input::placeholder { color: #666; }

textarea.input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 2px solid var(--border);
  background: #0f0f0f;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  resize: vertical;
  min-height: 80px;
  transition: border-color 0.15s;
}
textarea:focus { border-color: #555; }
textarea::placeholder { color: #666; }

/* ── Modal ── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }

.modal-content {
  background: #111;
  border: 2px solid #1e1e1e;
  border-radius: 20px;
  max-width: 550px;
  width: 100%;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close-btn {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: opacity 0.15s;
}
.modal-close-btn:hover { opacity: 0.9; }

/* ── Payment UI ── */
.payment-instructions {
  background: #0f0f0f;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

.payment-option {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #1e1e1e;
}
.payment-option:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.payment-option-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.payment-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
  color: #fff;
}
.payment-icon.venmo { background: #3d95ce; }
.payment-icon.zelle { background: #6d1ed4; }
.payment-icon.cash  { background: var(--success); color: #000; }

.payment-option-name { font-weight: 700; font-size: 15px; }

.payment-option-details {
  color: var(--muted);
  font-size: 14px;
  margin-left: 44px;
  line-height: 1.5;
}

.payment-note {
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* ── Hero ── */
.hero {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #1e1e1e;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}
.footer a { color: var(--muted); }
.footer a:hover { color: #fff; opacity: 1; }

/* ── Tables ── */
.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 14px;
}
.table th,
.table td {
  padding: 12px;
  border-bottom: 1px solid #222;
  text-align: left;
}
.table th {
  font-weight: 700;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.table tbody tr:hover { background: #151515; }

/* ── Admin Specific ── */
.admin-section { margin-bottom: 24px; }

.admin-section-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #222;
}

.settings-grid { display: grid; gap: 14px; }

.setting-item {
  background: #0b0b0b;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}

.setting-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.setting-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--gold);
}

.setting-toggle label {
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}

.menu-item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  margin-bottom: 6px;
  background: #0b0b0b;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.menu-item-row .price-input { width: 100px; }

/* legacy compat */
.payment-settings-grid { display: grid; gap: 16px; }
.payment-setting-item {
  background: #0b0b0b;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}
.payment-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast.success {
  background: #1a2a1a;
  color: var(--success);
  border: 1px solid #2a4a2a;
}
.toast.error {
  background: #2a1a1a;
  color: var(--danger);
  border: 1px solid #4a2a2a;
}

/* ── Brand ── */
.brand {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 1px;
}
.brand span { color: var(--gold); }

/* ── Address Link ── */
.address-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  padding: 8px 12px;
  background: #1a1a1a;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
  line-height: 1.4;
}
.address-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  opacity: 1;
}

/* ── Order Tracker ── */
.tracker-card {
  text-align: center;
  padding: 32px 24px;
}

.tracker-status-msg {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 28px;
  color: var(--text);
}

.tracker-canceled { color: var(--danger); }

.tracker-animate {
  animation: tracker-pop 0.4s ease;
}

@keyframes tracker-pop {
  0%   { transform: scale(0.95); opacity: 0.6; }
  60%  { transform: scale(1.03); }
  100% { transform: scale(1);    opacity: 1; }
}

.tracker-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin: 0 auto 20px;
  max-width: 520px;
  overflow-x: auto;
}

.tracker-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 80px;
  flex-shrink: 0;
}

.tracker-bubble {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  border: 2px solid #333;
  background: #111;
  color: #666;
  transition: all 0.3s;
}

.tracker-step.complete .tracker-bubble {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

.tracker-step.active .tracker-bubble {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  animation: pulse-glow 2.2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,67,0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(212,168,67,0); }
}

.tracker-label {
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  line-height: 1.3;
}
.tracker-label span { display: block; }

.tracker-line {
  flex: 1;
  height: 2px;
  background: #2a2a2a;
  min-width: 12px;
  margin-top: 18px;
  transition: background 0.3s;
}
.tracker-line.complete { background: var(--gold); }

.tracker-last-updated {
  font-size: 11px;
  color: #555;
  margin-top: 4px;
}

.tracker-canceled-bar {
  padding: 24px;
  border: 2px solid #3a1a1a;
  border-radius: 12px;
  background: #1a0a0a;
  color: var(--danger);
  font-weight: 700;
  margin: 0 auto;
  max-width: 280px;
}

/* ── Marketing Cards (tracker page) ── */
.marketing-card { padding: 28px; }
.marketing-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.marketing-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--text);
}
.marketing-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Calendar Grid ── */
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}

.cal-dow {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  padding: 4px 0;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  cursor: default;
  position: relative;
}

.cal-day.disabled {
  color: #333;
  cursor: not-allowed;
}

.cal-day.available {
  color: var(--text);
  cursor: pointer;
  border: 1px solid var(--border);
}

.cal-day.available:hover {
  border-color: #d4a843;
  background: rgba(212, 168, 67, 0.12);
}

.cal-day.selected {
  background: #d4a843;
  color: #000;
  font-weight: 700;
  border-color: #d4a843 !important;
}

.cal-day.today::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted);
}

/* ── Responsive ── */
@media (max-width: 968px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  .summary-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .container { padding: 16px; }

  .topbar-brand { font-size: 22px; }

  h1 { font-size: 44px; }

  .hero { flex-direction: column; }

  .option-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-content { padding: 24px; }

  .table { font-size: 12px; }
  .table th, .table td { padding: 8px; }
}

@media (max-width: 480px) {
  .step-header { gap: 8px; }

  .step-number {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .step-title { font-size: 18px; }

  .option-grid { grid-template-columns: 1fr; }

  .date-pill {
    font-size: 13px;
    padding: 8px 12px;
  }

  .input { font-size: 16px; }

  .tracker-step { width: 46px; }

  .tracker-bubble {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .tracker-label { font-size: 8px; }

  .tracker-status-msg {
    font-size: 18px;
    letter-spacing: 0;
  }

  .tracker-line { min-width: 8px; }
}
