/* ============ BISCUITS & BIRD BRAND ============ */
:root {
  --bb-red: #d31a3a;
  --bb-red-dark: #a31429;
  --bb-black: #1a1a1a;
  --bb-white: #ffffff;
  --bb-cream: #faf7f2;
  --bb-gray: #e5e5e5;
  --bb-gray-dark: #6b6b6b;

  /* Floor plan zone colors */
  --zone1-pink: #ffc8d6;
  --zone2-yellow: #fff8c4;
  --zone3-blue: #cfe4ff;
  --zone4-cyan: #c8eaf7;
  --kitchen-cooler: #fff8c4;
  --drive-thru: #ffd6d6;
  --fly-thru: #4a4a4a;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  background: var(--bb-cream);
  color: var(--bb-black);
}

/* ============ HEADER ============ */
.header {
  background: var(--bb-white);
  border-bottom: 4px solid var(--bb-red);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.header-logo {
  height: 56px;
  width: auto;
}

.header-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bb-black);
  margin: 0;
}

.header-nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

.header-nav a, .header-nav button {
  background: var(--bb-white);
  color: var(--bb-black);
  border: 2px solid var(--bb-black);
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}

.header-nav a:hover, .header-nav button:hover {
  background: var(--bb-black);
  color: var(--bb-white);
}

.header-nav a.primary, .header-nav button.primary {
  background: var(--bb-red);
  color: var(--bb-white);
  border-color: var(--bb-red);
}

.header-nav a.primary:hover, .header-nav button.primary:hover {
  background: var(--bb-red-dark);
  border-color: var(--bb-red-dark);
}

/* ============ BUTTONS ============ */
.btn {
  background: var(--bb-white);
  color: var(--bb-black);
  border: 2px solid var(--bb-black);
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.15s;
}

.btn:hover { background: var(--bb-black); color: var(--bb-white); }

.btn-primary {
  background: var(--bb-red);
  color: var(--bb-white);
  border-color: var(--bb-red);
}
.btn-primary:hover { background: var(--bb-red-dark); border-color: var(--bb-red-dark); }

.btn-danger {
  background: var(--bb-white);
  color: var(--bb-red);
  border-color: var(--bb-red);
}
.btn-danger:hover { background: var(--bb-red); color: var(--bb-white); }

/* ============ FORMS ============ */
input[type="text"], input[type="password"], select {
  padding: 10px 12px;
  border: 2px solid var(--bb-gray);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--bb-white);
  transition: border-color 0.15s;
}

input[type="text"]:focus, input[type="password"]:focus, select:focus {
  outline: none;
  border-color: var(--bb-red);
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  color: var(--bb-black);
}

/* ============ LAYOUT ============ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px;
}

.card {
  background: var(--bb-white);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 20px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: var(--bb-black);
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background: var(--bb-red);
  border-radius: 2px;
}

/* ============ FLASH / ALERT ============ */
.alert {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-weight: 500;
}
.alert-error { background: #fee; color: var(--bb-red-dark); border: 1px solid #fcc; }
.alert-success { background: #efe; color: #2a6b2a; border: 1px solid #cec; }
