/**
 * Bee1 B2B Suite Core - Public Styles
 *
 * Minimal, clean, Apple/NASA-grade styling for frontend UI elements.
 *
 * @package Bee1_B2B_Suite_Core
 * @since 1.0.0
 */

:root {
  --bee1-primary: #1e3a5f;
  --bee1-accent: #3182ce;
  --bee1-surface: #ffffff;
  --bee1-border: #e2e8f0;
  --bee1-radius: 10px;
}

.bee1-b2b-contact-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--bee1-radius);
  border: 1px solid var(--bee1-border);
  background: var(--bee1-primary);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 600;
  line-height: 1;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.bee1-b2b-contact-price:hover {
  background: #16304f;
  border-color: #16304f;
  transform: translateY(-1px);
}

.bee1-b2b-contact-price:focus {
  outline: 2px solid rgba(49, 130, 206, 0.35);
  outline-offset: 2px;
}

