.clyro-megamenu-widget {
  --clyro-menu-ink: #111417;
  --clyro-menu-muted: #8A9096;
  --clyro-menu-line: #e6eaf0;
  --clyro-menu-soft: #f6f8fb;
  display: block;
  width: 100%;
}

.clyro-megamenu {
  display: block;
  position: static;
}

.clyro-megamenu__items {
  align-items: center;
  display: flex;
  gap: clamp(12px, 1.5vw, 27px);
  justify-content: center;
}

.clyro-megamenu__item {
  align-items: center;
  display: flex;
  height: 50px;
}

.clyro-megamenu__trigger-wrap {
  align-items: center;
  display: flex;
  white-space: nowrap;
}

.clyro-megamenu__trigger {
  color: var(--clyro-menu-ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1;
  text-decoration: none;
  transition: color .18s ease;
}

.clyro-megamenu__trigger:hover,
.clyro-megamenu__trigger:focus-visible,
.clyro-megamenu__item.is-open .clyro-megamenu__trigger {
  color: #111417;
  text-decoration: none;
}

.clyro-megamenu__trigger-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: #8A9096;
  display: inline-flex;
  font-size: 16px;
  height: 28px;
  justify-content: center;
  margin-left: 2px;
  padding: 0;
  transition: color .18s ease, transform .18s ease;
  width: 20px;
}

.clyro-megamenu__item.is-open .clyro-megamenu__trigger-button {
  color: #111417;
  transform: rotate(180deg);
}

.clyro-megamenu__trigger-button:focus-visible,
.clyro-megamenu__sidebar-link:focus-visible,
.clyro-megamenu__tile:focus-visible,
.clyro-megamenu__brand:focus-visible,
.clyro-megamenu__featured-card:focus-visible {
  outline: 3px solid rgba(199, 255, 46, .6);
  outline-offset: 3px;
}

.clyro-megamenu__panel {
  background: #fff;
  border-top: 1px solid var(--clyro-menu-line);
  box-shadow: 0 22px 45px rgba(22, 39, 64, .14);
  box-sizing: border-box;
  left: 0;
  max-width: 100%;
  max-height: calc(100vh - 150px);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: auto;
  top: 100%;
  transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  visibility: hidden;
  width: 100%;
  z-index: 20;
}

.clyro-megamenu__item.is-open .clyro-megamenu__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.clyro-megamenu__panel-inner {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 190px;
  grid-template-rows: minmax(0, 1fr);
  height: calc(100vh - 150px);
  margin-left: auto;
  margin-right: auto;
  margin: 0 auto;
  max-width: calc(1360px - 32px);
  max-height: calc(100vh - 150px);
  min-height: min(390px, calc(100vh - 150px));
  overflow: hidden;
  width: calc(100% - 32px);
}

.clyro-megamenu__sidebar {
  background: #f5f7fa;
  border-right: 1px solid var(--clyro-menu-line);
  display: flex;
  flex-direction: column;
  gap: 3px;
  height: 100%;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 22px 12px 18px;
  scrollbar-gutter: stable;
}

.clyro-megamenu__sidebar-label,
.clyro-megamenu__kicker,
.clyro-megamenu__featured-label {
  color: #8A9096;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .105em;
  line-height: 1.3;
  text-transform: uppercase;
}

.clyro-megamenu__sidebar-label {
  padding: 0 10px 11px;
}

.clyro-megamenu__sidebar-link {
  border-left: 2px solid transparent;
  color: var(--clyro-menu-ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  padding: 10px 10px 10px 12px;
  text-decoration: none;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

.clyro-megamenu__sidebar-link:hover,
.clyro-megamenu__sidebar-link.is-active {
  background: #fff;
  border-left-color: #C7FF2E;
  color: #111417;
  font-weight: 800;
  text-decoration: none;
}

.clyro-megamenu__sidebar-all {
  border-top: 1px solid #dfe5ec;
  color: #111417;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  margin-top: auto;
  padding: 17px 10px 2px;
  text-decoration: none;
}

.clyro-megamenu__sidebar-all:hover {
  color: #000000;
  text-decoration: underline;
  text-decoration-color: #C7FF2E;
}

.clyro-megamenu__content {
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  padding: 24px 26px 25px;
}

.clyro-megamenu__category-panel,
.clyro-megamenu__featured-panel {
  display: none;
}

.clyro-megamenu__category-panel.is-active,
.clyro-megamenu__featured-panel.is-active {
  display: block;
}

.clyro-megamenu__content-heading {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 21px;
}

.clyro-megamenu__content-heading h2 {
  color: var(--clyro-menu-ink);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.1;
  margin: 4px 0 0;
}

.clyro-megamenu__content-heading > a {
  color: #111417;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.clyro-megamenu__content-heading > a:hover,
.clyro-megamenu__content-heading > a:focus-visible {
  color: #000000;
  text-decoration: underline;
  text-decoration-color: #C7FF2E;
  text-underline-offset: 3px;
}

.clyro-megamenu__tile-grid {
  align-content: start;
  display: grid;
  gap: 11px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-height: none;
  overflow: visible;
  padding: 1px 4px 5px 1px;
}

.clyro-megamenu__tile-grid--single {
  grid-template-columns: minmax(0, 170px);
}

.clyro-megamenu__tile {
  color: var(--clyro-menu-ink);
  display: block;
  min-width: 0;
  text-decoration: none;
}

.clyro-megamenu__tile-image {
  align-items: center;
  background: #fff;
  border: 1px solid #edf0f4;
  display: flex;
  height: 88px;
  justify-content: center;
  overflow: hidden;
  transition: border-color .18s ease, transform .18s ease, background-color .18s ease;
}

.clyro-megamenu__tile img {
  height: 100%;
  object-fit: contain;
  padding: 11px;
  width: 100%;
}

.clyro-megamenu__tile-name {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.28;
  margin-top: 9px;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clyro-megamenu__tile:hover,
.clyro-megamenu__tile:focus-visible {
  color: #111417;
  text-decoration: none;
}

.clyro-megamenu__tile:hover .clyro-megamenu__tile-image,
.clyro-megamenu__tile:focus-visible .clyro-megamenu__tile-image {
  background: #fff;
  border-color: #C7FF2E;
  transform: translateY(-2px);
}

.clyro-megamenu__featured {
  background: #fff;
  border-left: 1px solid var(--clyro-menu-line);
  height: 100%;
  min-height: 0;
  overflow-y: auto;
  padding: 25px 18px 20px;
}

.clyro-megamenu__featured-category {
  color: var(--clyro-menu-ink);
  display: block;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  margin: 5px 0 13px;
}

.clyro-megamenu__featured-card {
  color: var(--clyro-menu-ink);
  display: block;
  text-decoration: none;
}

.clyro-megamenu__featured-image {
  align-items: center;
  background: #fff;
  border: 1px solid #edf0f4;
  display: flex;
  height: 168px;
  justify-content: center;
  margin-bottom: 13px;
  overflow: hidden;
}

.clyro-megamenu__featured-image img {
  height: 100%;
  object-fit: contain;
  padding: 12px;
  width: 100%;
}

.clyro-megamenu__featured-name {
  display: -webkit-box;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.clyro-megamenu__featured-price {
  color: var(--clyro-menu-ink);
  display: block;
  font-size: 16px;
  margin-top: 11px;
}

.clyro-megamenu__featured-card:hover .clyro-megamenu__featured-image,
.clyro-megamenu__featured-card:focus-visible .clyro-megamenu__featured-image {
  border-color: #C7FF2E;
}

.clyro-megamenu__featured-link,
.clyro-megamenu__empty {
  color: #111417;
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-top: 18px;
  text-decoration: none;
}

.clyro-megamenu__featured-link:hover {
  color: #000000;
  text-decoration: underline;
  text-decoration-color: #C7FF2E;
}

.clyro-megamenu__empty {
  color: var(--clyro-menu-muted);
  font-weight: 600;
}

.clyro-megamenu__brands-inner {
  margin: 0 auto;
  max-height: min(510px, calc(100vh - 150px));
  max-width: 1120px;
  overflow-y: auto;
  padding: 27px 30px 30px;
}

.clyro-megamenu__brand-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.clyro-megamenu__brand {
  align-items: center;
  background: #fff;
  border: 1px solid #edf0f4;
  display: flex;
  height: 94px;
  justify-content: center;
  padding: 14px 16px;
  text-align: center;
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.clyro-megamenu__brand:hover,
.clyro-megamenu__brand:focus-visible {
  border-color: #C7FF2E;
  box-shadow: 0 8px 20px rgba(17, 20, 23, .08);
  transform: translateY(-2px);
}

.clyro-megamenu__brand-logo {
  align-items: center;
  color: var(--clyro-menu-ink);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: center;
  max-height: 58px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  user-select: none;
  white-space: nowrap;
}

.clyro-megamenu__brand-logo > span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clyro-megamenu__brand-logo img {
  display: block;
  max-height: 58px;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 1199.98px) {
  .clyro-megamenu-widget {
    display: none;
  }
}

@media (min-width: 1200px) {
  .clyro-menu-col .clyro-native-menu-fallback {
    display: none !important;
  }
}

@media (max-width: 1350px) and (min-width: 1200px) {
  .clyro-megamenu__items { gap: 10px; }
  .clyro-megamenu__trigger { font-size: 12px; }
  .clyro-megamenu__panel-inner { grid-template-columns: 175px minmax(0, 1fr) 175px; }
  .clyro-megamenu__content { padding-left: 17px; padding-right: 17px; }
  .clyro-megamenu__featured { padding-left: 14px; padding-right: 14px; }
  .clyro-megamenu__tile-grid { gap: 8px; }
  .clyro-megamenu__tile-image { height: 78px; }
}
