:root {
  --bs-primary: #e10600;
  --bs-primary-rgb: 225, 6, 0;
  --bs-primary-text-emphasis: #b50400;
  --bs-primary-bg-subtle: #ffe7dc;
  --bs-primary-border-subtle: #f4c7b0;
  --bs-info: #f28c00;
  --bs-info-rgb: 242, 140, 0;
  --bs-info-text-emphasis: #b85f00;
  --bs-info-bg-subtle: #fff1e1;
  --bs-info-border-subtle: #f6d1a8;
  --bs-link-color: #e10600;
  --bs-link-hover-color: #b50400;
}

body {
  background: #fff4ee;
}

.btn-primary {
  --bs-btn-bg: #e10600;
  --bs-btn-border-color: #e10600;
  --bs-btn-hover-bg: #c20500;
  --bs-btn-hover-border-color: #c20500;
  --bs-btn-active-bg: #a90400;
  --bs-btn-active-border-color: #a90400;
}

.btn-outline-primary {
  --bs-btn-color: #e10600;
  --bs-btn-border-color: #e10600;
  --bs-btn-hover-bg: #e10600;
  --bs-btn-hover-border-color: #e10600;
  --bs-btn-active-bg: #c20500;
  --bs-btn-active-border-color: #c20500;
}

.btn-link {
  --bs-btn-color: #e10600;
  --bs-btn-hover-color: #b50400;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #e10600, #f28c00);
  color: #fff;
  font-weight: 700;
}

.logo {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.hero-box {
  background: #fff;
  border: 1px solid #f2d3c3;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 40px rgba(165, 42, 0, 0.12);
}

.muted {
  color: #6b5b53;
}

.order-card {
  border: 1px solid #f2d3c3;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
}

.map-box {
  width: 100%;
  height: 360px;
  border: 1px solid #f2d3c3;
  border-radius: 12px;
  overflow: hidden;
}

#suggestions {
  max-height: 220px;
  overflow-y: auto;
  background: #fff;
  border-radius: 0 0 12px 12px;
}

.suggestion-box {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  max-height: 220px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #f2d3c3;
  border-radius: 0 0 12px 12px;
}

.form-card {
  border: 1px solid #f2d3c3;
  border-radius: 14px;
  padding: 18px;
  background: #fff;
}

.support-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e10600, #f28c00);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(225, 6, 0, 0.28);
  z-index: 2000;
  font-size: 24px;
}

.support-widget:hover {
  transform: translateY(-2px);
  color: #fff;
}

.support-widget .badge {
  position: absolute;
  top: -6px;
  right: -6px;
}

.chat-bubble {
  border: 1px solid #f2d3c3;
  border-radius: 14px;
  padding: 10px 12px;
  background: #fff7f2;
  max-width: 85%;
  display: flex;
  gap: 10px;
}

.chat-left {
  margin-right: auto;
  background: #fff7f2;
}

.chat-right {
  margin-left: auto;
  background: #ffe0d1;
}

.typing {
  font-style: italic;
}

.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffd9c2;
  flex-shrink: 0;
}

.chat-avatar.support {
  display: grid;
  place-items: center;
  color: #e10600;
  font-weight: 700;
}
