:root {
  --site-red: #d32f2f;
  --site-red-dark: #a81f1f;
  --site-navy: #122033;
  --site-gold: #ffd166;
  --site-green: #16a34a;
  --site-white: #ffffff;
  --site-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
}

body.site-has-mobile-callbar {
  padding-top: 68px;
}

.site-top-callbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(90deg, #7f1d1d 0%, var(--site-red) 55%, #ef4444 100%);
  color: var(--site-white);
  box-shadow: var(--site-shadow);
}

.site-top-callbar__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.site-top-callbar__eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.84);
}

.site-top-callbar__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.site-top-callbar__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--site-white);
  color: var(--site-red-dark);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(122, 18, 18, 0.25);
}

.site-whatsapp-fab {
  position: fixed !important;
  right: 16px !important;
  bottom: 92px !important;
  z-index: 55 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 64px !important;
  height: 64px !important;
  border-radius: 999px !important;
  background: var(--site-green) !important;
  box-shadow: var(--site-shadow) !important;
  text-decoration: none !important;
}

.site-whatsapp-fab img,
.site-whatsapp-fab svg {
  width: 30px;
  height: 30px;
  display: block;
}

.site-whatsapp-fab__text {
  color: var(--site-white);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.site-status-toast {
  position: fixed;
  top: 78px;
  left: 16px;
  right: 16px;
  z-index: 70;
  padding: 14px 16px;
  border-radius: 18px;
  box-shadow: var(--site-shadow);
  font-size: 14px;
  line-height: 1.5;
}

.site-status-toast--success {
  background: #ecfdf5;
  border: 1px solid #86efac;
  color: #166534;
}

.site-status-toast--error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

.site-form-message {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.site-form-message--success {
  background: #ecfdf5;
  border: 1px solid #86efac;
  color: #166534;
}

.site-form-message--error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

.site-form-loading {
  opacity: 0.75;
  pointer-events: none;
}

.site-form-loading button[type="submit"] {
  cursor: wait;
}

@media (min-width: 768px) {
  body.site-has-mobile-callbar {
    padding-top: 0;
  }

  .site-top-callbar {
    display: none;
  }

  .site-whatsapp-fab {
    bottom: 24px !important;
  }

  .site-status-toast {
    top: 24px;
    left: auto;
    right: 24px;
    width: min(420px, calc(100vw - 48px));
  }
}
