[data-theme="dark"] .footer a,
[data-theme="dark"] .footer p,
[data-theme="dark"] .footer span {
  color: #eef6ff !important;
}

[data-theme="dark"] .footer a:hover {
  color: #ffffff !important;
}
/* Extreme Bearing - Professional B2B Styling */
@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@400;500;600;700;800&display=swap');

/* =====================
   CSS Variables
===================== */
:root {
  /* Primaire kleuren - Extreme Bearing Brand */
  --primary-dark: rgb(0, 44, 53);
  --primary-blue: rgb(0, 142, 201);
  --primary-blue-strong: rgb(77, 163, 255);

  /* Grijstinten */
  --gray-50: rgb(249, 250, 251);
  --gray-100: rgb(243, 244, 246);
  --gray-200: rgb(229, 231, 235);
  --gray-300: rgb(209, 213, 219);
  --gray-400: rgb(156, 163, 175);
  --gray-500: rgb(107, 114, 128);
  --gray-600: rgb(75, 85, 99);
  --gray-700: rgb(55, 65, 81);
  --gray-800: rgb(31, 41, 55);
  --gray-900: rgb(17, 24, 39);

  /* UI elementen */
  --white: rgb(255, 255, 255);
  --background: var(--gray-50);
  --surface: var(--white);

  /* Status kleuren */
  --success: rgb(16, 185, 129);
  --warning: rgb(245, 158, 11);
  --error: rgb(239, 68, 68);

  /* Border radius */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --radius-xl: 8px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

/* Dark theme tokens */
[data-theme="dark"] {
  --primary-dark: rgb(0, 44, 53);
  --primary-blue: rgb(0, 142, 201);

  --gray-50: rgb(12, 17, 23);
  --gray-100: rgb(15, 22, 32);
  --gray-200: rgb(17, 26, 38);
  --gray-300: rgb(21, 33, 48);
  --gray-400: rgb(28, 43, 62);
  --gray-500: rgb(43, 62, 85);
  --gray-600: rgb(102, 125, 149);
  --gray-700: rgb(148, 169, 189);
  --gray-800: rgb(203, 213, 224);
  --gray-900: rgb(229, 236, 244);

  --white: rgb(14, 18, 25);
  --background: var(--gray-50);
  --surface: rgb(17, 26, 38);

  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.4);
  --shadow-md: 0 6px 12px -2px rgba(0, 0, 0, 0.5), 0 2px 6px -2px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 14px 24px -6px rgba(0, 0, 0, 0.55), 0 6px 12px -6px rgba(0, 0, 0, 0.45);
  --shadow-xl: 0 24px 38px -10px rgba(0, 0, 0, 0.6), 0 10px 16px -8px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] body {
  background: var(--background);
  color: var(--gray-900);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
  color: var(--gray-900);
}

[data-theme="dark"] p {
  color: var(--gray-700);
}

[data-theme="dark"] a {
  color: var(--primary-dark);
}

[data-theme="dark"] a:hover {
  color: var(--primary-blue);
}

/* =====================
   Reset & Base
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

body {
  font-family: 'Geologica', system-ui, -apple-system, sans-serif;
  font-weight: 500;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.9375rem;
  overflow-x: hidden;
  max-width: 100vw;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

/* =====================
   Typography
===================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--gray-700);
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--primary-dark);
}

/* =====================
   Layout
===================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

.container-wide {
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

.section {
  padding: 5rem 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.section-lg {
  padding: 8rem 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Page header spacing (not for home page) */
body:not(.home-page) .section:first-of-type,
body:not(.home-page) > div.section:first-of-type {
  padding-top: 8rem !important;
}

/* Extra margin for page titles */
body:not(.home-page) .section:first-of-type h1,
body:not(.home-page) > div.section:first-of-type h1,
body:not(.home-page) .section:first-of-type h2,
body:not(.home-page) > div.section:first-of-type h2 {
  margin-top: 3rem;
}

/* =====================
   Navigation
===================== */
.navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(229, 231, 235, 0.6);
  border-radius: var(--radius-lg);
  position: fixed;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  margin: 0 auto;
  max-width: calc(100% - 4rem);
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

[data-theme="dark"] .navbar {
  background: rgba(17, 26, 38, 0.9);
  border: 1px solid rgba(64, 82, 104, 0.7);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.55);
}

.navbar.navbar-hidden {
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.navbar-container .navbar-menu {
  margin-left: 2rem;
  flex: 1;
  justify-content: flex-start;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.navbar-actions .btn {
  margin-left: 1.5rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  padding: 0.75rem 0.75rem 0.75rem 0;
  margin-left: -0.5rem;
}

.navbar-logo img {
  height: 60px;
  width: auto;
  cursor: pointer;
}

.navbar-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.navbar-menu a {
  color: var(--gray-700);
  font-weight: 400;
  font-size: 0.875rem;
  transition: color var(--transition-base);
}

.navbar-menu a:hover {
  color: var(--primary-blue);
}

.quote-link {
  display: flex !important;
  align-items: center;
  gap: 0.375rem;
  position: relative;
  margin-left: 1rem;
}

.quote-link svg {
  width: 18px;
  height: 18px;
}

.theme-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  color: var(--gray-700);
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
}

.theme-toggle i {
  font-size: 22px;
}

.theme-toggle:hover {
  color: var(--primary-blue);
}

.theme-toggle[aria-pressed="true"] {
  color: var(--gray-700);
}

[data-theme="dark"] .theme-toggle {
  color: var(--gray-700);
}

[data-theme="dark"] .theme-toggle:hover {
  color: var(--primary-blue);
}

.mobile-menu-cta .theme-toggle {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.quote-badge {
  background: var(--primary-blue);
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
  min-width: 18px;
  text-align: center;
  line-height: 1;
  display: none; /* Hidden by default, shown by JavaScript when count > 0 */
}

[data-theme="dark"] .navbar-logo {
  color: var(--gray-900);
}

[data-theme="dark"] .navbar-menu a {
  color: var(--gray-800);
}

[data-theme="dark"] .navbar-menu a:hover {
  color: var(--primary-blue);
}

[data-theme="dark"] .quote-badge {
  color: #0b1726;
  background: var(--primary-blue);
}

/* =====================
   Hero Section
===================== */
.hero {
  background: var(--primary-dark);
  color: var(--white);
  padding: 6rem 0;
}

.hero h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero p {
  color: var(--gray-200);
  font-size: 1rem;
  max-width: 700px;
  margin-bottom: 2rem;
}

[data-theme="dark"] .hero-overlay {
  background:
    radial-gradient(80% 120% at 90% 100%, rgba(0, 142, 201, 0.35), transparent 60%),
    linear-gradient(135deg, rgba(15, 22, 32, 0.95) 0%, rgba(15, 22, 32, 0.90) 100%) !important;
}

[data-theme="dark"] .hero {
  background: var(--background);
  color: var(--gray-900);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =====================
   Buttons
===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  max-width: 100%;
  box-sizing: border-box;
}

.btn-primary {
  background: var(--primary-blue);
  color: var(--white);
}

.btn-primary:hover {
  background: rgb(0, 120, 170);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-dark);
  border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
}

/* Dark theme - buttons */
[data-theme="dark"] .btn-primary {
  color: #0b1726;
  box-shadow: var(--shadow-lg);
}

[data-theme="dark"] .btn-secondary {
  background: var(--surface);
  color: var(--gray-900);
  border-color: var(--gray-400);
}

[data-theme="dark"] .btn-secondary:hover {
  background: var(--primary-blue);
  color: #0b1726;
  border-color: var(--primary-blue);
}

/* =====================
   Cards
===================== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: none;
  transition: all var(--transition-base);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

[data-theme="dark"] .card {
  background: var(--surface);
  border-color: var(--gray-300);
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .card h3,
[data-theme="dark"] .card-title {
  color: var(--gray-900);
}

[data-theme="dark"] #featuredArticle {
  background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 60%, rgba(0, 142, 201, 0.3) 100%) !important;
  color: var(--gray-900) !important;
}

.card:hover {
  transform: translateY(-2px);
  border-color: var(--gray-300);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card-header {
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.card-description {
  color: var(--gray-600);
  font-size: 0.8125rem;
}

[data-theme="dark"] .card-description {
  color: var(--gray-700);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: rgba(0, 142, 201, 0.1);
  color: var(--primary-blue);
}

[data-theme="dark"] .card-icon {
  background: rgba(77, 163, 255, 0.12);
}

.card-icon svg,
.card-icon i {
  width: 24px;
  height: 24px;
  font-size: 24px;
  color: inherit;
  stroke: currentColor;
  stroke-width: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  fill: none;
}

/* =====================
   Grid Systems
===================== */
.grid {
  display: grid;
  gap: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
}

/* =====================
   Product Configurator
===================== */
.configurator-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .configurator-step {
  background: var(--surface);
  border: 1px solid var(--gray-300);
}

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.step-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-blue);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.option-card {
  padding: 1.25rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  background: var(--white);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.option-card:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.option-card.selected {
  border-color: var(--primary-blue);
  background: rgba(0, 142, 201, 0.05);
}

[data-theme="dark"] .option-card {
  background: var(--surface);
  border-color: var(--gray-300);
}

[data-theme="dark"] .option-card.selected {
  background: rgba(77, 163, 255, 0.12);
}

.option-name {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.option-description {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Compact option cards styling */
.option-card-compact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  text-align: left;
}

.option-card-compact .name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary-dark);
  line-height: 1.3;
  flex: 1;
}

.option-card-compact img {
  width: 50px;
  height: 50px;
  min-width: 50px;
  object-fit: contain;
}

/* Info icon and tooltip */
.info-icon {
  position: relative;
  background: none;
  border: none;
  cursor: help;
  padding: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  transition: color var(--transition-fast);
  margin-left: auto;
  flex-shrink: 0;
}

.info-icon:hover {
  color: var(--primary-dark);
}

/* White info icon on selected cards */
.option-card-compact.selected .info-icon,
.option-card-compact.selected .info-icon i {
  color: white !important;
}

.info-icon svg,
.info-icon i {
  display: block;
  width: 20px;
  height: 20px;
  color: var(--primary-blue);
}

/* Custom info icon styling */
.info-icon svg {
  stroke: var(--primary-blue);
  fill: none;
}

.info-icon svg rect {
  fill: var(--primary-blue);
}

.info-icon:hover svg {
  stroke: var(--primary-dark);
}

.info-icon:hover svg rect {
  fill: var(--primary-dark);
}

.info-tooltip {
  position: absolute;
  bottom: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  background: rgb(0, 142, 201);
  color: white;
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.6875rem;
  line-height: 1.4;
  width: 280px;
  max-width: calc(100vw - 4rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 10000;
  box-sizing: border-box;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  text-align: left;
  font-weight: 400;
  white-space: normal;
}

.info-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgb(0, 142, 201);
}

/* Dark mode ONLY tooltip styling - very specific selector */
html[data-theme="dark"] .configurator-sidebar .info-tooltip,
html[data-theme="dark"] .option-card-compact .info-tooltip {
  background: rgb(21, 33, 48) !important;
  color: rgb(229, 236, 244) !important;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4) !important;
}

html[data-theme="dark"] .configurator-sidebar .info-tooltip::after,
html[data-theme="dark"] .option-card-compact .info-tooltip::after {
  border-top-color: rgb(21, 33, 48) !important;
}

/* Show tooltip on hover with delay */
.info-icon:hover .info-tooltip {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.15s ease-in 0.15s, visibility 0s 0.15s;
}

/* Tooltip positioning for housing cards in grid */
#simpleHousingOptions .option-card-compact .info-tooltip {
  bottom: calc(100% + 0.75rem);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: 280px;
}

#simpleHousingOptions .option-card-compact .info-tooltip::after {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

/* Prevent tooltips from overflowing container */
.configurator-sidebar .info-tooltip {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  margin-left: 0;
  margin-right: 0;
}

/* Ensure tooltip stays within sidebar bounds */
@media (max-width: 1400px) {
  .configurator-sidebar .info-tooltip {
    width: 240px;
  }
}

@media (max-width: 1200px) {
  .configurator-sidebar .info-tooltip {
    width: 200px;
  }
}

/* =====================
   Status Bar
===================== */
.status-bar {
  background: rgba(0, 142, 201, 0.1);
  border-left: 4px solid var(--primary-blue);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
}

.status-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.tag {
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  background: rgba(0, 142, 201, 0.1);
  color: var(--primary-blue);
}

/* =====================
   Footer
===================== */
.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(80% 120% at 90% 100%, rgba(0, 142, 201, 0.4), transparent 60%),
    linear-gradient(135deg, rgb(0, 44, 53) 0%, rgb(0, 44, 53) 100%);
  color: white;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(0, 142, 201, 0.2);
}

[data-theme="dark"] .footer,
html[data-theme="dark"] .footer {
  background:
    radial-gradient(80% 120% at 90% 100%, rgba(0, 142, 201, 0.35), transparent 60%),
    linear-gradient(160deg, rgba(15, 22, 32, 0.94) 0%, rgba(15, 22, 32, 0.9) 60%, rgba(15, 22, 32, 0.82) 100%);
  color: #eef6ff;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

[data-theme="dark"] .footer h4 {
  color: #f8fbff;
}

[data-theme="dark"] .footer a {
  color: #eef6ff;
}

[data-theme="dark"] .footer a:hover {
  color: #ffffff;
}

[data-theme="dark"] .footer p {
  color: #eef6ff;
}

[data-theme="dark"] .footer .footer-disclaimer {
  color: rgba(255, 255, 255, 0.78) !important;
}

[data-theme="dark"] .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: #f5fbff;
}

[data-theme="dark"] .footer-bottom p span,
[data-theme="dark"] .footer-bottom p:not(.footer-disclaimer) {
  color: #f5fbff !important;
}

.footer::before {
  display: none;
}

.footer::after {
  display: none;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.footer-grid > div {
  padding: 0;
}

.footer h4 {
  color: white;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.footer h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 2px;
  background: white;
  transform: translateY(-50%);
}

.footer a {
  color: rgba(255, 255, 255, 0.9);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  transition: color var(--transition-base);
}

.footer a:hover {
  color: white;
}

.footer p {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  color: white;
  font-size: 0.875rem;
}

.footer-bottom p:not(.footer-disclaimer) {
  color: rgba(255, 255, 255, 0.9) !important;
}

.footer-bottom p span {
  color: rgba(255, 255, 255, 0.9) !important;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8) !important;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  font-style: italic;
}

/* Dark footer text overrides to keep contrast when base tokens darken */
html[data-theme="dark"] .footer h4 {
  color: #f5fbff;
}

html[data-theme="dark"] .footer a {
  color: #d7e9f7;
}

html[data-theme="dark"] .footer a:hover {
  color: #ffffff;
}

html[data-theme="dark"] .footer p {
  color: #d7e9f7;
}

html[data-theme="dark"] .footer .footer-disclaimer {
  color: rgba(255, 255, 255, 0.75) !important;
}

html[data-theme="dark"] .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #f5fbff;
}

html[data-theme="dark"] .footer-bottom p span,
html[data-theme="dark"] .footer-bottom p:not(.footer-disclaimer) {
  color: #f5fbff !important;
}

/* =====================
   Utilities
===================== */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }

/* =====================
   Animations
===================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.5s ease-out;
}

/* =====================
   Mobile Menu
===================== */
.mobile-nav-actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.mobile-quote-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  text-decoration: none;
}

.mobile-quote-btn svg {
  width: 24px;
  height: 24px;
  color: var(--primary-dark);
  transition: color var(--transition-base);
}

.mobile-quote-btn:hover svg {
  color: var(--primary-blue);
}

.mobile-quote-btn .quote-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 2px 5px;
  font-size: 11px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle svg {
  width: 28px;
  height: 28px;
  color: var(--primary-dark);
  transition: color var(--transition-base);
}

.mobile-menu-toggle:hover svg {
  color: var(--primary-blue);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 1000;
  pointer-events: none;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: white;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

[data-theme="dark"] .mobile-menu {
  background: var(--surface);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
  border-left: 1px solid var(--gray-300);
}

@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu-overlay {
    display: none;
  }
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.mobile-menu-header img {
  height: 50px;
  width: auto;
  max-width: none;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
  color: var(--gray-600);
}

[data-theme="dark"] .mobile-menu-close svg {
  color: var(--gray-800);
}

.mobile-menu-nav {
  padding: 1rem 0;
}

.mobile-menu-nav a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition-base);
  border-left: 3px solid transparent;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
  background: rgba(0, 142, 201, 0.05);
  color: var(--primary-blue);
  border-left-color: var(--primary-blue);
}

[data-theme="dark"] .mobile-menu-nav a {
  color: var(--gray-900);
}

[data-theme="dark"] .mobile-menu-nav a:hover,
[data-theme="dark"] .mobile-menu-nav a.active {
  background: rgba(77, 163, 255, 0.16);
}

.mobile-menu-cta {
  padding: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.mobile-menu-cta .btn {
  width: 100%;
  justify-content: center;
}

/* =====================
   Bearing Loading Animation
===================== */
@keyframes bearing-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.bearing-loader {
  display: inline-block;
  animation: bearing-spin 2s linear infinite;
}

.bearing-loader svg {
  display: block;
}

/* =====================
   Skeleton Loaders
===================== */
.skeleton {
  background: var(--gray-200);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.skeleton::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.5) 20%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.5) 80%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

/* Dark theme - form controls */
[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea,
[data-theme="dark"] .form-input,
[data-theme="dark"] .form-select,
[data-theme="dark"] .form-textarea {
  background: var(--gray-200);
  color: var(--gray-900);
  border-color: var(--gray-400);
}

[data-theme="dark"] input::placeholder,
[data-theme="dark"] select::placeholder,
[data-theme="dark"] textarea::placeholder {
  color: var(--gray-600);
}

@keyframes skeleton-shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(200%);
  }
}

/* Dark mode - Skeleton shimmer */
[data-theme="dark"] .skeleton::after,
[data-theme="dark"] .skeleton-filter-section h4::after {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 20%,
    rgba(255, 255, 255, 0.1) 60%,
    transparent 100%
  );
}

.skeleton-text {
  height: 1rem;
  margin-bottom: 0.5rem;
  border-radius: var(--radius-sm);
}

.skeleton-text-sm {
  height: 0.875rem;
}

.skeleton-text-lg {
  height: 1.25rem;
}

.skeleton-title {
  height: 1.5rem;
  width: 70%;
  margin-bottom: 1rem;
}

.skeleton-image {
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: var(--radius-md);
}

.skeleton-circle {
  border-radius: 50%;
}

/* Article Card Skeleton */
.skeleton-article-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skeleton-article-card .skeleton-image {
  margin: -1.5rem -1.5rem 0 -1.5rem;
  width: calc(100% + 3rem);
  padding-bottom: 40%;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.skeleton-article-card .skeleton-badge {
  width: 80px;
  height: 20px;
  border-radius: var(--radius-sm);
}

/* Application Card Skeleton */
.skeleton-app-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.skeleton-app-card .skeleton-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  margin-bottom: 0.5rem;
}

/* Product Card Skeleton */
.skeleton-product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1rem;
  min-height: 120px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 0.5rem;
}

.skeleton-product-card .skeleton-product-image {
  width: 120px;
  height: 120px;
  min-width: 120px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
}

.skeleton-product-card .skeleton-product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}

/* Product Detail Skeleton */
.skeleton-product-detail {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.skeleton-product-detail .skeleton-detail-image {
  width: 100%;
  padding-bottom: 100%;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.skeleton-product-detail .skeleton-detail-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.skeleton-product-detail .skeleton-detail-title {
  height: 2.5rem;
  width: 70%;
  margin-bottom: 0.5rem;
}

.skeleton-product-detail .skeleton-detail-sku {
  height: 1.25rem;
  width: 35%;
  margin-bottom: 0.5rem;
}

.skeleton-product-detail .skeleton-detail-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.skeleton-product-detail .skeleton-detail-spec {
  height: 4rem;
  border-radius: var(--radius-md);
}

@media (max-width: 768px) {
  .skeleton-product-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .skeleton-product-detail .skeleton-detail-specs {
    grid-template-columns: 1fr;
  }
}

/* Case Study Card Skeleton */
.skeleton-case-study-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skeleton-case-study-card .skeleton-logo {
  width: 120px;
  height: 40px;
  border-radius: var(--radius-sm);
}

.skeleton-case-study-card .skeleton-badge {
  width: 80px;
  height: 24px;
  border-radius: var(--radius-sm);
}

/* Filter Option Skeletons */
.skeleton-filter-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.skeleton-filter-option {
  height: 80px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.skeleton-filter-dropdown {
  height: 44px;
  width: 100%;
  border-radius: var(--radius-md);
  margin-top: 0.75rem;
}

.skeleton-filter-slider {
  height: 60px;
  width: 100%;
  border-radius: var(--radius-md);
  margin-top: 0.75rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.skeleton-filter-slider .skeleton-text {
  height: 0.75rem;
}

.skeleton-filter-toggle {
  height: 56px;
  width: 100%;
  border-radius: var(--radius-md);
  margin-top: 0.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.skeleton-filter-section {
  margin-bottom: 2rem;
}

.skeleton-filter-section h4 {
  height: 1.25rem;
  width: 50%;
  margin-bottom: 0.75rem;
  background: var(--gray-200);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}

/* Filter button/element loading state - shimmer effect */
.option-card-compact.filtering,
.custom-dropdown.filtering,
.modern-slider.filtering,
.modern-toggle.filtering,
.modern-checkbox.filtering,
.configurator-step-compact.filtering {
  position: relative;
  overflow: hidden;
}

.option-card-compact.filtering-deselect,
.custom-dropdown.filtering-deselect,
.modern-slider.filtering-deselect,
.modern-toggle.filtering-deselect,
.modern-checkbox.filtering-deselect,
.configurator-step-compact.filtering-deselect {
  position: relative;
  overflow: hidden;
}

.option-card-compact.filtering::after,
.custom-dropdown.filtering::after,
.modern-slider.filtering::after,
.modern-toggle.filtering::after,
.modern-checkbox.filtering::after,
.configurator-step-compact.filtering::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  animation: shimmer-right 1.5s ease-in-out infinite;
  z-index: 10;
  pointer-events: none;
}

/* Blue shimmer for deselect actions */
.option-card-compact.filtering-deselect::after,
.custom-dropdown.filtering-deselect::after,
.modern-slider.filtering-deselect::after,
.modern-toggle.filtering-deselect::after,
.modern-checkbox.filtering-deselect::after,
.configurator-step-compact.filtering-deselect::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 142, 201, 0.4) 50%,
    transparent 100%
  );
  animation: shimmer-right 1.5s ease-in-out infinite;
  z-index: 10;
  pointer-events: none;
}

@keyframes shimmer-right {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.skeleton-filter-section h4::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.5) 20%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.5) 80%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

/* Skeleton Mobile Responsive */
@media (max-width: 768px) {
  .skeleton-product-card {
    padding: 0.75rem;
    gap: 0.75rem;
  }
  
  .skeleton-product-card .skeleton-product-image {
    width: 80px;
    height: 80px;
    min-width: 80px;
  }
  
  .skeleton-article-card,
  .skeleton-app-card,
  .skeleton-case-study-card {
    padding: 1rem;
  }
  
  .skeleton-filter-options {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
  }
  
  .skeleton-filter-option {
    height: 70px;
  }
}

/* =====================
   Responsive
===================== */
@media (max-width: 768px) {
  /* Navigation */
  .navbar-menu {
    display: none;
  }

  .mobile-nav-actions {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .navbar {
    padding: 0;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    max-width: calc(100% - 2rem);
    border-radius: var(--radius-lg);
  }

  .navbar-container {
    padding: 0.5rem 1rem !important;
    min-height: 60px;
    display: flex;
    align-items: center;
  }

  .navbar-logo {
    padding: 0.5rem 0.5rem 0.5rem 0;
    margin-left: -0.375rem;
  }

  .navbar-logo img {
    height: 50px;
  }

  /* Typography */
  h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  h3 {
    font-size: 1.125rem;
  }

  h4 {
    font-size: 1rem;
  }

  p {
    font-size: 0.9375rem;
  }

  /* Layout */
  .container,
  .container-wide {
    padding: 0 1rem;
    max-width: 100%;
    overflow-x: hidden;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-lg {
    padding: 3.5rem 0;
  }

  /* Grids */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
  }

  /* Cards */
  .card {
    padding: 1.25rem;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-description {
    font-size: 0.8125rem;
  }

  /* Buttons */
  .btn {
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
  }

  .btn-lg {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }

  /* Hero section */
  .hero {
    padding: 4rem 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.9375rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  /* Product configurator */
  .configurator-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .configurator-sidebar {
    position: static;
    max-height: none;
    padding: 1.25rem;
  }

  .configurator-sidebar h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }

  .configurator-step-compact {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .option-grid-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .option-grid-compact.shaft-sizes {
    grid-template-columns: repeat(3, 1fr);
  }

  .option-card-compact {
    padding: 0.5rem 0.25rem;
    font-size: 0.7rem;
  }

  /* Housing quick cards */
  .housing-quick-card {
    font-size: 0.7rem;
  }

  .housing-quick-name {
    font-size: 0.7rem;
  }

/* Configurator sidebar */
.configurator-sidebar {
  background: var(--surface);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .configurator-sidebar {
  background: var(--surface);
  border-color: var(--gray-300);
  box-shadow: var(--shadow-lg);
}

[data-theme="dark"] .configurator-sidebar h3,
[data-theme="dark"] .configurator-sidebar h4,
[data-theme="dark"] .configurator-sidebar p,
[data-theme="dark"] .configurator-sidebar span {
  color: #eef6ff !important;
}

[data-theme="dark"] .configurator-sidebar input,
[data-theme="dark"] .configurator-sidebar select,
[data-theme="dark"] .configurator-sidebar textarea {
  background: var(--gray-200) !important;
  color: var(--gray-900) !important;
  border-color: var(--gray-400) !important;
}

[data-theme="dark"] .configurator-sidebar .custom-dropdown,
[data-theme="dark"] .configurator-sidebar .custom-dropdown-trigger,
[data-theme="dark"] .configurator-sidebar .custom-dropdown-menu {
  background: var(--surface) !important;
  border-color: var(--gray-300) !important;
  color: var(--gray-900) !important;
}

[data-theme="dark"] .configurator-sidebar .option-card,
[data-theme="dark"] .configurator-sidebar .option-card-compact,
[data-theme="dark"] .configurator-sidebar .filter-box {
  background: var(--surface) !important;
  border-color: var(--gray-300) !important;
  color: var(--gray-900) !important;
}

[data-theme="dark"] .configurator-sidebar .unit-toggle-btn {
  color: var(--gray-900) !important;
  background: var(--gray-200) !important;
}

[data-theme="dark"] .configurator-sidebar .unit-toggle-btn.active {
  background: var(--primary-blue) !important;
  color: #0b1726 !important;
}

[data-theme="dark"] #toggleSlider {
  background-color: var(--gray-400) !important;
}

[data-theme="dark"] #toggleKnob {
  background-color: var(--surface) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

  /* Products grid */
  .products-results {
    padding: 1.25rem;
  }

  /* Footer */
  .footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer h4 {
    font-size: 0.9375rem;
  }

  /* Contact page */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 0.875rem;
  }

  /* Status bar */
  .status-bar {
    padding: 0.875rem 1rem;
    font-size: 0.8125rem;
  }

  .status-tags {
    gap: 0.375rem;
  }

  .tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.625rem;
  }
}

/* Small mobile phones */
@media (max-width: 480px) {
  .navbar-logo {
    padding: 0.375rem 0.375rem 0.375rem 0;
    margin-left: -0.25rem;
  }

  .navbar-logo img {
    height: 45px;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .section {
    padding: 2rem 0;
  }

  .card {
    padding: 1rem;
  }

  .container,
  .container-wide {
    padding: 0 0.75rem;
  }

  .option-grid-compact {
    grid-template-columns: 1fr;
  }

  .option-grid-compact.shaft-sizes {
    grid-template-columns: repeat(2, 1fr);
  }

  .housing-quick-name {
    font-size: 0.65rem;
  }
}

/* ============================================
   RTL (Right-to-Left) Support for Arabic
   ============================================ */

/* RTL Navbar Adjustments */
[dir="rtl"] .navbar-actions {
  margin-left: 0;
  margin-right: auto;
}

[dir="rtl"] .navbar-container .navbar-menu {
  margin-left: 0;
  margin-right: 2rem;
}

[dir="rtl"] .navbar-logo {
  margin-left: 0;
  margin-right: -0.5rem;
  padding: 0.75rem 0 0.75rem 0.75rem;
}

/* RTL Mobile Menu */
[dir="rtl"] .mobile-menu {
  right: auto;
  left: 0;
  transform: translateX(-100%);
}

[dir="rtl"] .mobile-menu.active {
  transform: translateX(0);
}

[dir="rtl"] .mobile-menu-nav a {
  border-left: none;
  border-right: 3px solid transparent;
}

[dir="rtl"] .mobile-menu-nav a:hover,
[dir="rtl"] .mobile-menu-nav a.active {
  border-left-color: transparent;
  border-right-color: var(--primary-blue);
}

}
r(--primary-blue);
}

}
