:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --primary: #ff5a1f;
  --primary-dark: #e34f18;
  --dark: #111827;
  --border: #e2e8f0;
  --radius: 16px;
  --shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% -5%, rgba(255, 90, 31, 0.10), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(37, 99, 235, 0.08), transparent 30%),
    var(--bg);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.nav-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.menu-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  white-space: nowrap;
}
.logo span { 
  color: var(--primary);
  font-weight: 900;
}

.nav-links {
  display: flex;
  gap: 0;
  color: #334155;
  flex: 1 1 auto;
}

.nav-links.sidebar-style {
  gap: 2px;
  align-items: center;
}

.nav-link-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  position: relative;
  padding: 10px 16px;
  border-radius: 10px;
  color: #475569;
  border-left: 4px solid transparent;
}

.nav-link-item i {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.nav-link-item:hover {
  color: var(--primary);
  background: rgba(255, 90, 31, 0.08);
  border-left-color: rgba(255, 90, 31, 0.3);
}

.nav-link-item.active {
  color: var(--primary);
  background: rgba(255, 90, 31, 0.1);
  border-left-color: var(--primary);
  font-weight: 700;
}

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-subbar {
  border-top: 1px solid #eef2f7;
  background: rgba(255, 255, 255, 0.95);
}

.subnav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 48px;
}

.subnav-menu li a {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #475569;
  white-space: nowrap;
  transition: all .2s ease;
}

.subnav-menu li.active a,
.subnav-menu li a:hover {
  color: var(--primary);
  background: rgba(255, 90, 31, 0.1);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch label {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.lang-switch select {
  width: auto;
  min-width: 76px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-switch select:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(255, 90, 31, 0.1);
}

.account-login {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #334155;
  background: var(--surface);
  transition: all 0.25s ease;
  flex-shrink: 0;
  padding: 0;
  cursor: pointer;
}

.account-login svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.account-login i {
  font-size: 1.3rem;
  line-height: 1;
}

.account-login:hover {
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(255, 90, 31, 0.15);
  transform: translateY(-2px);
}

.account-login.is-authenticated {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(255, 90, 31, 0.05);
}

.account-menu-wrapper {
  position: relative;
}

.account-menu-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  min-width: 220px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}

.account-menu-wrapper.is-open .account-menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 18px;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
}

.menu-item:first-child {
  border-radius: 14px 14px 0 0;
}

.menu-item:last-child {
  border-radius: 0 0 14px 14px;
}

.menu-item:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.menu-item:hover {
  background: #f8fafc;
  color: var(--primary);
}

.menu-item.menu-logout {
  color: #dc2626;
}

.menu-item.menu-logout:hover {
  background: #fef2f2;
  color: #dc2626;
}


.google-translate-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

.btn {
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  padding: 12px 18px;
  display: inline-block;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary {
  background: #e2e8f0;
  color: #0f172a;
}
.btn-dark {
  background: var(--dark);
  color: #fff;
}

.hero {
  background: linear-gradient(135deg, #fff 0%, #eef4ff 100%);
  padding: 64px 0;
}
.hero-modern {
  border-bottom: 1px solid #e6edf6;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 36px;
}
.eyebrow {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 8px;
}
h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.15;
}
.hero-text {
  color: var(--muted);
  max-width: 60ch;
  margin: 14px 0 24px;
}
.hero-card img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 320px;
  object-fit: cover;
}

.hero-visual {
  background: linear-gradient(145deg, #ffffff, #f8fbff);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
}

.hero-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
}

.hero-contact-chip {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  font-size: .92rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.hero-contact-chip a {
  color: var(--primary);
  font-weight: 700;
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.kpi-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 12px;
}

.kpi-item strong {
  display: block;
  font-size: 1.25rem;
}

.kpi-item span {
  font-size: .84rem;
  color: var(--muted);
}

.search-box {
  display: grid;
  grid-template-columns: 1fr 180px auto;
  gap: 10px;
  background: var(--surface);
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
}
input, select, textarea {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  font: inherit;
  width: 100%;
}

.section { padding: 60px 0; }
.section-soft { background: #eef2ff; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.section-head a { color: var(--primary); font-weight: 600; }

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}
.category-card h3 { margin-top: 0; }
.category-card p { margin-bottom: 0; color: var(--muted); }

.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.car-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.car-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}
.car-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.car-card-content {
  padding: 16px;
}
.car-meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 8px 0 14px;
}
.price {
  color: #0f172a;
  font-size: 1.2rem;
  font-weight: 800;
}

.subtitle {
  color: var(--muted);
  margin: 8px 0 24px;
}
.filters {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 10px;
  margin-bottom: 22px;
}

.cta {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.cta p { color: var(--muted); }

.vehicle-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.vehicle-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.spec {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
}
.contact-card, .form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
}
.contact-card ul {
  padding-left: 18px;
  color: var(--muted);
}
label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}
.feedback {
  margin-top: 10px;
  color: #065f46;
  font-weight: 600;
}

.contact-card ul li {
  margin-bottom: 8px;
}

.contact-card ul li strong {
  color: var(--text);
}

/* ── Vehicle detail page ───────────────────────────────────── */
.veh-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.veh-breadcrumb a { color: var(--muted); }
.veh-breadcrumb a:hover { color: var(--primary); }
.veh-breadcrumb span:last-child { color: var(--text); font-weight: 600; }

.veh-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start;
}

/* Gallery */
.veh-gallery { display: flex; flex-direction: column; gap: 12px; }

.veh-main-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #f1f5f9;
  border: 1px solid var(--border);
}
.veh-main-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: opacity .15s ease;
}
.veh-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.veh-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.veh-thumb {
  border: 2px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: border-color .15s;
  width: 80px;
  height: 60px;
  flex-shrink: 0;
}
.veh-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.veh-thumb:hover,
.veh-thumb.active {
  border-color: var(--primary);
}

/* Info panel */
.veh-info { display: flex; flex-direction: column; gap: 14px; }

.veh-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin: 0;
  line-height: 1.2;
}
.veh-code {
  font-size: .83rem;
  color: var(--muted);
  margin: 0;
  letter-spacing: .02em;
}
.veh-price {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
  line-height: 1;
}
.veh-currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.veh-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.veh-specs .spec {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spec-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
}
.spec-val {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
}

.veh-description h3 {
  font-size: 1rem;
  margin: 0 0 6px;
}
.veh-description p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.veh-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

@media (max-width: 980px) {
  .veh-layout { grid-template-columns: 1fr; }
  .veh-main-img { height: 280px; }
}
@media (max-width: 640px) {
  .veh-main-img { height: 220px; }
  .veh-thumb { width: 64px; height: 48px; }
}
/* ── footer styling ────────────────────────────────────────── */

.site-footer {
  margin-top: 60px;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(15, 23, 42, 0.02) 100%);
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px 0;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h3,
.footer-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, #ff7a3f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.footer-section > p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 90, 31, 0.08);
  color: var(--primary);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.footer-socials a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 90, 31, 0.25);
}

.footer-socials svg {
  width: 20px;
  height: 20px;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-section ul li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.footer-section ul li strong {
  color: var(--text);
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
}

.footer-section a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: #ff7a3f;
}

.footer-newsletter {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.footer-newsletter input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease;
}

.footer-newsletter input:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.1);
}

.footer-newsletter input::placeholder {
  color: var(--muted);
}

.footer-newsletter button {
  padding: 10px 16px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.footer-newsletter button:hover {
  background: #ff7a3f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 90, 31, 0.3);
}

.newsletter-feedback {
  margin-top: 10px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.newsletter-feedback[data-state="success"] {
  color: #0f766e;
}

.newsletter-feedback[data-state="error"] {
  color: #b91c1c;
}

.newsletter-feedback[data-state="loading"] {
  color: var(--muted);
}

.footer-bottom {
  background: rgba(15, 23, 42, 0.03);
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.footer-bottom p + p {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 48px 0;
  }
}

@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }

  .footer-section h3,
  .footer-section h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .footer-newsletter {
    flex-direction: column;
  }

  .footer-newsletter input,
  .footer-newsletter button {
    width: 100%;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}

/* ── end footer styling ────────────────────────────────────── */

@media (max-width: 980px) {
  .hero-grid, .vehicle-layout, .contact-layout {
    grid-template-columns: 1fr;
  }
  .cars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .search-box,
  .filters {
    grid-template-columns: 1fr;
  }
  .subnav-menu {
    overflow-x: auto;
    flex-wrap: nowrap;
  }
}

@media (max-width: 768px) {
  .nav-links.sidebar-style {
    display: flex;
    flex-direction: row;
    gap: 4px;
    position: static;
    background: transparent;
    border: none;
    max-height: none;
    overflow: visible;
    z-index: auto;
  }

  .nav-links.sidebar-style.is-open {
    max-height: none;
  }

  .nav-link-item {
    width: auto;
    padding: 8px 12px;
    border-radius: 8px;
    border-left: none;
    border-bottom: 3px solid transparent;
    font-size: 0.85rem;
  }

  .nav-link-item.active {
    border-left: none;
    border-bottom-color: var(--primary);
  }

  .nav-link-item span {
    display: inline;
  }

  .menu-toggle {
    display: none;
  }
}

@media (max-width: 640px) {
  .menu-toggle {
    display: flex;
    order: 2;
  }

  .nav-wrap {
    height: auto;
    gap: 12px;
    flex-wrap: wrap;
    padding: 10px 0;
    position: relative;
  }

  .logo {
    font-size: 1.25rem;
    order: 1;
  }

  .nav-links.sidebar-style {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow-y: auto;
    transition: max-height 0.3s ease;
    z-index: 999;
    order: 3;
    width: 100%;
    border-top: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  }

  .nav-links.sidebar-style.is-open {
    max-height: 70vh;
  }

  .nav-link-item {
    width: 100%;
    padding: 16px;
    border-radius: 0;
    border-left: 4px solid transparent;
    border-bottom: 1px solid var(--border);
    justify-content: flex-start;
    gap: 12px;
    font-size: 0.95rem;
  }

  .nav-link-item:last-child {
    border-bottom: none;
  }

  .nav-link-item.active {
    border-left-color: var(--primary);
    background: rgba(255, 90, 31, 0.05);
  }

  .nav-link-item span {
    display: inline;
  }

  .nav-actions {
    width: 100%;
    order: 4;
    margin-left: 0;
    justify-content: flex-start;
    gap: 8px;
    padding: 0 8px;
  }

  .lang-switch {
    display: flex;
    gap: 4px;
    align-items: center;
  }

  .lang-switch label {
    display: none;
  }

  .lang-switch select {
    min-width: auto;
    width: 50px;
    padding: 8px 6px;
    font-size: 0.75rem;
    border: 1px solid var(--border);
  }

  .account-login {
    width: 40px;
    height: 40px;
  }

  .account-login i {
    font-size: 1.2rem;
  }
}
    min-width: 62px;
    padding: 6px 8px;
  }
  .nav-actions .btn {
    padding: 8px 10px;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .account-login {
    width: 40px;
    height: 40px;
  }
  .account-login svg {
    width: 20px;
    height: 20px;
  }
  .account-menu-dropdown {
    right: 0;
    min-width: 190px;
  }
  .nav-subbar {
    overflow-x: auto;
  }
  .subnav-menu {
    flex-wrap: nowrap;
    min-height: 42px;
    padding: 0 2px;
  }
  .subnav-menu li a {
    font-size: 0.78rem;
    padding: 6px 10px;
  }
}

