.site-header .nav {
  position: static;
}
.products-mega {
  position: static;
}
.products-mega > summary {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  list-style: none;
  padding: 12px 0;
  font: inherit;
  color: inherit;
}
.products-mega > summary::-webkit-details-marker {
  display: none;
}
.products-mega > summary svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 0.2s;
}
.products-mega[open] > summary svg {
  transform: rotate(180deg);
}
.products-mega__panel {
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translateX(50%);
  width: min(1160px, calc(100vw - 48px));
  max-height: none;
  overflow: visible;
  background: #fff;
  border: 1px solid #e2e9e6;
  border-top: 3px solid #204c50;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 24px 50px #153c4526;
  padding: 26px 30px 30px;
  z-index: 110;
}
.products-mega__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #e7eeeb;
  padding-bottom: 20px;
  margin-bottom: 24px;
}
.products-mega__heading > div > span {
  display: block;
  font-size: 11px;
  letter-spacing: 2.4px;
  color: #718c86;
}
.products-mega__heading h2 {
  font-size: 23px;
  font-weight: 500;
  margin: 5px 0 0;
  color: #183f45;
}
.site-header .products-mega__heading > a {
  font-size: 14px;
  color: #315f61;
  display: flex;
  gap: 15px;
}
.products-mega__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.9fr;
  gap: 30px;
}
.products-mega__grid h3 {
  font-size: 14px;
  margin: 0 0 15px;
  color: #70827e;
  font-weight: 400;
}
.products-mega__category-grid {
  display: grid;
  gap: 9px;
}
.site-header .products-mega__category {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px;
  border-radius: 12px;
  transition: background 0.2s;
}
.products-mega__category:hover {
  background: #f0f5f2;
}
.products-mega__thumb {
  display: grid;
  place-items: center;
  background: #f3f6f3;
  border-radius: 50%;
  width: 51px;
  height: 51px;
  flex-shrink: 0;
}
.products-mega__thumb img {
  width: 38px;
  height: 44px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.products-mega__category b {
  display: block;
  font-size: 15px;
  font-weight: 500;
}
.products-mega__category small {
  display: block;
  font-size: 12px;
  color: #82918a;
  margin-top: 4px;
}
.products-mega__arrow {
  margin-right: auto;
  color: #77958c;
}
.products-mega__brands {
  border-right: 1px solid #e8eeeb;
  padding-right: 25px;
}
.site-header .products-mega__brands > a {
  display: block;
  padding: 10px 0;
  color: #23484a;
  font-size: 14px;
}
.products-mega__brands small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.5px;
  color: #82918a;
  margin-top: 5px;
  text-align: right;
}
.site-header .products-mega__feature {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  border-radius: 15px;
  background: linear-gradient(155deg, #e3ede5, #bacec9);
  color: #224e4c;
  padding: 26px 20px;
  white-space: normal;
}
.products-mega__feature > span:first-child {
  font-size: 10px;
  letter-spacing: 2px;
}
.products-mega__feature b {
  font-size: 25px;
  font-weight: 400;
  line-height: 1.8;
}
.products-mega__feature > span:last-child {
  font-size: 12px;
}
.products-mega__feature i {
  font-style: normal;
  margin-right: 10px;
}
.products-mega :focus-visible {
  outline: 2px solid #377f7b;
  outline-offset: 4px;
  border-radius: 4px;
}
@media (max-width: 800px) {
  .site-header .nav > nav.open {
    max-height: none;
    overflow: visible;
  }
  .products-mega {
    width: 100%;
  }
  .products-mega > summary {
    padding: 10px;
    justify-content: space-between;
  }
  .products-mega__panel {
    position: static;
    transform: none;
    width: 100%;
    max-height: none;
    overflow: visible;
    padding: 14px;
    background: #f8faf8;
    box-shadow: none;
    border: 1px solid #e2e9e6;
    border-radius: 12px;
    margin: 3px 0 10px;
  }
  .products-mega__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 10px;
    margin-bottom: 16px;
  }
  .products-mega__heading h2 {
    font-size: 19px;
  }
  .products-mega__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .products-mega__brands {
    padding-right: 0;
    border: 0;
    border-top: 1px solid #e2e9e6;
    padding-top: 16px;
  }
  .site-header .products-mega__feature {
    min-height: 160px;
    padding: 20px;
  }
  .products-mega__feature b {
    font-size: 23px;
  }
  .products-mega__category-grid {
    grid-template-columns: 1fr;
  }
  .products-mega__grid h3 {
    margin-bottom: 7px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .products-mega * {
    transition: none !important;
  }
}
@media (max-width: 800px) {
  .site-header .nav > nav.open {
    justify-content: flex-start;
  }
  .site-header .nav > nav.open > * {
    flex-shrink: 0;
  }
}
