.top-bar {
  position: relative;
}

#main-menu {
  position: relative;
}

.header-menu > li.menu-item-has-header-dropdown {
  position: static;
}

.header-menu > li.menu-item-has-header-dropdown > .sub-menu {
  display: none !important;
}

.header-menu > li.menu-item-has-header-dropdown:hover > .header-dropdown-panel,
.header-menu > li.menu-item-has-header-dropdown:focus-within > .header-dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -12px);
}

.header-dropdown-panel {
  position: fixed;
  top: calc(100% + 18px);
  left: 50%;
  width: min(100%, calc(100vw - 48px));
  padding: 10px;
  border: 1px solid #e7e7e7;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 40px rgba(16, 24, 40, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 1200;
}

.header-dropdown-panel::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  width: 100%;
  height: 18px;
}

.header-dropdown-panel__layout {
  display: grid;
  align-items: stretch;
  min-height: 440px;
  background: #fff;
  border-radius: 20px;
}

.header-dropdown-panel__layout--type-1 {
  grid-template-columns: 267px minmax(0, 1fr) 300px;
}

.header-dropdown-panel__layout--type-2 {
  grid-template-columns: 250px minmax(0, 1fr) 300px;
}

.header-dropdown-panel__layout--type-3 {
  grid-template-columns: 290px minmax(0, 1fr);
  min-height: 170px;
}

.header-dropdown-panel__layout--type-4 {
  grid-template-columns: minmax(0, 1fr) 350px;
  min-height: 320px;
}

.header-dropdown-panel__promo,
.header-dropdown-panel__section,
.header-dropdown-panel__case-card,
.header-dropdown-panel__intro-block,
.header-dropdown-featured-card {
  min-width: 0;
}

.header-dropdown-panel__promo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 30px;
  background: #EEEEEE;
  border-radius: 12px;
}

.header-dropdown-panel__eyebrow {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: max-content;
  padding: 10px;
  background: #FFFFFF;
  border-radius: 6px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  text-align: center;
  color: #D41028;
}

.header-dropdown-panel__case-label {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: max-content;
  margin: 0 30px;
  padding: 10px;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  font-size: 11px;
  line-height: 18px;
  font-weight: 400;
  text-transform: uppercase;
  color: #575757;
}

.header-dropdown-panel__promo-title,
.header-dropdown-panel__case-title,
.header-dropdown-panel__intro-text {
  margin: 0;
  color: #1C1C1C;
}

.header-dropdown-panel__promo-title,
.header-dropdown-panel__case-title {
  margin-top: 10px;
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  color: #1C1C1C;
}

.header-dropdown-panel__case-title {
  margin: 0 30px;
}

.header-dropdown-panel__promo-description {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #575757;
  text-transform: none;
}

.header-dropdown-panel__promo:hover .header-dropdown-panel__promo-title {
  text-decoration: underline;
}

.header-dropdown-panel__section,
.header-dropdown-panel__case-card,
.header-dropdown-panel__intro-block {
  padding: 20px 24px;
}

.header-dropdown-panel__section--type-4-links {
  padding: 28px 38px 28px 34px;
}

.header-dropdown-panel__section--product-cards, .header-dropdown-panel__section--links, .header-dropdown-panel__case-card, .header-dropdown-featured-card {
   border-left: 1px solid #EEEEEE;
}

.header-dropdown-panel--type-3 .header-dropdown-panel__section--product-cards {
   border-left: none;
}

.header-dropdown-panel__heading {
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: #1C1C1C;
}

.header-dropdown-panel__heading--type-4 {
  margin-bottom: 47px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: #1C1C1C;
}

.header-dropdown-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.header-dropdown-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  color: inherit;
  text-decoration: none;
}

.header-dropdown-product-card__content {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.header-dropdown-card__icon,
.header-dropdown-product-card__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 10px 0;
  background: #EEEEEE;
  border-radius: 8px;
  overflow: hidden;
}

.header-dropdown-card__icon img,
.header-dropdown-product-card__icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.header-dropdown-card__icon.has-image::before,
.header-dropdown-card__icon.has-image::after,
.header-dropdown-product-card__icon.has-image::before,
.header-dropdown-product-card__icon.has-image::after {
  content: none;
}

.header-dropdown-card__icon::before,
.header-dropdown-card__icon::after,
.header-dropdown-product-card__icon::before,
.header-dropdown-product-card__icon::after {
  content: '';
  position: absolute;
  background: #d41028;
  opacity: 0.9;
}

.header-dropdown-card__icon::before,
.header-dropdown-product-card__icon::before {
  top: 11px;
  left: 11px;
  width: 16px;
  height: 16px;
  border: 1.5px solid #d41028;
  background: transparent;
  border-radius: 5px;
}

.header-dropdown-card__icon::after,
.header-dropdown-product-card__icon::after {
  top: 9px;
  right: 9px;
  width: 7px;
  height: 7px;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.header-dropdown-card__content,
.header-dropdown-product-card {
  min-width: 0;
}

.header-dropdown-card__title,
.header-dropdown-product-card__title {
  display: block;
  color: #1c1c1c;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
  transition: color 0.2s ease;
}

.header-dropdown-card__description,
.header-dropdown-product-card__description,
.header-dropdown-panel__intro-text {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #575757;
}

.header-dropdown-card:hover .header-dropdown-card__title,
.header-dropdown-product-card:hover .header-dropdown-product-card__title,
.header-dropdown-feature-link:hover .header-dropdown-feature-link__title,
.header-dropdown-featured-card:hover .header-dropdown-featured-card__title,
.header-dropdown-button-link:hover,
.header-dropdown-panel--type-2 .header-dropdown-button-link:hover,
.header-dropdown-panel__cta:hover {
  color: #D41028;
  text-decoration: underline;
}

.header-dropdown-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.header-dropdown-panel__layout--type-4 .header-dropdown-feature-list {
  gap: 40px;
}

.header-dropdown-feature-link {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  color: inherit;
  text-decoration: none;
}

.header-dropdown-feature-link__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #f4f4f4;
  overflow: hidden;
}

.header-dropdown-feature-link__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.header-dropdown-feature-link__icon.has-image::before,
.header-dropdown-feature-link__icon.has-image::after {
  content: none;
}

.header-dropdown-feature-link__icon::before,
.header-dropdown-feature-link__icon::after {
  content: '';
  position: absolute;
  background: #d41028;
  opacity: 0.9;
}

.header-dropdown-feature-link__icon::before {
  top: 13px;
  left: 13px;
  width: 18px;
  height: 18px;
  border: 1.5px solid #d41028;
  background: transparent;
  border-radius: 5px;
}

.header-dropdown-feature-link__icon::after {
  top: 11px;
  right: 11px;
  width: 8px;
  height: 8px;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.header-dropdown-feature-link__content {
  min-width: 0;
}

.header-dropdown-feature-link__title {
  display: block;
  color: #1c1c1c;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  transition: color 0.2s ease;
}

.header-dropdown-feature-link__description {
  display: block;
  margin-top: 4px;
  color: #5a5a5a;
  font-size: 14px;
  line-height: 1.45;
}

.header-dropdown-button-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.header-dropdown-button-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 63px;
  padding: 10px 24px;
  border: 1px solid #EEEEEE;
  border-radius: 12px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #1C1C1C;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-dropdown-panel--type-2 .header-dropdown-button-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 40px;
  padding: 8px 24px;
  border: 1px solid #EEEEEE;
  border-radius: 12px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #1C1C1C;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-dropdown-panel--type-2 .header-dropdown-panel__section--links {
  border-left: none;
}

.header-dropdown-panel--type-2 .header-dropdown-panel__cta {
  margin-left: 30px;
}

.header-dropdown-button-link__arrow,
.header-dropdown-panel__cta-arrow {
  font-size: 16px;
  line-height: 1;
}

.header-dropdown-panel__case-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 4px;
  border-radius: 12px;
}

.header-dropdown-featured-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 4px;
  color: inherit;
  text-decoration: none;
  border-radius: 16px;
  transition: background-color 0.2s ease;
}

.header-dropdown-featured-card:hover {
  background: #fcfcfc;
}

.header-dropdown-featured-card__media {
  overflow: hidden;
  border: 1px solid #e7e7e7;
  border-radius: 16px;
  background: #f4f4f4;
}

.header-dropdown-featured-card__media img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.header-dropdown-featured-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px;
}

.header-dropdown-panel__featured-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  padding: 6px 14px;
  border: 1px solid #e7e7e7;
  border-radius: 999px;
  color: #6d6d6d;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.header-dropdown-featured-card__title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: #1C1C1C;
  transition: color 0.2s ease;
}

.header-dropdown-panel__case-media {
  overflow: hidden;
  border: 1px solid #EEEEEE;
  border-radius: 12px;
}

.header-dropdown-panel__case-media img {
  display: block;
  width: 100%;
  height: 158px;
  object-fit: cover;
}

.header-dropdown-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #d41028;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 500;
  text-decoration: none;
}

.header-dropdown-panel__intro-block {
  display: flex;
  align-items: center;
  border: none;
}

.header-dropdown-panel__intro-text {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: #1C1C1C;
}

.header-dropdown-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.header-dropdown-product-card {
  display: flex;
  flex-direction: row;
  gap: 12px;
  min-height: 100%;
  padding: 12px 18px;
  border-radius: 16px;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.header-dropdown-product-card__icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
}

@media (max-width: 1199px) {
  .header-dropdown-panel {
    width: min(980px, calc(100vw - 32px));
  }

  .header-dropdown-panel__layout--type-1,
  .header-dropdown-panel__layout--type-2 {
    grid-template-columns: 200px minmax(0, 1fr) 220px;
  }

  .header-dropdown-panel__layout--type-4 {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .header-dropdown-product-grid,
  .header-dropdown-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .header-dropdown-panel {
    display: none;
  }
}