/* ============================================
   TIMETRACKER — Design System
   Mobile-first | BMW Identity
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Lexend+Deca:wght@400;500;600;700;800&display=swap');

/* ---- CSS Variables — BMW Brand Identity ---- */
:root {
  /* BMW M Stripes */
  --bmw-blue: #0066B1;
  --bmw-blue-light: #00A1E0;
  --bmw-red: #E2001A;
  --bmw-blue-deep: #003D6B;
  --bmw-blue-darker: #001f3d;
  --bmw-silver: #C4C4C4;
  --bmw-silver-light: #E8E8E8;
  --bmw-white: #FFFFFF;
  /* Mapped to design system */
  --primary: #0066B1;
  --primary-light: #00A1E0;
  --primary-dark: #003D6B;
  --primary-darker: #001f3d;
  --accent: #E2001A;
  --success: #059669;
  --success-light: #D1FAE5;
  --warning: #D97706;
  --warning-light: #FEF3C7;
  --danger: #DC2626;
  --danger-light: #FEE2E2;
  --gray-50: #F7F8FA;
  --gray-100: #EEF0F4;
  --gray-200: #DFE2E8;
  --gray-300: #C4C9D2;
  --gray-400: #939AAA;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,61,107,0.06);
  --shadow: 0 2px 6px rgba(0,61,107,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,61,107,0.10), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 24px rgba(0,61,107,0.10), 0 4px 8px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 40px rgba(0,61,107,0.12), 0 8px 16px rgba(0,0,0,0.04);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-display: 'Lexend Deca', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  /* Company colors */
  --color-gdpesa: #6366F1;
  --color-ca-com: #0066B1;
  --color-com-auto: #0891B2;
  --color-brit: #DC2626;
  --color-serv-cen: #059669;
  --color-san-sim: #D97706;
  --color-tanate: #7C3AED;
}

/* ---- Reset ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--gray-50);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ---- Animations ---- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes progressFill {
  from { width: 0; }
}

.animate-in {
  animation: fadeIn 0.3s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 0.4s ease-out forwards;
}

/* ---- Header — BMW Identity ---- */
.header {
  background: linear-gradient(135deg, var(--bmw-blue-darker) 0%, var(--bmw-blue-deep) 40%, var(--bmw-blue) 100%);
  color: white;
  padding: 1.75rem 1rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -15%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

/* BMW M-Stripes bar */
.header-stripes {
  display: flex;
  height: 5px;
  margin-top: 1.25rem;
}

.header-stripes .stripe {
  flex: 1;
}

.header-stripes .stripe-blue { background: var(--bmw-blue-light); }
.header-stripes .stripe-blue-dark { background: var(--bmw-blue); }
.header-stripes .stripe-red { background: var(--bmw-red); }

.header h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.header p {
  font-size: 0.875rem;
  opacity: 0.9;
  font-weight: 400;
}

/* ---- Container ---- */
.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
  animation: fadeIn 0.3s ease-out;
}

.card-elevated {
  box-shadow: var(--shadow-lg);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-100);
}

.card-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gray-800);
}

.card-header .icon {
  font-size: 1.5rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--bmw-blue) 0%, var(--bmw-blue-light) 100%);
  color: white;
  box-shadow: var(--shadow), 0 0 0 0 rgba(0,102,177,0.3);
}

.btn-primary:hover {
  box-shadow: var(--shadow-md), 0 0 0 3px rgba(0,102,177,0.18);
  background: linear-gradient(135deg, var(--bmw-blue-light) 0%, var(--bmw-blue) 100%);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-success {
  background: linear-gradient(135deg, var(--success) 0%, #10B981 100%);
  color: white;
  box-shadow: var(--shadow);
}

.btn-success:hover {
  box-shadow: var(--shadow-md), 0 0 0 3px rgba(5,150,105,0.2);
}

.btn-danger {
  background: linear-gradient(135deg, var(--danger) 0%, #EF4444 100%);
  color: white;
  box-shadow: var(--shadow);
}

.btn-warning {
  background: linear-gradient(135deg, var(--warning) 0%, #F59E0B 100%);
  color: white;
  box-shadow: var(--shadow);
}

.btn-outline {
  background: var(--white);
  color: var(--gray-700);
  border: 1.5px solid var(--gray-300);
}

.btn-outline:hover {
  border-color: var(--bmw-blue);
  color: var(--bmw-blue);
  background: rgba(0,102,177,0.04);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.btn-block {
  width: 100%;
}

.btn-icon {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
}

/* ---- Form Elements ---- */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
}

.form-select, .form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-select:focus, .form-input:focus {
  outline: none;
  border-color: var(--bmw-blue);
  box-shadow: 0 0 0 3px rgba(0,102,177,0.12);
}

/* ---- Progress Bar ---- */
.progress-container {
  background: var(--gray-100);
  border-radius: 999px;
  height: 32px;
  position: relative;
  overflow: hidden;
  margin: 1rem 0;
}

.progress-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bmw-blue) 0%, var(--bmw-blue-light) 60%, var(--bmw-red) 100%);
  transition: width 0.5s ease, background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
}

.progress-bar.complete {
  background: linear-gradient(90deg, var(--success) 0%, #34D399 100%);
}

.progress-bar.over {
  background: linear-gradient(90deg, var(--danger) 0%, #F87171 100%);
}

.progress-text {
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
}

/* ---- Entries List ---- */
.entry-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
  margin-bottom: 0.5rem;
  animation: fadeIn 0.3s ease-out;
  background: var(--white);
}

.entry-color {
  width: 4px;
  height: 40px;
  border-radius: 2px;
  flex-shrink: 0;
}

.entry-info {
  flex: 1;
  min-width: 0;
}

.entry-company {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-800);
}

.entry-activity {
  font-size: 0.75rem;
  color: var(--gray-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.entry-pct {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.entry-remove {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--danger-light);
  color: var(--danger);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.entry-remove:hover {
  background: var(--danger);
  color: white;
}

/* ---- Employee Selector ---- */
.employee-group {
  margin-bottom: 1rem;
}

.employee-group-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  color: white;
}

.employee-btn {
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 0.375rem;
  font-family: var(--font-body);
}

.employee-btn:hover {
  border-color: var(--bmw-blue);
  background: rgba(0,102,177,0.03);
}

.employee-btn .name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-800);
}

.employee-btn .position {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ---- Search ---- */
.search-box {
  position: relative;
  margin-bottom: 1rem;
}

.search-box input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.search-box input:focus {
  outline: none;
  border-color: var(--bmw-blue);
  box-shadow: 0 0 0 3px rgba(0,102,177,0.12);
}

.search-box::before {
  content: '🔍';
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
}

/* ---- Badges ---- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: var(--font-display);
}

.badge-success {
  background: var(--success-light);
  color: var(--success);
}

.badge-warning {
  background: var(--warning-light);
  color: var(--warning);
}

.badge-danger {
  background: var(--danger-light);
  color: var(--danger);
}

.badge-primary {
  background: rgba(0,102,177,0.1);
  color: var(--bmw-blue);
}

/* ---- Alerts ---- */
.alert {
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.alert-success {
  background: var(--success-light);
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.alert-warning {
  background: var(--warning-light);
  color: #92400E;
  border: 1px solid #FDE68A;
}

.alert-danger {
  background: var(--danger-light);
  color: #991B1B;
  border: 1px solid #FECACA;
}

.alert-info {
  background: #e8f4fb;
  color: var(--bmw-blue-deep);
  border: 1px solid #b3d9f0;
}

/* ---- Success Screen ---- */
.success-screen {
  text-align: center;
  padding: 3rem 1.5rem;
  animation: slideUp 0.5s ease-out;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: pulse 0.6s ease-in-out;
}

.success-screen h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--success);
  margin-bottom: 0.5rem;
}

.success-screen p {
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* ---- Tabs ---- */
.tabs {
  display: flex;
  gap: 0.25rem;
  background: var(--gray-100);
  padding: 0.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  overflow-x: auto;
}

.tab {
  flex: 1;
  padding: 0.6rem 0.75rem;
  border: none;
  border-radius: 6px;
  background: transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  text-align: center;
}

.tab.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* ---- Stats Grid ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ---- Table ---- */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

thead th {
  background: var(--gray-50);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  padding: 0.75rem;
  text-align: left;
  border-bottom: 2px solid var(--gray-200);
  white-space: nowrap;
}

tbody td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}

tbody tr:hover {
  background: rgba(0,102,177,0.03);
}

/* ---- Company Bar Chart ---- */
.company-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.company-bar-label {
  width: 120px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-700);
  text-align: right;
  flex-shrink: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.company-bar-track {
  flex: 1;
  height: 24px;
  background: var(--gray-100);
  border-radius: 999px;
  overflow: hidden;
}

.company-bar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.6s ease;
  display: flex;
  align-items: center;
  padding-left: 0.5rem;
}

.company-bar-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  color: white;
  white-space: nowrap;
}

/* ---- Admin Layout ---- */
.admin-nav {
  background: linear-gradient(90deg, var(--bmw-blue-darker) 0%, var(--bmw-blue-deep) 100%);
  color: white;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.admin-nav h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.admin-nav-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* ---- Login ---- */
.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bmw-blue-darker) 0%, var(--bmw-blue-deep) 35%, var(--bmw-blue) 65%, var(--bmw-blue-light) 100%);
  padding: 1rem;
}

.login-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 2rem;
  width: 100%;
  max-width: 400px;
  animation: slideUp 0.5s ease-out;
}

.login-card h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.25rem;
  color: var(--gray-900);
}

.login-card p {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

/* ---- Participation List ---- */
.participation-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.participation-item:last-child {
  border-bottom: none;
}

.participation-status {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.participation-status.done {
  background: var(--success);
}

.participation-status.pending {
  background: var(--gray-300);
}

.participation-name {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 500;
}

.participation-time {
  font-size: 0.7rem;
  color: var(--gray-400);
}

/* ---- Modal ---- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  animation: fadeIn 0.2s ease-out;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease-out;
}

.modal-header {
  padding: 1.25rem 1.25rem 0.75rem;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.modal-body {
  padding: 1.25rem;
}

.modal-footer {
  padding: 0.75rem 1.25rem 1.25rem;
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

/* ---- Empty State ---- */
.empty-state {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--gray-400);
}

.empty-state .icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.empty-state p {
  font-size: 0.85rem;
}

/* ---- Toast ---- */
.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.3s ease-out;
  max-width: 350px;
}

.toast-success {
  background: var(--success);
  color: white;
}

.toast-error {
  background: var(--danger);
  color: white;
}

/* ---- Utilities ---- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-sm { font-size: 0.85rem; }
.text-xs { font-size: 0.75rem; }
.text-muted { color: var(--gray-500); }
.font-display { font-family: var(--font-display); }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.gap-1 { gap: 0.5rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.hidden { display: none !important; }

/* ---- Responsive ---- */
@media (min-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }

  .container {
    padding: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .company-bar-label {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tab {
    min-width: auto;
    padding: 0.5rem 0.6rem;
    font-size: 0.7rem;
  }

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

/* ---- Footer — LegalTech Guatemala ---- */
.site-footer {
  background: linear-gradient(135deg, var(--bmw-blue-darker) 0%, var(--bmw-blue-deep) 100%);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 1.25rem 1rem;
  font-size: 0.75rem;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  margin-top: 2rem;
}

.footer-stripes {
  display: flex;
  height: 3px;
  margin-bottom: 1rem;
}

.footer-stripes .stripe { flex: 1; }
.footer-stripes .stripe-blue { background: var(--bmw-blue-light); }
.footer-stripes .stripe-blue-dark { background: var(--bmw-blue); }
.footer-stripes .stripe-red { background: var(--bmw-red); }

.site-footer .footer-brand {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

.site-footer .footer-separator {
  display: inline-block;
  width: 3px;
  height: 3px;
  background: var(--bmw-blue-light);
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 0.5rem;
}
