body.sany-header-rebuild-lock {
  overflow: hidden;
}

.sany-header-rebuild,
.sany-header-rebuild * {
  box-sizing: border-box;
  font-family: Arial, sans-serif !important;
  direction: ltr !important;
}

.sany-header-rebuild {
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  height: 64px;
  color: #09090b;
  font-family: Arial, sans-serif;
  direction: ltr !important;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  background-color: rgba(255, 255, 255);
  backdrop-filter: blur(4px);
}

.sany-header-rebuild--nav-open {
  background: #fff;
  background-color: #fff;
  backdrop-filter: none;
}

.sany-header-rebuild a {
  color: inherit;
  text-decoration: none;
}

.sany-header-rebuild .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 64px;
  padding: 0px 24px;
  margin: 0 auto;
}

.sany-header-rebuild .left-section {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.sany-header-rebuild .right-section,
.sany-header-rebuild .inner-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sany-header-rebuild .flex-row-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.lang-and-subsite-selector-container {
  display: flex;
  align-items: center;
  min-width: 118px;
  gap: 12px;
}

.sany-header-rebuild .logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sany-header-rebuild .logo-container {
  position: relative;
  height: 100%;
}

.sany-header-rebuild .logo-svg {
  width: 144px;
  height: 40px;
  fill: #e60012;
  stroke: none;
}

.sany-header-rebuild .logo-svg path {
  fill: #e60012;
}

.sany-header-rebuild__nav,
.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
  z-index: 60;
  max-width: max-content;
  height: 64px;
}

.nav-list {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0px 4px;
  margin: 0;
  list-style: none;
}

.sany-header-rebuild__nav-item,
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 64px;
}

.nav-button {
  height: 64px;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background-color: transparent;
  padding: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.15s ease-in-out;
  outline: none;
  margin-left: 4px;
  border: none;
  cursor: pointer;
  position: relative;
}

.nav-button:hover,
.nav-button:focus {
  color: #111827;
  outline: none;
}

.sany-header-rebuild__nav-link,
.nav-link {
  display: inline-block;
  position: relative;
  width: fit-content;
  padding: 8px;
  color: #000;
  font-size: 16px !important;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}

.sany-header-rebuild__nav-link::after,
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #dc2626;
  transition: width 0.3s ease-in-out;
}

.nav-item:hover .nav-link,
.nav-item[data-open="true"] .nav-link {
  color: #111827;
}

.nav-item:hover .nav-link::after,
.nav-item[data-open="true"] .nav-link::after {
  width: 100%;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-width: 200px;
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition:
    opacity 0.2s ease-in-out,
    visibility 0.2s ease-in-out,
    transform 0.2s ease-in-out;
}

.nav-item:hover .dropdown-menu,
.dropdown-menu:hover,
.nav-item[data-open="true"] .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu.has-active-group {
  grid-template-columns: 1fr 1fr;
  min-width: 400px;
}

.dropdown-items {
  padding: 12px 0;
  margin: 0;
  list-style: none;
}

.dropdown-item {
  margin: 0;
}

.dropdown-link {
  display: inline-block;
  position: relative;
  padding: 12px 16px;
  color: #374151;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.15s ease-in-out;
}

.dropdown-link::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 4px;
  height: 2px;
  width: 0;
  background-color: #dc2626;
  transition: width 0.3s ease-in-out;
}

.dropdown-link:hover {
  color: #dc2626;
}

.dropdown-link:hover::after {
  width: calc(100% - 32px);
}

.dropdown-column {
  padding: 12px 0;
}

.dropdown-column:first-child {
  border-right: 1px solid #e5e7eb;
}

.dropdown-menu:not(.has-active-group) .dropdown-column:first-child {
  border-right: none;
}

.dropdown-menu:not(.has-active-group) .dropdown-column:nth-child(2) {
  display: none;
}

.group-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 8px;
}

.group-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: 8px;
  color: #6b7280;
}

.group-item .dropdown-link {
  flex: 0 1 auto;
  width: fit-content;
  padding-right: 8px;
}

.group-item.active .dropdown-link,
.group-item:hover .dropdown-link {
  color: #dc2626;
}

.group-item.active .dropdown-link::after,
.group-item:hover .dropdown-link::after {
  width: calc(100% - 8px);
}

.group-item.active svg,
.group-item:hover svg {
  color: #dc2626;
}

.sub-menu-content {
  padding: 12px 0;
}

.sany-header-rebuild__group-panel {
  display: none;
}

.sany-header-rebuild__group-panel.is-active {
  display: block;
}

.sub-menu-content .sub-dropdown-link {
  display: block;
  position: relative;
  padding: 12px 16px;
  color: #374151;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.15s ease-in-out;
}

.sub-menu-content .sub-dropdown-link span {
  position: relative;
}

.sub-menu-content .sub-dropdown-link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background-color: #dc2626;
  transition: width 0.3s ease-in-out;
}

.sub-menu-content .sub-dropdown-link:hover {
  color: #dc2626;
}

.sub-menu-content .sub-dropdown-link:hover span::after {
  width: 100%;
}

.product-menu-container {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease-in-out,
    visibility 0.2s ease-in-out;
  pointer-events: none;
}

.nav-item[data-product-menu="true"]:hover .product-menu-container,
.nav-item[data-product-menu="true"][data-open="true"] .product-menu-container,
.product-menu-container:hover,
.product-menu-container.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sany-header-rebuild--product-menu-close-locked .product-menu-container {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.menu-container {
  position: relative;
  z-index: 10000;
  overflow-x: hidden;
  padding: 40px 0;
  background-color: white;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: #f3f4f6;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out;
}

.close-button:hover {
  background-color: #e5e7eb;
}

.close-icon {
  width: 20px;
  height: 20px;
}

.product-menu-container .close-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 8px;
  color: #111827;
  font-size: 0;
  line-height: 0;
  z-index: 10001;
}

.product-menu-container .close-icon {
  display: block;
  flex: 0 0 20px;
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin: auto;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.content-container {
  display: flex;
  max-width: 1440px;
  padding-bottom: 40px;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 24px;
  max-height: calc(66vh);
  overflow-y: auto;
  padding: 24px;
}

.product-grid::-webkit-scrollbar {
  display: none;
}

.product-grid {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.category-card {
  width: 100%;
}

.category-title {
  margin: 0 0 8px;
  color: #111827;
  font-size: 18px;
  font-weight: bold;
}

.category-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}

.category-title a:hover {
  color: #dc2626;
}

.icon-container {
  width: 100%;
  margin-bottom: 12px;
}

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 128px;
  height: 80px;
  overflow: hidden;
  background-color: #f3f4f6;
  border-radius: 4px;
}

.icon-wrapper a {
  display: block;
  width: 100%;
  height: 100%;
}

.category-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.category-icon:hover {
  transform: scale(1.05);
}

.subcategory-list {
  padding: 0 0 0 4px;
  margin: 0;
  list-style: none;
}

.subcategory-item {
  margin: 0;
}

.subcategory-link {
  display: block;
  padding: 4px 0;
  color: #374151;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}

.subcategory-link:hover {
  color: #dc2626;
}

.quick-links {
  display: flex;
  flex-direction: column;
  width: 256px;
  min-width: 256px;
  padding-left: 32px;
  border-left: 1px solid #e5e7eb;
}

.quick-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  color: #111827;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid #f3f4f6;
  transition: color 0.15s ease-in-out;
}

.quick-link:last-child {
  border-bottom: none;
}

.quick-link:hover {
  color: #dc2626;
}

.chevron-icon,
.arrow-icon {
  width: 16px;
  height: 16px;
}

.sany-header-rebuild__icon-button,
.sany-header-rebuild__mobile-tool {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  color: #4b5563;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.15s ease-in-out;
}

.sany-header-rebuild__icon-button:hover,
.sany-header-rebuild__mobile-tool:hover {
  color: #111827;
}

.sany-header-rebuild svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sany-header-rebuild__selector {
  position: relative;
  display: flex;
  align-items: center;
  height: 64px;
  color: #374151;
  cursor: pointer;
  transition: color 0.15s ease-in-out;
}

.sany-header-rebuild__selector:hover {
  color: #0a0a0a;
}

.sany-header-rebuild__selector-button {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 64px;
  padding: 0;
  color: inherit;
  font-size: 16px;
  background: transparent;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

.sany-header-rebuild__selector-button [data-header-icon] {
  width: 24px;
  height: 24px;
}

.language-selector-container
  .sany-header-rebuild__selector-button
  [data-header-icon="language"] {
  display: none;
}

.sany-header-rebuild__selector-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 1000;
  min-width: 180px;
  padding: 8px 0;
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-5px);
  transition: all 0.15s ease-in-out;
  pointer-events: none;
}

.sany-header-rebuild__selector-panel::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  z-index: 1;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
  transform: translateX(-50%);
}

.sany-header-rebuild__selector-panel::after {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  z-index: 0;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #e5e7eb;
  transform: translateX(-50%);
}

.sany-header-rebuild__selector:hover .sany-header-rebuild__selector-panel,
.sany-header-rebuild__selector.is-active .sany-header-rebuild__selector-panel {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
  pointer-events: auto;
}

.sany-header-rebuild__selector-panel button {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px 16px;
  color: #111827;
  font-size: 14px;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.sany-header-rebuild__selector-panel button:hover {
  color: #dc2626;
}

.sany-header-rebuild__selector-panel--subsites {
  min-width: 220px;
}

.sany-header-rebuild__inquiry {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 32px;
  padding: 8px 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  background-color: #db010a;
  border: 1px solid #db010a;
  border-radius: 2px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: color 0.15s ease-in-out;
}

.sany-header-rebuild__inquiry:hover {
  color: white;
  background-color: #b91c1c;
}

.sany-header-rebuild__mask {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  height: calc(100vh - 64px);
  background-color: rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease-in-out,
    visibility 0.2s ease-in-out;
}

.sany-header-rebuild--nav-open .sany-header-rebuild__mask,
.sany-header-rebuild--selector-open .sany-header-rebuild__mask {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
}

.sany-header-rebuild--search-open .sany-header-rebuild__mask {
  top: 0;
  height: 100%;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
}

.sany-header-rebuild__search {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 60px;
  background-color: white;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

.sany-header-rebuild--search-open .sany-header-rebuild__search {
  transform: translateY(0) !important;
}

.sany-header-rebuild__search-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  max-width: 672px;
  height: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.search-icon,
.sany-header-rebuild__search-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: #6b7280;
}

.sany-header-rebuild__search-inner input {
  flex: 1;
  width: 100%;
  height: 40px;
  padding: 0 40px 0 16px;
  color: #111827;
  font-size: 16px;
  border: 1px solid #e5e7eb;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  outline: none;
}

.sany-header-rebuild__search-inner input::placeholder {
  color: #9ca3af;
}

.sany-header-rebuild__search-inner button[data-header-search-submit] {
  display: none;
}

.sany-header-rebuild__panel-close {
  position: absolute;
  top: 14px;
  right: calc(50% - 360px);
  z-index: 1;
  width: 32px;
  height: 32px;
  color: #6b7280;
  font-size: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.sany-header-rebuild__panel-close::before,
.sany-header-rebuild__panel-close::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 6px;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s ease;
}

.sany-header-rebuild__panel-close::before {
  transform: rotate(45deg);
}

.sany-header-rebuild__panel-close::after {
  transform: rotate(-45deg);
}

.sany-header-rebuild__panel-close:hover::before {
  transform: rotate(135deg);
}

.sany-header-rebuild__panel-close:hover::after {
  transform: rotate(45deg);
}

.sany-header-rebuild__panel-close svg {
  width: 24px;
  height: 24px;
}

.sany-header-rebuild__mobile-menu-button,
.mobile-lang-selector-container,
.sany-header-rebuild__mobile-lang-overlay,
.sany-header-rebuild__mobile-lang-panel,
.sany-header-rebuild__mobile-menu-overlay,
.sany-header-rebuild__mobile-menu-drawer {
  display: none;
}

.mobile-lang-selector-container .selector {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 8px 0px;
  color: #374151;
  cursor: pointer;
  transition: color 0.15s ease;
}

.mobile-lang-selector-container .selector:hover {
  color: #111827;
}

.mobile-lang-selector-container .language-text {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.mobile-lang-selector-container .chevron-down {
  width: 16px;
  height: 16px;
  color: #6b7280;
}

.sany-header-rebuild__mobile-lang-overlay {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  width: 100%;
  height: calc(100vh - 60px);
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.sany-header-rebuild__mobile-lang-overlay.show,
.sany-header-rebuild--mobile-lang-open
  .sany-header-rebuild__mobile-lang-overlay {
  display: block;
  opacity: 1;
  visibility: visible;
}

.sany-header-rebuild__mobile-lang-panel {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 10000;
  width: 100%;
  height: 560px;
  overflow-y: auto;
  background: white;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.sany-header-rebuild__mobile-lang-panel.show,
.sany-header-rebuild--mobile-lang-open .sany-header-rebuild__mobile-lang-panel {
  display: block;
  transform: translateY(0);
}

.sany-header-rebuild__mobile-lang-panel .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 100%;
  padding: 12px;
}

.sany-header-rebuild__mobile-lang-panel .column-title {
  padding-bottom: 12px;
  color: #374151;
  font-size: 14px;
}

.sany-header-rebuild__mobile-lang-panel .list-container {
  height: 480px;
  padding: 8px;
  overflow-y: auto;
  border: 1px solid #e5e7eb;
}

.sany-header-rebuild__mobile-lang-panel .list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sany-header-rebuild__mobile-lang-panel .item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 4px;
  padding: 4px;
  color: #374151;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: all 0.15s ease;
}

.sany-header-rebuild__mobile-lang-panel .item button:hover {
  color: #db010a;
  background: #f9fafb;
}

.sany-header-rebuild__mobile-lang-panel .item span {
  position: relative;
  padding-bottom: 4px;
}

.sany-header-rebuild__mobile-lang-panel .item span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ef4444;
  transition: width 0.3s ease;
}

.sany-header-rebuild__mobile-lang-panel .item button:hover span::after {
  width: 100%;
}

.sany-header-rebuild__mobile-lang-panel .chevron-icon {
  width: 16px;
  height: 16px;
  color: #6b7280;
}

.sany-header-rebuild__mobile-menu-button {
  align-items: center;
  justify-content: center;
  color: #4b5563;
  background: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.15s ease-in-out;
}

.sany-header-rebuild__mobile-menu-button:hover {
  color: #111827;
  background-color: #f3f4f6;
}

.sany-header-rebuild__mobile-menu-button svg {
  width: 24px;
  height: 24px;
}

.sany-header-rebuild__mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.sany-header-rebuild__mobile-menu-overlay.show,
.sany-header-rebuild--mobile-menu-open
  .sany-header-rebuild__mobile-menu-overlay {
  display: block;
  opacity: 1;
  visibility: visible;
}

.sany-header-rebuild__mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  height: 100vh;
  overflow-y: auto;
  background-color: white;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-100%);
  transition:
    transform 0.3s ease,
    visibility 0s linear 0.3s;
}

.sany-header-rebuild__mobile-menu-drawer.show,
.sany-header-rebuild--mobile-menu-open
  .sany-header-rebuild__mobile-menu-drawer {
  display: block;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.sany-header-rebuild__mobile-menu-drawer .menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
  height: 64px;
  padding: 0 16px;
  background-color: white;
  border-bottom: 1px solid #e5e7eb;
}

.sany-header-rebuild__mobile-menu-drawer .menu-logo {
  display: flex;
  align-items: center;
}

.sany-header-rebuild__mobile-menu-drawer .menu-logo svg {
  width: 120px;
  height: 32px;
  fill: #e60012;
}

.sany-header-rebuild__mobile-menu-drawer .close-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #374151;
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.15s ease-in-out;
}

.sany-header-rebuild__mobile-menu-drawer .close-button:hover {
  color: #111827;
  background-color: #f3f4f6;
}

.sany-header-rebuild__mobile-menu-drawer .close-button svg {
  width: 24px;
  height: 24px;
}

.sany-header-rebuild__mobile-nav {
  padding: 0;
}

.sany-header-rebuild__mobile-section {
  background-color: #fff !important;
  border-bottom: 1px solid #e5e7eb;
}

.sany-header-rebuild__mobile-section .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  color: #374151;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.15s ease-in-out;
}

.sany-header-rebuild__mobile-section .nav-link:hover,
.sany-header-rebuild__mobile-section.is-active .nav-link {
  color: #111827;
  background-color: #f9fafb;
}

.sany-header-rebuild__mobile-section .nav-link::after {
  display: none;
}

.sany-header-rebuild__mobile-section .accordion-icon {
  width: 20px;
  height: 20px;
}

.sany-header-rebuild__mobile-section .accordion-icon--minus {
  display: none;
}

.sany-header-rebuild__mobile-section.is-active .accordion-icon--plus {
  display: none;
}

.sany-header-rebuild__mobile-section.is-active .accordion-icon--minus {
  display: block;
}

.sany-header-rebuild__mobile-section-body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s ease;
}

.sany-header-rebuild__mobile-section-body.expanded,
.submenu.expanded {
  grid-template-rows: 1fr;
}

.sany-header-rebuild__mobile-section-inner {
  min-height: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition: transform 0.3s ease;
}

.sany-header-rebuild__mobile-section-body.expanded
  .sany-header-rebuild__mobile-section-inner,
.submenu.expanded .sany-header-rebuild__mobile-section-inner {
  transform: translateY(0);
}

.sany-header-rebuild__mobile-section-body a,
.sany-header-rebuild__mobile-section-body strong {
  display: block;
  padding: 12px 24px;
  color: #374151;
  font-size: 14px;
}

.sany-header-rebuild__mobile-section-body strong {
  color: #111827;
  font-weight: 600;
}

.sany-header-rebuild__mobile-section-body .sany-header-rebuild__mobile-child {
  padding-left: 40px;
}

.quote-button-container {
  padding: 24px;
  background-color: white;
  border-top: 1px solid #e5e7eb;
}

.sany-header-rebuild__mobile-quote,
.quote-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 24px;
  color: #e60012;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  background-color: white;
  border: 2px solid #e60012;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}

.sany-header-rebuild__mobile-quote:hover,
.quote-button:hover {
  color: white;
  background-color: #e60012;
}

@media (min-width: 1280px) {
  .sany-header-rebuild .container {
    max-width: 1440px;
  }

  .language-selector-container
    .sany-header-rebuild__selector-button
    [data-header-icon="language"] {
    display: block;
  }
}
@media (min-width: 1280px) {
  .sany-header-rebuild .container {
    box-sizing: content-box;
  }
}
@media (max-width: 1023px) {
  .sany-header-rebuild .container {
    padding: 0px 16px;
  }

  .sany-header-rebuild__nav,
  .lang-and-subsite-selector-container,
  .sany-header-rebuild__inquiry {
    display: none;
  }

  .sany-header-rebuild .logo-svg {
    width: 120px;
    height: 32px;
  }

  .mobile-lang-selector-container {
    display: block;
    min-width: 40px;
    order: 1;
  }

  .sany-header-rebuild__icon-button {
    display: flex;
  }

  .sany-header-rebuild .flex-row-container {
    flex-direction: row;
    order: 2;
  }

  .sany-header-rebuild__mobile-menu-button {
    display: flex;
    width: 24px;
    height: 24px;
    order: 3;
  }

  .sany-header-rebuild__mobile-menu-overlay,
  .sany-header-rebuild__mobile-menu-drawer {
    display: block;
  }

  .sany-header-rebuild__mobile-menu-drawer .nav-list {
    display: block;
    height: auto;
    padding: 0;
  }

  .sany-header-rebuild__mobile-section {
    display: block;
    align-items: stretch;
    height: auto;
  }
}
