@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --nx-bg-base: #f8fafc;
  --nx-card-bg: #ffffff;
  --nx-text-main: #0f172a;
  --nx-text-muted: #64748b;
  --nx-primary: #1e293b;
  --nx-accent: #249AF3;
  --nx-accent-hover: #1d4ed8;
  --nx-border-color: #e8ebf091;
  --nx-input-bg: #f1f5f9;
  --nx-header-height: 72px;
  --nx-radius-sm: 5px;
  --nx-radius-md: 5px;
  --nx-radius-lg: 5px;
  --nx-shadow-dropdown: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

#nx-bar-system *,
#nx-bar-system ::before,
#nx-bar-system ::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  text-transform: none;
  font-style: normal;
  letter-spacing: normal;
}

#nx-bar-system svg {
  flex-shrink: 0;
  vertical-align: middle;
}

#nx-bar-system {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--nx-header-height);
  background-color: white;
  width: 100%;
}

#nx-bar-system .nx-bar-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nx-header-height);
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--nx-border-color);
  z-index: 1000;
  display: flex;
  align-items: center;
}

#nx-bar-system .nx-bar-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#nx-bar-system .nx-bar-logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

#nx-bar-system .nx-bar-logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 800;
  line-height: 24px;
  letter-spacing: -0.5px;
  color: var(--nx-primary);
  text-decoration: none;
  background: none;
}

#nx-bar-system .nx-bar-logo-icon {
  color: var(--nx-accent);
  font-size: 22px;
}

#nx-bar-system .nx-bar-partner-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--nx-text-muted);
  border-left: 1px solid var(--nx-border-color);
  padding-left: 10px;
  line-height: 12px;
  display: flex;
  flex-direction: column;
}

#nx-bar-system .nx-bar-partner-span {
  color: #fc2525;
  font-weight: 700;
  font-size: 10px;
  line-height: 12px;
}

#nx-bar-system .nx-bar-main-nav {
  display: flex;
  gap: 24px;
}

#nx-bar-system .nx-bar-main-link {
    font-size: 13px;
    line-height: 18px;
    font-weight: 600;
    color: var(--nx-primary);
    text-decoration: none;
    transition: color 0.2s ease;
    background: none;
    text-wrap-mode: nowrap;
}

#nx-bar-system .nx-bar-main-link:hover, 
#nx-bar-system .nx-bar-main-link.active {
  color: var(--nx-accent);
}

#nx-bar-system .nx-bar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

#nx-bar-system .nx-bar-fav-btn {
  position: relative;
  font-size: 18px;
  color: var(--nx-primary);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: none;
  border: none;
}

#nx-bar-system .nx-bar-fav-icon {
  font-size: 18px;
  color: var(--nx-primary);
}

#nx-bar-system .nx-bar-fav-counter {
  position: absolute;
  top: 2px;
  right: 0;
  background-color: #fff;
  color: #fc2525;
  font-size: 10px;
  line-height: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}

#nx-bar-system .nx-bar-auth-wrapper {
  position: relative;
  display: inline-block;
}

#nx-bar-system .nx-bar-auth-wrapper::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}

#nx-bar-system .nx-bar-account-btn {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--nx-primary);
  background-color: var(--nx-input-bg);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  line-height: 16px;
  text-decoration: none;
  border: none;
}

#nx-bar-system .nx-bar-account-icon {
  font-size: 13px;
}

#nx-bar-system .nx-bar-dropdown {
  position: absolute;
  top: 100%;
  right: -60px;
  background-color: var(--nx-card-bg);
  min-width: 240px;
  border-radius: var(--nx-radius-md);
  box-shadow: var(--nx-shadow-dropdown);
  padding: 12px 0;
  margin-top: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 1010;
  display: flex;
  flex-direction: column;
}

#nx-bar-system .nx-bar-auth-wrapper:hover .nx-bar-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#nx-bar-system .nx-bar-drop-link {
  padding: 10px 24px;
  color: var(--nx-primary);
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
}

#nx-bar-system .nx-bar-drop-link:hover {
  background-color: var(--nx-input-bg);
  color: var(--nx-accent);
}

#nx-bar-system .nx-bar-drop-icon {
  font-size: 14px;
  color: var(--nx-text-muted);
  width: 16px;
  text-align: center;
  transition: color 0.2s ease;
}

#nx-bar-system .nx-bar-drop-link:hover .nx-bar-drop-icon {
  color: var(--nx-accent);
}

#nx-bar-system .nx-bar-drop-divider {
  border: 0;
  border-top: 1px solid var(--nx-border-color);
  margin: 8px 0;
}

#nx-bar-system .nx-bar-drop-logout {
  color: var(--nx-accent);
}

#nx-bar-system .nx-bar-drop-logout .nx-bar-drop-icon {
  color: var(--nx-accent);
}

#nx-bar-system .nx-bar-cta-btn {
    background-color: var(--nx-accent);
    color: #ffffff;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: var(--nx-radius-md);
    transition: background-color 0.2s ease, transform 0.1s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    line-height: 18px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

#nx-bar-system .nx-bar-cta-btn:hover {
  background-color: var(--nx-accent-hover);
}

#nx-bar-system .nx-bar-cta-icon {
  font-size: 12px;
  color: #ffffff;
}

#nx-bar-system .nx-bar-menu-btn {
  display: none;
  font-size: 20px;
  color: var(--nx-primary);
  background: none;
  border: none;
  cursor: pointer;
}

#nx-bar-system .nx-bar-menu-icon {
  font-size: 20px;
}

#nx-bar-system .nx-bar-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#nx-bar-system .nx-bar-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

#nx-bar-system .nx-bar-mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background-color: var(--nx-card-bg);
  z-index: 1002;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

#nx-bar-system .nx-bar-mobile-drawer.active {
  right: 0;
}

#nx-bar-system .nx-bar-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--nx-border-color);
  padding-bottom: 16px;
  margin-bottom: 24px;
}

#nx-bar-system .nx-bar-btn-close {
  font-size: 20px;
  color: var(--nx-primary);
  background: none;
  border: none;
  cursor: pointer;
}

#nx-bar-system .nx-bar-close-icon {
  font-size: 20px;
}

#nx-bar-system .nx-bar-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#nx-bar-system .nx-bar-drawer-link {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--nx-primary);
  padding: 8px 0;
  text-decoration: none;
}

#nx-bar-system .nx-bar-contact-box {
  background-color: var(--nx-input-bg);
  border-radius: var(--nx-radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 12px;
}

#nx-bar-system .nx-bar-contact-label {
  font-size: 11px;
  line-height: 16px;
  font-weight: 700;
  color: var(--nx-text-muted);
  text-transform: none;
  letter-spacing: 0.5px;
}

#nx-bar-system .nx-bar-contact-link {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: var(--nx-primary);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  text-decoration: none;
}

#nx-bar-system .nx-bar-contact-icon {
  color: var(--nx-accent);
  font-size: 14px;
}

#nx-bar-system .nx-bar-divider {
  border: 0;
  border-top: 1px solid var(--nx-border-color);
  margin: 8px 0;
}

#nx-bar-system .nx-bar-mobile-auth-placeholder {
  display: flex;
  flex-direction: column;
}

#nx-bar-system .nx-bar-mobile-login {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--nx-accent);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  padding: 12px 0;
  text-decoration: none;
}

#nx-bar-system .nx-bar-login-icon {
  font-size: 16px;
}

#nx-bar-system .nx-bar-mobile-logged-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#nx-bar-system .nx-bar-mobile-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0 20px 0;
  font-weight: 700;
  color: var(--nx-primary);
  font-size: 16px;
  line-height: 24px;
  border-bottom: 1px solid var(--nx-border-color);
  margin-bottom: 12px;
}

#nx-bar-system .nx-bar-mobile-user-icon {
  color: var(--nx-accent);
  font-size: 24px;
}

#nx-bar-system .nx-bar-mobile-user-name {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

#nx-bar-system .nx-bar-mobile-menu-link {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--nx-text-main);
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  text-decoration: none;
}

#nx-bar-system .nx-bar-mobile-menu-icon {
  color: var(--nx-text-muted);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

#nx-bar-system .nx-bar-mobile-logout {
  margin-top: 16px;
  color: var(--nx-accent);
  font-weight: 600;
  border-top: 1px solid var(--nx-border-color);
  padding-top: 20px;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  background: none;
  border-left: none;
  border-right: none;
  border-bottom: none;
  cursor: pointer;
}

#nx-bar-system .nx-bar-mobile-logout .nx-bar-mobile-menu-icon {
  color: var(--nx-accent);
}

@media (max-width: 991px) {
  #nx-bar-system .nx-bar-main-nav, 
  #nx-bar-system .nx-bar-auth-wrapper {
    display: none;
  }
  #nx-bar-system .nx-bar-menu-btn {
    display: block;
  }
}

@media (max-width: 767px) {
  :root {
    --nx-header-height: 60px;
  }
  #nx-bar-system .nx-bar-container {
    padding: 0 8px;
  }
  #nx-bar-system .nx-bar-logo-link {
    font-size: 16px;
  }
  #nx-bar-system .nx-bar-logo-icon {
    font-size: 17px;
  }
  #nx-bar-system .nx-bar-partner-tag {
    font-size: 9px;
    line-height: 10px;
    padding-left: 6px;
  }
  #nx-bar-system .nx-bar-cta-btn {
    padding: 8px 12px;
    font-size: 11px;
  }
}

#nx-footer-system *,
#nx-footer-system ::before,
#nx-footer-system ::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  text-transform: none;
  font-style: normal;
  letter-spacing: normal;
}

#nx-footer-system {
  width: 100%;
  background-color: #0f172a;
  color: #94a3b8;
  display: block;
}

#nx-footer-system .nx-footer-wrapper {
  width: 100%;
  padding-top: 64px;
}

#nx-footer-system .nx-footer-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

#nx-footer-system .nx-footer-main {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 48px;
}

#nx-footer-system .nx-footer-brand {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#nx-footer-system .nx-footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.5px;
}

#nx-footer-system .nx-footer-logo-icon {
  color: #249AF3;
  font-size: 24px;
}

#nx-footer-system .nx-footer-desc {
  font-size: 13px;
  line-height: 22px;
  color: #94a3b8;
  font-weight: 400;
}

#nx-footer-system .nx-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

#nx-footer-system .nx-footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #f8fafc;
  text-decoration: none;
  transition: color 0.2s ease;
}

#nx-footer-system .nx-footer-contact-link:hover {
  color: #249AF3;
}

#nx-footer-system .nx-footer-contact-link svg {
  color: #249AF3;
  font-size: 16px;
}

#nx-footer-system .nx-footer-nav-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  flex-grow: 1;
}

#nx-footer-system .nx-footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#nx-footer-system .nx-footer-heading {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: none;
}

#nx-footer-system .nx-footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#nx-footer-system .nx-footer-link {
  font-size: 13px;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

#nx-footer-system .nx-footer-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}

#nx-footer-system .nx-footer-company-info {
  background-color: #0b1120;
  padding: 32px 0;
  border-top: 1px solid #1e293b;
  border-bottom: 1px solid #1e293b;
}

#nx-footer-system .nx-footer-disclaimer {
  font-size: 12px;
  color: #cbd5e1;
  margin-bottom: 12px;
  line-height: 18px;
}

#nx-footer-system .nx-footer-company-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  color: #64748b;
  line-height: 16px;
}

#nx-footer-system .nx-footer-company-details strong {
  color: #f8fafc;
  font-size: 12px;
  font-weight: 700;
  width: 100%;
}

#nx-footer-system .nx-footer-company-details span {
  display: inline-flex;
  align-items: center;
}

#nx-footer-system .nx-footer-company-details span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #334155;
  border-radius: 50%;
  margin-left: 16px;
}

#nx-footer-system .nx-footer-bottom {
  padding: 24px 0;
  background-color: #0f172a;
}

#nx-footer-system .nx-footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

#nx-footer-system .nx-footer-copyright {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
}

#nx-footer-system .nx-footer-legal-text {
  font-size: 11px;
  line-height: 16px;
  color: #475569;
  text-align: right;
  max-width: 600px;
}

@media (max-width: 1024px) {
  #nx-footer-system .nx-footer-main {
    flex-direction: column;
    gap: 48px;
  }
  #nx-footer-system .nx-footer-brand {
    flex: auto;
    max-width: 400px;
  }
}

@media (max-width: 767px) {
  #nx-footer-system .nx-footer-wrapper {
    padding-top: 48px;
  }
  #nx-footer-system .nx-footer-container {
    padding: 0 20px;
  }
  #nx-footer-system .nx-footer-nav-group {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  #nx-footer-system .nx-footer-company-details span:not(:last-child)::after {
    display: none;
  }
  #nx-footer-system .nx-footer-company-details span {
    width: 100%;
  }
  #nx-footer-system .nx-footer-bottom-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  #nx-footer-system .nx-footer-legal-text {
    text-align: left;
  }
}
#nx-bar-system .nx-vin-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(15, 23, 42, 0.75) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  z-index: 99999 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  padding: 16px !important;
  box-sizing: border-box !important;
}

#nx-bar-system .nx-vin-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

#nx-bar-system .nx-vin-modal-box {
  background-color: #ffffff !important;
  width: 100% !important;
  max-width: 440px !important;
  border-radius: 8px !important;
  padding: 28px 24px !important;
  position: relative !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15) !important;
  transform: scale(0.97);
  transition: all 0.2s ease-in-out;
  display: flex !important;
  flex-direction: column !important;
  box-sizing: border-box !important;
}

#nx-bar-system .nx-vin-modal-overlay.active .nx-vin-modal-box {
  transform: scale(1);
}

#nx-bar-system .nx-vin-modal-close {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  background-color: #f1f5f9 !important;
  border: none !important;
  color: #64748b !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 4px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.15s ease !important;
  padding: 0 !important;
}

#nx-bar-system .nx-vin-modal-close:hover {
  background-color: #e2e8f0 !important;
  color: #0f172a !important;
}

#nx-bar-system .nx-vin-modal-header {
  text-align: center !important;
  margin-bottom: 20px !important;
  padding: 0 !important;
}

#nx-bar-system .nx-vin-modal-header svg {
  margin-bottom: 10px !important;
  display: inline-block !important;
  width: 24px !important;
  height: 24px !important;
}

#nx-bar-system .nx-vin-modal-header h3 {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin: 0 0 6px 0 !important;
  letter-spacing: -0.01em !important;
  line-height: 1.3 !important;
}

#nx-bar-system .nx-vin-modal-header p {
  font-size: 12px !important;
  line-height: 1.5 !important;
  color: #64748b !important;
  margin: 0 !important;
  font-weight: 400 !important;
}

#nx-bar-system .nx-vin-search-form {
  display: flex !important;
  flex-direction: row !important;
  gap: 8px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

#nx-bar-system .nx-vin-search-form input {
  flex: 1 !important;
  min-width: 0 !important;
  min-height: 38px !important;
  padding: 0 12px !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 4px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #0f172a !important;
  text-transform: none !important;
  outline: none !important;
  background-color: #f8fafc !important;
  transition: all 0.15s ease !important;
  line-height: normal !important;
  margin: 0 !important;
}

#nx-bar-system .nx-vin-search-form input::placeholder {
  text-transform: none !important;
  font-weight: 500 !important;
  color: #94a3b8 !important;
}

#nx-bar-system .nx-vin-search-form input:focus {
  border-color: #003b70 !important;
  background-color: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(0, 59, 112, 0.08) !important;
}

#nx-bar-system .nx-vin-search-form button {
  height: 38px !important;
  background-color: #249AF3 !important;
  color: #ffffff !important;
  border: none !important;
  padding: 0 20px !important;
  border-radius: 4px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: background-color 0.15s ease !important;
  white-space: nowrap !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: normal !important;
  margin: 0 !important;
}

#nx-bar-system .nx-vin-search-form button:hover {
  background-color: #1d4ed8 !important;
}

#nx-bar-system .nx-vin-loading {
  display: none;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 16px 0 0 0 !important;
  margin: 0 !important;
}

#nx-bar-system .nx-vin-spinner {
  width: 24px !important;
  height: 24px !important;
  border: 2px solid #e2e8f0 !important;
  border-top: 2px solid #003b70 !important;
  border-radius: 50% !important;
  animation: nx-spin 0.8s linear infinite !important;
  margin: 0 !important;
  padding: 0 !important;
}

@keyframes nx-spin {
  0 { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#nx-bar-system .nx-vin-loading span {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #0f172a !important;
  margin: 0 !important;
}

#nx-bar-system .nx-vin-error {
  background-color: #fef2f2 !important;
  border-left: 3px solid #ef4444 !important;
  color: #991b1b !important;
  padding: 12px 14px !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
  border-radius: 6px !important;
  font-weight: 500 !important;
  margin: 14px 0 0 0 !important;
  width: 100% !important;
  text-align: left !important;
}

@media (max-width: 640px) {
  #nx-bar-system .nx-vin-modal-box {
    padding: 24px 18px !important;
    border-radius: 8px !important;
  }
  
  #nx-bar-system .nx-vin-search-form {
    flex-direction: column !important;
    gap: 8px !important;
  }
  
  #nx-bar-system .nx-vin-search-form input,
  #nx-bar-system .nx-vin-search-form button {
    width: 100% !important;
  }
}