:root{
  --nutri-primary: #0b3557;
  --nutri-secondary: #007b9e;
  --nutri-nav-border: #dce7f0;
  --nutri-nav-bg: #ffffff;
  --nutri-nav-shadow: 0 10px 26px rgba(11,53,87,.08);
  --nutri-nav-shadow-soft: 0 14px 30px rgba(11,53,87,.12);
  --nutri-topbar-offset: 40px;
}

.site-header .inside-header{
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
  gap: 18px;
  position: relative;
  text-align: left;
}

.site-header .inside-header > .site-branding{
  flex: 0 0 auto;
  min-width: 0;
  margin-right: 0 !important;
  text-align: left !important;
}

.site-header .inside-header > .nutri-primary-nav-shell{
  flex: 1 1 auto;
  min-width: 0;
  margin-left: 0 !important;
}

.site-header .inside-header > *{
  float: none !important;
}

.nutri-primary-nav-shell{
  position: relative;
  z-index: 998;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}

.nutri-primary-nav{
  width: 100%;
  background: transparent;
}

.nutri-primary-nav__inner{
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.nutri-primary-nav__mobile-bar,
.nutri-primary-nav__mobile-actions{
  display: none;
}

.nutri-primary-nav__panel{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 18px;
  min-width: 0;
  min-height: 0;
}

.nutri-primary-nav__center{
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.nutri-primary-nav__priority{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow: visible;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.nutri-primary-nav__list,
.nutri-primary-nav__overflow-list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.nutri-primary-nav__list{
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 4px;
  min-width: 0;
  justify-content: center;
}

.nutri-primary-nav__overflow[hidden]{
  display: none !important;
}

.nutri-primary-nav__overflow{
  position: relative;
  flex: 0 0 auto;
}

.nutri-primary-nav__overflow-toggle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: #f6fafc;
  color: var(--nutri-primary);
  line-height: 1;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(11,53,87,.08);
  transition: background-color .22s ease, color .22s ease, box-shadow .22s ease, transform .18s ease;
}

.nutri-primary-nav__overflow-toggle:hover,
.nutri-primary-nav__overflow-toggle:focus,
.nutri-primary-nav__overflow-toggle:focus-visible,
.nutri-primary-nav__overflow-toggle:focus-within,
.nutri-primary-nav__overflow-toggle:active,
.nutri-primary-nav__overflow.is-open .nutri-primary-nav__overflow-toggle{
  background: #eef5fa !important;
  color: var(--nutri-primary) !important;
  outline: 0 !important;
  box-shadow: inset 0 0 0 1px rgba(0,123,158,.16), 0 8px 18px rgba(11,53,87,.08) !important;
}

.nutri-primary-nav__overflow-icon,
.nutri-primary-nav__overflow-chevron{
  display: inline-flex;
  width: 20px;
  height: 20px;
}

.nutri-primary-nav__overflow-icon svg,
.nutri-primary-nav__overflow-chevron svg{
  width: 20px;
  height: 20px;
}

.nutri-primary-nav__overflow-text,
.nutri-primary-nav__overflow-chevron{
  display: none;
}

.nutri-primary-nav__overflow.is-open .nutri-primary-nav__overflow-chevron{
  transform: rotate(180deg);
}

.nutri-primary-nav__overflow-panel{
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: max-content;
  min-width: 220px;
  max-width: min(360px, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid rgba(11,53,87,.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--nutri-nav-shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.nutri-primary-nav__overflow.is-open .nutri-primary-nav__overflow-panel{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nutri-primary-nav__overflow-list{
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: max-content;
  min-width: max-content;
  max-width: 100%;
}

.nutri-primary-nav__overflow-list > .nutri-primary-nav__item{
  width: max-content;
  min-width: 100%;
}

.nutri-primary-nav__overflow-list .nutri-primary-nav__item-row{
  justify-content: space-between;
}

.nutri-primary-nav__overflow-list .nutri-primary-nav__link{
  width: max-content;
  min-width: 100%;
  max-width: 310px;
  white-space: normal;
}

.nutri-primary-nav a,
.nutri-primary-nav button{
  -webkit-tap-highlight-color: transparent;
}

.nutri-primary-nav-shell a:focus,
.nutri-primary-nav-shell a:focus-visible,
.nutri-primary-nav-shell a:focus-within,
.nutri-primary-nav-shell a:active,
.nutri-primary-nav-shell button:focus,
.nutri-primary-nav-shell button:focus-visible,
.nutri-primary-nav-shell button:focus-within,
.nutri-primary-nav-shell button:active,
.nutri-primary-nav-shell input:focus,
.nutri-primary-nav-shell input:focus-visible,
.nutri-primary-nav-shell input:focus-within,
.nutri-primary-nav a:focus,
.nutri-primary-nav a:focus-visible,
.nutri-primary-nav a:focus-within,
.nutri-primary-nav a:active,
.nutri-primary-nav button:focus,
.nutri-primary-nav button:focus-visible,
.nutri-primary-nav button:focus-within,
.nutri-primary-nav button:active,
.nutri-primary-nav input:focus,
.nutri-primary-nav input:focus-visible,
.nutri-primary-nav input:focus-within,
.dgwt-wcas-suggestions-wrapp a:focus,
.dgwt-wcas-suggestions-wrapp a:focus-visible,
.dgwt-wcas-suggestions-wrapp button:focus,
.dgwt-wcas-suggestions-wrapp button:focus-visible,
.dgwt-wcas-details-wrapp a:focus,
.dgwt-wcas-details-wrapp a:focus-visible,
.dgwt-wcas-details-wrapp button:focus,
.dgwt-wcas-details-wrapp button:focus-visible,
.dgwt-wcas-details-wrapp input:focus,
.dgwt-wcas-details-wrapp input:focus-visible{
  outline: 0 !important;
  outline-offset: 0 !important;
  outline-color: transparent !important;
  outline-style: none !important;
  outline-width: 0 !important;
  -webkit-tap-highlight-color: transparent !important;
}

.nutri-primary-nav-shell button:focus:not(:hover):not(:focus-visible),
.nutri-primary-nav-shell a:focus:not(:hover):not(:focus-visible),
.nutri-primary-nav-shell input:focus:not(:focus-visible),
.dgwt-wcas-details-wrapp button:focus:not(:hover):not(:focus-visible),
.dgwt-wcas-details-wrapp a:focus:not(:hover):not(:focus-visible){
  box-shadow: inherit !important;
}

.nutri-primary-nav__item{
  position: relative;
  margin: 0;
}

.nutri-primary-nav__item-row{
  display: flex;
  align-items: center;
  gap: 4px;
}

.nutri-primary-nav__link{
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--nutri-primary);
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .22s ease, color .22s ease, box-shadow .22s ease, transform .18s ease;
}

.nutri-primary-nav__item:hover > .nutri-primary-nav__item-row .nutri-primary-nav__link,
.nutri-primary-nav__item:focus-within > .nutri-primary-nav__item-row .nutri-primary-nav__link,
.nutri-primary-nav__link:hover,
.nutri-primary-nav__link:focus,
.nutri-primary-nav__link:focus-visible,
.nutri-primary-nav__link:focus-within,
.nutri-primary-nav__link:active{
  background: #f3f8fb !important;
  color: var(--nutri-primary) !important;
  outline: 0 !important;
  box-shadow: inset 0 0 0 1px rgba(11,53,87,.08) !important;
  text-decoration: none !important;
}

.nutri-primary-nav__item.is-current > .nutri-primary-nav__item-row .nutri-primary-nav__link{
  background: rgba(0,123,158,.08);
  color: var(--nutri-primary);
  box-shadow: inset 0 0 0 1px rgba(0,123,158,.18);
}

.nutri-primary-nav__submenu-toggle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(11,53,87,.72);
  padding: 0;
  cursor: pointer;
  transition: background-color .22s ease, color .22s ease, box-shadow .22s ease;
}

.nutri-primary-nav__submenu-toggle:hover,
.nutri-primary-nav__submenu-toggle:focus,
.nutri-primary-nav__submenu-toggle:focus-visible,
.nutri-primary-nav__submenu-toggle:focus-within,
.nutri-primary-nav__submenu-toggle:active{
  background: rgba(11,53,87,.06) !important;
  color: var(--nutri-primary) !important;
  outline: 0 !important;
  box-shadow: inset 0 0 0 1px rgba(11,53,87,.08) !important;
}

.nutri-primary-nav__submenu-icon{
  width: 9px;
  height: 9px;
  display: inline-block;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform .22s ease;
}

.nutri-primary-nav__submenu{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: max-content;
  max-width: min(360px, calc(100vw - 32px));
  list-style: none;
  margin: 0;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(11,53,87,.08);
  border-radius: 16px;
  box-shadow: var(--nutri-nav-shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.nutri-primary-nav__submenu--nested{
  top: -10px;
  left: calc(100% + 8px);
}

.nutri-primary-nav__item:hover > .nutri-primary-nav__submenu,
.nutri-primary-nav__item:focus-within > .nutri-primary-nav__submenu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nutri-primary-nav__submenu .nutri-primary-nav__item-row{
  justify-content: space-between;
}

.nutri-primary-nav__submenu .nutri-primary-nav__link{
  width: max-content;
  min-width: 100%;
  max-width: 310px;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: .94rem;
  white-space: normal;
}

.nutri-primary-nav__submenu .nutri-primary-nav__item + .nutri-primary-nav__item{
  margin-top: 2px;
}

.nutri-primary-nav__extras{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
  flex: 0 0 auto;
}

.nutri-primary-nav__utilities{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
  min-width: max-content;
}

.nutri-primary-nav__utility{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: #f6fafc;
  color: var(--nutri-primary);
  text-decoration: none;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(11,53,87,.08);
  transition: background-color .22s ease, box-shadow .22s ease, transform .18s ease, color .22s ease;
}

.nutri-primary-nav__utility--pro{
  width: auto;
  flex: 0 0 auto;
  white-space: nowrap;
  gap: 8px;
  padding: 0 16px;
  height: 42px;
  border-radius: 999px;
  background: var(--nutri-primary);
  color: #fff !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 4px 12px rgba(11,53,87,.18);
  letter-spacing: .01em;
}

.nutri-primary-nav__utility.nutri-primary-nav__utility--pro:hover,
.nutri-primary-nav__utility.nutri-primary-nav__utility--pro:focus,
.nutri-primary-nav__utility.nutri-primary-nav__utility--pro:focus-visible,
.nutri-primary-nav__utility.nutri-primary-nav__utility--pro:focus-within,
.nutri-primary-nav__utility.nutri-primary-nav__utility--pro:active{
  background: var(--nutri-secondary) !important;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 6px 16px rgba(0,123,158,.28) !important;
  transform: translateY(-1px);
  outline: 0 !important;
}

.nutri-primary-nav__utility--pro .nutri-primary-nav__utility-text,
.nutri-primary-nav__utility--pro .nutri-primary-nav__utility-icon{
  color: #fff;
}

.nutri-primary-nav__utility-label{
  display: none;
}

.nutri-primary-nav__utility-icon,
.nutri-primary-nav__utility-icon svg{
  width: 20px;
  height: 20px;
  display: inline-flex;
}

.nutri-primary-nav__utility-icon--pro{
  position: relative;
  width: 24px;
  height: 24px;
  margin-right: 4px;
}

.nutri-primary-nav__utility-icon--pro svg{
  width: 24px;
  height: 24px;
}

.nutri-primary-nav__utility-icon--pro::after{
  content: "PRO";
  position: absolute;
  right: -12px;
  bottom: -3px;
  min-width: 22px;
  height: 12px;
  padding: 0 4px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--nutri-primary);
  font-size: 7px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .04em;
  box-shadow: 0 0 0 1px rgba(11,53,87,.14), 0 2px 6px rgba(11,53,87,.14);
}

.nutri-primary-nav__utility-text{
  font-size: .86rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.nutri-primary-nav__utility--pro .nutri-primary-nav__utility-text{
  padding-left: 2px;
}

.nutri-primary-nav__utility:hover,
.nutri-primary-nav__utility:focus,
.nutri-primary-nav__utility:focus-visible,
.nutri-primary-nav__utility:focus-within,
.nutri-primary-nav__utility:active{
  background: #eef5fa !important;
  color: var(--nutri-primary) !important;
  text-decoration: none !important;
  outline: 0 !important;
  box-shadow: inset 0 0 0 1px rgba(0,123,158,.16), 0 8px 18px rgba(11,53,87,.08) !important;
  transform: translateY(-1px);
}

.nutri-primary-nav__utility-badge{
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--nutri-primary);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  line-height: 20px;
  text-align: center;
  box-shadow: 0 6px 14px rgba(11,53,87,.16);
}

.nutri-primary-nav__search{
  position: relative;
}

.nutri-primary-nav__search-panel{
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(440px, calc(100vw - 32px));
  display: none;
  z-index: 30;
}

.nutri-primary-nav__search.is-open .nutri-primary-nav__search-panel{
  display: block;
}

.nutri-primary-nav__search-card{
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(11,53,87,.08);
  border-radius: 18px;
  box-shadow: var(--nutri-nav-shadow-soft);
}

.nutri-primary-nav__search-card .dgwt-wcas-search-wrapp{
  width: 100%;
}

.nutri-primary-nav__search-card .dgwt-wcas-search-form{
  background: #f8fbfd;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(11,53,87,.08);
  padding: 0;
  transition: box-shadow .2s ease, background-color .2s ease;
}

.nutri-primary-nav__search-card .dgwt-wcas-search-form:focus-within{
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0,123,158,.32), 0 6px 14px rgba(0,123,158,.08);
}

.nutri-primary-nav__search-card .dgwt-wcas-search-form,
.nutri-primary-nav__search-card .dgwt-wcas-sf-wrapp{
  position: relative;
}

.nutri-primary-nav__search-card .dgwt-wcas-search-input{
  height: 44px !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--nutri-primary) !important;
  font-size: .95rem !important;
  font-weight: 500;
  padding: 0 84px 0 18px !important;
  border-radius: 999px !important;
  box-shadow: none !important;
}

.nutri-primary-nav__search-card .dgwt-wcas-search-input::placeholder{
  color: rgba(11,53,87,.5);
  font-weight: 500;
}

.nutri-primary-nav__search-card .dgwt-wcas-search-submit,
.nutri-primary-nav__search-card .js-dgwt-wcas-search-submit{
  display: inline-flex !important;
  position: absolute !important;
  top: 50% !important;
  right: 4px !important;
  transform: translateY(-50%) !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: var(--nutri-primary) !important;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: none !important;
  transition: background-color .18s ease, color .18s ease;
}

.nutri-primary-nav__search-card .dgwt-wcas-search-submit:hover,
.nutri-primary-nav__search-card .js-dgwt-wcas-search-submit:hover{
  background: rgba(0,123,158,.12) !important;
  color: var(--nutri-secondary) !important;
}

.nutri-primary-nav__search-card .dgwt-wcas-search-submit svg,
.nutri-primary-nav__search-card .js-dgwt-wcas-search-submit svg{
  width: 18px !important;
  height: 18px !important;
  fill: currentColor !important;
}

.nutri-primary-nav__search-card .dgwt-wcas-search-icon,
.nutri-primary-nav__search-card .js-dgwt-wcas-search-icon,
.nutri-primary-nav__search-card .dgwt-wcas-ico-magnifier,
.nutri-primary-nav__search-card .dgwt-wcas-sf-wrapp > svg,
.nutri-primary-nav__search-card .dgwt-wcas-sf-wrapp > .dgwt-wcas-icon,
.nutri-primary-nav__search-card .dgwt-wcas-search-form > svg,
.nutri-primary-nav__search-card .dgwt-wcas-search-wrapp > svg,
.nutri-primary-nav__search-card [class*="dgwt-wcas-ico"],
.nutri-primary-nav__search-card [class*="search-icon"]{
  display: none !important;
}

.nutri-primary-nav__search-card .dgwt-wcas-search-form::before,
.nutri-primary-nav__search-card .dgwt-wcas-search-wrapp::before,
.nutri-primary-nav__search-card .dgwt-wcas-sf-wrapp::before{
  content: none !important;
  display: none !important;
  background: none !important;
}

.nutri-primary-nav__search-card .dgwt-wcas-close,
.nutri-primary-nav__search-card .js-dgwt-wcas-search-close,
.nutri-primary-nav__search-card .js-dgwt-wcas-sf-clear{
  position: absolute !important;
  top: 50% !important;
  right: 44px !important;
  transform: translateY(-50%) !important;
  width: 24px !important;
  height: 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(11,53,87,.08) !important;
  color: var(--nutri-primary) !important;
  font-size: 0 !important;
  line-height: 1 !important;
  cursor: pointer;
  opacity: 1;
  transition: background-color .18s ease, transform .18s ease;
}

.nutri-primary-nav__search-card .dgwt-wcas-close:hover,
.nutri-primary-nav__search-card .js-dgwt-wcas-search-close:hover,
.nutri-primary-nav__search-card .js-dgwt-wcas-sf-clear:hover{
  background: rgba(11,53,87,.14) !important;
  transform: translateY(-50%) scale(1.05);
}

.nutri-primary-nav__search-card .dgwt-wcas-close::before,
.nutri-primary-nav__search-card .dgwt-wcas-close::after,
.nutri-primary-nav__search-card .js-dgwt-wcas-search-close::before,
.nutri-primary-nav__search-card .js-dgwt-wcas-search-close::after,
.nutri-primary-nav__search-card .js-dgwt-wcas-sf-clear::before,
.nutri-primary-nav__search-card .js-dgwt-wcas-sf-clear::after{
  content: "";
  position: absolute;
  width: 11px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
}

.nutri-primary-nav__search-card .dgwt-wcas-close::before,
.nutri-primary-nav__search-card .js-dgwt-wcas-search-close::before,
.nutri-primary-nav__search-card .js-dgwt-wcas-sf-clear::before{
  transform: rotate(45deg);
}

.nutri-primary-nav__search-card .dgwt-wcas-close::after,
.nutri-primary-nav__search-card .js-dgwt-wcas-search-close::after,
.nutri-primary-nav__search-card .js-dgwt-wcas-sf-clear::after{
  transform: rotate(-45deg);
}

.nutri-primary-nav__search-card .dgwt-wcas-close svg,
.nutri-primary-nav__search-card .js-dgwt-wcas-search-close svg,
.nutri-primary-nav__search-card .js-dgwt-wcas-sf-clear svg{
  display: none !important;
}

.nutri-primary-nav__search-card .dgwt-wcas-preloader{
  position: absolute !important;
  top: 50% !important;
  right: 44px !important;
  transform: translateY(-50%) !important;
  width: 18px !important;
  height: 18px !important;
}

.dgwt-wcas-suggestions-wrapp{
  border: 1px solid rgba(11,53,87,.06) !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: 0 18px 40px rgba(11,53,87,.14) !important;
  margin-top: 8px !important;
  padding: 4px !important;
  max-height: calc(100vh - var(--nutri-topbar-offset, 40px) - 120px) !important;
  overflow-y: auto !important;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(11,53,87,.22) transparent;
}

.dgwt-wcas-suggestions-wrapp::-webkit-scrollbar{
  width: 8px;
}

.dgwt-wcas-suggestions-wrapp::-webkit-scrollbar-thumb{
  background: rgba(11,53,87,.18);
  border-radius: 999px;
}

.dgwt-wcas-suggestions-wrapp::-webkit-scrollbar-track{
  background: transparent;
}

.dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion{
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(11,53,87,.04);
  border-radius: 12px;
  transition: background-color .15s ease, transform .15s ease;
}

.dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion:last-child{
  border-bottom: 0;
}

.dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion:hover,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion.dgwt-wcas-suggestion-selected{
  background: linear-gradient(180deg, #f8fbfd 0%, #eef6fb 100%);
  border-bottom-color: transparent;
}

.dgwt-wcas-suggestions-wrapp .dgwt-wcas-si{
  width: 52px !important;
  min-width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbfd 0%, #f1f7fb 100%);
  box-shadow: inset 0 0 0 1px rgba(11,53,87,.05);
  overflow: hidden;
  padding: 4px;
}

.dgwt-wcas-suggestions-wrapp .dgwt-wcas-si img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st{
  flex: 1 1 auto;
  min-width: 0;
}

.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st-title,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st__title{
  color: var(--nutri-primary);
  font-weight: 700;
  font-size: .92rem;
  line-height: 1.35;
}

.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st-price,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st__price,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-price,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-sp,
.dgwt-wcas-suggestions-wrapp [class*="dgwt-wcas-"][class*="price"],
.dgwt-wcas-suggestion .price{
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--nutri-primary);
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.05;
  letter-spacing: -.2px;
  margin-top: 4px;
}

.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st-price *,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st__price *,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-price *,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-sp *,
.dgwt-wcas-suggestion .price *{
  font-size: inherit !important;
  line-height: inherit !important;
}

.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st-price del,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st__price del,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-price del,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-sp del,
.dgwt-wcas-suggestion .price del,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st-price del *,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-sp del *,
.dgwt-wcas-suggestion .price del *{
  font-size: .82rem !important;
  color: #98a1ad !important;
  text-decoration: line-through !important;
  opacity: .95;
  font-weight: 700 !important;
}

.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st-price ins,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st__price ins,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-price ins,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-sp ins,
.dgwt-wcas-suggestion .price ins,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st-price ins *,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-sp ins *,
.dgwt-wcas-suggestion .price ins *{
  font-size: inherit !important;
  color: var(--nutri-primary) !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  line-height: inherit !important;
  background: transparent !important;
}

.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st mark,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st__title mark{
  background: transparent;
  color: var(--nutri-secondary);
  font-weight: 800;
}

.dgwt-wcas-suggestions-wrapp del .woocommerce-Price-taxLabel,
.dgwt-wcas-suggestions-wrapp del .woocommerce-price-suffix,
.dgwt-wcas-suggestions-wrapp del small,
.dgwt-wcas-suggestions-wrapp del + .woocommerce-Price-taxLabel,
.dgwt-wcas-suggestions-wrapp del + .woocommerce-price-suffix,
.dgwt-wcas-suggestions-wrapp del + small,
.dgwt-wcas-suggestion del .woocommerce-Price-taxLabel,
.dgwt-wcas-suggestion del .woocommerce-price-suffix,
.dgwt-wcas-suggestion del small,
.dgwt-wcas-suggestion del + .woocommerce-Price-taxLabel,
.dgwt-wcas-suggestion del + .woocommerce-price-suffix,
.dgwt-wcas-suggestion del + small,
.dgwt-wcas-details-wrapp del .woocommerce-Price-taxLabel,
.dgwt-wcas-details-wrapp del .woocommerce-price-suffix,
.dgwt-wcas-details-wrapp del small,
.dgwt-wcas-details-wrapp del + .woocommerce-Price-taxLabel,
.dgwt-wcas-details-wrapp del + .woocommerce-price-suffix,
.dgwt-wcas-details-wrapp del + small{
  display: none !important;
}

.dgwt-wcas-suggestions-wrapp .woocommerce-Price-taxLabel,
.dgwt-wcas-suggestions-wrapp .woocommerce-price-suffix,
.dgwt-wcas-suggestion .woocommerce-Price-taxLabel,
.dgwt-wcas-suggestion .woocommerce-price-suffix,
.dgwt-wcas-details-wrapp .woocommerce-Price-taxLabel,
.dgwt-wcas-details-wrapp .woocommerce-price-suffix{
  display: inline !important;
  color: rgba(11,53,87,.5) !important;
  font-size: .62rem !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  margin-left: 4px !important;
  letter-spacing: 0 !important;
  text-transform: lowercase;
  vertical-align: baseline;
}

.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st__woo-product-headline,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion-headline{
  display: block;
  padding: 8px 12px 6px;
  color: rgba(11,53,87,.6);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 0;
  background: transparent;
  border-radius: 0;
}

.dgwt-wcas-details-wrapp{
  width: max-content !important;
  min-width: 340px !important;
  max-width: min(420px, calc(100vw - 48px)) !important;
  border: 1px solid rgba(11,53,87,.06) !important;
  border-radius: 20px !important;
  background: #fff !important;
  box-shadow: 0 22px 44px rgba(11,53,87,.14) !important;
  overflow: hidden;
}

.dgwt-wcas-details-wrapp .dgwt-wcas-product-details{
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.dgwt-wcas-details-wrapp .dgwt-wcas-details-main-image{
  border-radius: 16px;
  background: linear-gradient(180deg, #f7fbfd 0%, #eff6fa 100%);
  box-shadow: inset 0 0 0 1px rgba(11,53,87,.05);
  overflow: hidden;
  margin-bottom: 0;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.dgwt-wcas-details-wrapp .dgwt-wcas-details-main-image img{
  max-width: 100%;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.dgwt-wcas-details-wrapp .dgwt-wcas-details-title,
.dgwt-wcas-details-wrapp .dgwt-wcas-details-product-title{
  color: var(--nutri-primary);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  margin: 0;
}

.dgwt-wcas-details-wrapp .dgwt-wcas-details-title a,
.dgwt-wcas-details-wrapp .dgwt-wcas-details-product-title a{
  color: inherit;
  text-decoration: none;
}

.dgwt-wcas-details-wrapp .dgwt-wcas-details-desc{
  color: rgba(11,53,87,.7);
  font-size: .86rem;
  line-height: 1.5;
}

.dgwt-wcas-details-wrapp .dgwt-wcas-product-price,
.dgwt-wcas-details-wrapp .dgwt-wcas-details-price,
.dgwt-wcas-details-wrapp .price{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--nutri-primary);
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.2px;
  margin: 0;
}

.dgwt-wcas-details-wrapp .dgwt-wcas-product-price *,
.dgwt-wcas-details-wrapp .dgwt-wcas-details-price *,
.dgwt-wcas-details-wrapp .price *,
.dgwt-wcas-details-wrapp .price .amount,
.dgwt-wcas-details-wrapp .price bdi,
.dgwt-wcas-details-wrapp .price .woocommerce-Price-amount{
  font-size: inherit !important;
  line-height: inherit !important;
}

.dgwt-wcas-details-wrapp .dgwt-wcas-product-price del,
.dgwt-wcas-details-wrapp .dgwt-wcas-details-price del,
.dgwt-wcas-details-wrapp .price del,
.dgwt-wcas-details-wrapp .price del .amount,
.dgwt-wcas-details-wrapp .price del bdi,
.dgwt-wcas-details-wrapp .price del .woocommerce-Price-amount{
  font-size: .92rem !important;
  color: #98a1ad !important;
  text-decoration: line-through !important;
  opacity: .95;
  font-weight: 700 !important;
  margin-right: 0;
}

.dgwt-wcas-details-wrapp .dgwt-wcas-product-price ins,
.dgwt-wcas-details-wrapp .dgwt-wcas-details-price ins,
.dgwt-wcas-details-wrapp .price ins,
.dgwt-wcas-details-wrapp .price ins .amount,
.dgwt-wcas-details-wrapp .price ins bdi,
.dgwt-wcas-details-wrapp .price ins .woocommerce-Price-amount{
  font-size: inherit !important;
  color: var(--nutri-primary) !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  line-height: inherit !important;
}

.dgwt-wcas-details-wrapp .price del .woocommerce-Price-currencySymbol,
.dgwt-wcas-details-wrapp .price del .woocommerce-Price-amount .woocommerce-Price-currencySymbol{
  color: #98a1ad !important;
}

.dgwt-wcas-details-wrapp .dgwt-wcas-pd-addtc-form{
  display: flex;
  gap: 8px;
  align-items: stretch;
  flex-wrap: nowrap;
  margin-top: 6px;
}

.dgwt-wcas-details-wrapp .dgwt-wcas-pd-addtc-form .quantity{
  flex: 0 0 68px;
  min-width: 0;
}

.dgwt-wcas-details-wrapp .dgwt-wcas-pd-addtc-form .qty{
  width: 100%;
  height: 42px;
  border: 1px solid rgba(11,53,87,.1);
  border-radius: 12px;
  background: #f8fbfd;
  color: var(--nutri-primary);
  font-weight: 700;
  text-align: center;
  padding: 0 6px;
}

.dgwt-wcas-details-wrapp .dgwt-wcas-pd-addtc-form .button{
  flex: 1 1 auto;
  min-width: 0;
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: var(--nutri-primary);
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  line-height: 42px;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(11,53,87,.14);
  transition: background-color .18s ease, transform .18s ease;
}

.dgwt-wcas-details-wrapp .dgwt-wcas-pd-addtc-form .button:hover{
  background: var(--nutri-secondary);
  transform: translateY(-1px);
}

.dgwt-wcas-details-wrapp .dgwt-wcas-details-sku,
.dgwt-wcas-details-wrapp .dgwt-wcas-product-sku,
.dgwt-wcas-details-wrapp [class*="-sku"]{
  display: none !important;
}

.dgwt-wcas-details-wrapp .dgwt-wcas-details-readmore{
  color: var(--nutri-secondary);
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
}

.dgwt-wcas-details-wrapp a.added_to_cart,
.dgwt-wcas-details-wrapp .added_to_cart,
.dgwt-wcas-details-wrapp .added_to_cart.wc-forward,
.dgwt-wcas-details-wrapp .woocommerce-message,
.dgwt-wcas-details-wrapp .woocommerce-error,
.dgwt-wcas-details-wrapp .woocommerce-info,
.dgwt-wcas-suggestions-wrapp a.added_to_cart,
.dgwt-wcas-suggestions-wrapp .added_to_cart,
.dgwt-wcas-suggestions-wrapp .woocommerce-message,
.dgwt-wcas-search-wrapp a.added_to_cart,
.dgwt-wcas-search-wrapp .added_to_cart,
.nutri-primary-nav__search-card a.added_to_cart,
.nutri-primary-nav__search-card .added_to_cart,
.nutri-primary-nav__search-card .woocommerce-message,
.nutri-primary-nav__search-card .woocommerce-error{
  display: none !important;
}

.dgwt-wcas-details-wrapp .dgwt-wcas-details-readmore:hover{
  text-decoration: underline;
}

.xoo-wsc-basket{
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

.nutri-cart-toast{
  position: fixed;
  top: calc(var(--nutri-topbar-offset, 40px) + 88px);
  left: 50%;
  transform: translate(-50%, -10px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  min-width: 220px;
  max-width: calc(100vw - 32px);
  border-radius: 999px;
  background: var(--nutri-primary);
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  line-height: 1;
  box-shadow: 0 18px 40px rgba(11,53,87,.28), 0 0 0 1px rgba(255,255,255,.06) inset;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 10000050;
  transition: opacity .22s ease, transform .26s cubic-bezier(.22,.61,.36,1), visibility .22s ease, background-color .25s ease;
}

.nutri-cart-toast.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nutri-cart-toast.is-success{
  background: #1f8b5a;
}

.nutri-cart-toast__spinner{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  animation: nutri-cart-toast-spin .8s linear infinite;
  flex: 0 0 auto;
}

.nutri-cart-toast.is-success .nutri-cart-toast__spinner{
  border: 0;
  background: #fff;
  position: relative;
  animation: none;
}

.nutri-cart-toast.is-success .nutri-cart-toast__spinner::before{
  content: "";
  position: absolute;
  inset: 0;
  background: #1f8b5a;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 5.5 12.7l-1.4 1.4L9 19l11-11-1.4-1.4z'/></svg>") center/14px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 5.5 12.7l-1.4 1.4L9 19l11-11-1.4-1.4z'/></svg>") center/14px no-repeat;
}

.nutri-cart-toast__text{
  white-space: nowrap;
}

@keyframes nutri-cart-toast-spin{
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce){
  .nutri-cart-toast{ transition: opacity .15s ease, visibility .15s ease; transform: translate(-50%, 0) !important; }
  .nutri-cart-toast__spinner{ animation: none; }
}

.nutri-primary-nav__extras .menu-bar-item,
.nutri-primary-nav__extras .menu-bar-item > a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nutri-primary-nav__extras a{
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--nutri-primary);
  text-decoration: none;
  background: #f6fafc;
  box-shadow: inset 0 0 0 1px rgba(11,53,87,.08);
  transition: background-color .22s ease, box-shadow .22s ease, color .22s ease;
}

@media (min-width: 768px){
  .nutri-primary-nav__submenu-toggle{
    pointer-events: none;
  }
}

@media (max-width: 1340px){
  .site-header .inside-header{
    gap: 14px;
  }

  .nutri-primary-nav__panel{
    gap: 14px;
  }
}

@media (max-width: 1240px){
  .nutri-primary-nav__link{
    padding: 10px 10px;
    font-size: .92rem;
  }

  .nutri-primary-nav__list{
    gap: 2px;
  }

  .nutri-primary-nav__utilities{
    gap: 8px;
  }

  .nutri-primary-nav__utility--pro{
    padding: 0 12px;
  }

  .nutri-primary-nav__overflow-toggle{
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
  }
}

@media (max-width: 1140px){
  .nutri-primary-nav__link{
    padding: 9px 8px;
    font-size: .88rem;
  }

  .nutri-primary-nav__panel{
    gap: 10px;
  }

  .nutri-primary-nav__utilities{
    gap: 6px;
  }

  .nutri-primary-nav__utility--pro{
    padding: 0 10px;
    gap: 6px;
  }

  .nutri-primary-nav__utility--pro .nutri-primary-nav__utility-text{
    font-size: .82rem;
  }

  .nutri-primary-nav__overflow-toggle{
    padding: 9px 10px;
    font-size: .86rem;
  }
}

@media (max-width: 1024px){
  .nutri-primary-nav__utility--pro .nutri-primary-nav__utility-text{
    display: none;
  }

  .nutri-primary-nav__utility--pro{
    width: 44px;
    padding: 0;
    gap: 0;
    border-radius: 14px;
    justify-content: center;
  }

  .nutri-primary-nav__utility-icon--pro,
  .nutri-primary-nav__utility-icon--pro svg{
    width: 20px;
    height: 20px;
  }

  .nutri-primary-nav__utility-icon--pro::after{
    right: -9px;
    bottom: -3px;
    min-width: 21px;
    height: 11px;
    font-size: 6.5px;
  }

  .nutri-primary-nav__overflow-text{
    display: none;
  }

  .nutri-primary-nav__overflow-toggle{
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }
}

@media (max-width: 880px){
  .nutri-primary-nav__link{
    padding: 8px 6px;
    font-size: .85rem;
  }

  .nutri-primary-nav__list{
    gap: 0;
  }

  .nutri-primary-nav__panel{
    gap: 8px;
  }

  .nutri-primary-nav__utilities{
    gap: 4px;
  }
}

@media (max-width: 1200px){
  .dgwt-wcas-details-wrapp{
    display: none !important;
  }
}

@keyframes nutri-nav-item-in{
  from{
    opacity: 0;
    transform: translateX(18px);
  }
  to{
    opacity: 1;
    transform: translateX(0);
  }
}

body.nutri-primary-nav-compact{
  .site-header .inside-header{
    flex-wrap: nowrap;
  }

  &.nutri-primary-nav-open{
    overflow: hidden;
  }

  .nutri-primary-nav-shell{
    flex: 0 0 auto;
    width: auto;
    min-width: auto;
    justify-content: flex-end;
    margin-left: auto;
    position: static;
  }

  .nutri-primary-nav-shell{
    z-index: 9999998;
  }

  .nutri-primary-nav-shell::before{
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(8, 26, 41, .42);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .24s ease, visibility .24s ease;
    pointer-events: none;
    z-index: 9999998;
  }

  &.nutri-primary-nav-open .nutri-wa-float,
  &.nutri-primary-nav-open .nutri-sticky-atc{
    visibility: hidden;
    pointer-events: none;
  }

  &.nutri-primary-nav-open .site-header{
    position: relative;
    z-index: 9999999;
  }

  .nutri-primary-nav-shell.is-open::before{
    opacity: 1;
    visibility: visible;
  }

  .nutri-primary-nav__inner{
    width: auto;
    margin-left: auto;
  }

  .nutri-primary-nav__mobile-bar{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 48px;
    gap: 10px;
    margin-left: auto;
  }

  .nutri-primary-nav__mobile-actions{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
  }

  .nutri-primary-nav__mobile-actions .nutri-primary-nav__search-panel{
    position: fixed;
    top: calc(var(--nutri-topbar-offset) + 72px);
    right: 16px;
    left: 16px;
    width: auto;
    max-width: 420px;
    margin-left: auto;
    z-index: 1002;
  }

  .nutri-primary-nav__mobile-label{
    display: none;
  }

  .nutri-primary-nav__toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: #f3f8fb;
    color: var(--nutri-primary);
    cursor: pointer;
    box-shadow: inset 0 0 0 1px rgba(11,53,87,.08);
    position: relative;
    z-index: 10000001;
    transition: background-color .22s ease, box-shadow .22s ease, color .22s ease, transform .18s ease;
  }

  .nutri-primary-nav-shell.is-open .nutri-primary-nav__toggle{
    position: fixed;
    top: calc(var(--nutri-topbar-offset) + 10px);
    right: 12px;
    background: var(--nutri-primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(11,53,87,.28);
  }

  .nutri-primary-nav__toggle-box{
    width: 18px;
    height: 14px;
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .nutri-primary-nav__toggle-box span{
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .22s ease, opacity .22s ease;
  }

  .nutri-primary-nav-shell.is-open .nutri-primary-nav__toggle-box span:nth-child(1){
    transform: translateY(6px) rotate(45deg);
  }

  .nutri-primary-nav-shell.is-open .nutri-primary-nav__toggle-box span:nth-child(2){
    opacity: 0;
  }

  .nutri-primary-nav-shell.is-open .nutri-primary-nav__toggle-box span:nth-child(3){
    transform: translateY(-6px) rotate(-45deg);
  }

  .nutri-primary-nav__panel{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    position: fixed;
    top: var(--nutri-topbar-offset);
    right: 0;
    bottom: 0;
    width: fit-content;
    min-width: 280px;
    max-width: min(340px, calc(100vw - 10px));
    padding: 60px 18px max(18px, env(safe-area-inset-bottom));
    background: linear-gradient(180deg, #ffffff 0%, #f9fcfe 100%);
    border-left: 1px solid rgba(11,53,87,.08);
    border-radius: 24px 0 0 24px;
    box-shadow: -24px 0 48px rgba(11,53,87,.16);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(104%);
    transition: transform .28s ease, opacity .24s ease, visibility .24s ease;
    z-index: 10000000;
  }

  .nutri-primary-nav-shell.is-open .nutri-primary-nav__panel{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .nutri-primary-nav__list > .nutri-primary-nav__item,
  .nutri-primary-nav__utilities > *,
  .nutri-primary-nav__extras > *{
    opacity: 0;
  }

  .nutri-primary-nav-shell.is-open .nutri-primary-nav__list > .nutri-primary-nav__item,
  .nutri-primary-nav-shell.is-open .nutri-primary-nav__utilities > *,
  .nutri-primary-nav-shell.is-open .nutri-primary-nav__extras > *{
    animation: nutri-nav-item-in .34s cubic-bezier(.22,.61,.36,1) both;
  }

  .nutri-primary-nav-shell.is-open .nutri-primary-nav__list > .nutri-primary-nav__item:nth-child(1){ animation-delay: .08s; }
  .nutri-primary-nav-shell.is-open .nutri-primary-nav__list > .nutri-primary-nav__item:nth-child(2){ animation-delay: .12s; }
  .nutri-primary-nav-shell.is-open .nutri-primary-nav__list > .nutri-primary-nav__item:nth-child(3){ animation-delay: .16s; }
  .nutri-primary-nav-shell.is-open .nutri-primary-nav__list > .nutri-primary-nav__item:nth-child(4){ animation-delay: .20s; }
  .nutri-primary-nav-shell.is-open .nutri-primary-nav__list > .nutri-primary-nav__item:nth-child(5){ animation-delay: .24s; }
  .nutri-primary-nav-shell.is-open .nutri-primary-nav__list > .nutri-primary-nav__item:nth-child(6){ animation-delay: .28s; }
  .nutri-primary-nav-shell.is-open .nutri-primary-nav__list > .nutri-primary-nav__item:nth-child(7){ animation-delay: .32s; }
  .nutri-primary-nav-shell.is-open .nutri-primary-nav__list > .nutri-primary-nav__item:nth-child(8){ animation-delay: .36s; }
  .nutri-primary-nav-shell.is-open .nutri-primary-nav__list > .nutri-primary-nav__item:nth-child(9){ animation-delay: .40s; }
  .nutri-primary-nav-shell.is-open .nutri-primary-nav__list > .nutri-primary-nav__item:nth-child(n+10){ animation-delay: .44s; }

  .nutri-primary-nav-shell.is-open .nutri-primary-nav__utilities > *:nth-child(1){ animation-delay: .46s; }
  .nutri-primary-nav-shell.is-open .nutri-primary-nav__utilities > *:nth-child(2){ animation-delay: .50s; }
  .nutri-primary-nav-shell.is-open .nutri-primary-nav__extras > *{ animation-delay: .54s; }

  @media (prefers-reduced-motion: reduce){
    .nutri-primary-nav__list > .nutri-primary-nav__item,
    .nutri-primary-nav__utilities > *,
    .nutri-primary-nav__extras > *{
      opacity: 1;
    }

    .nutri-primary-nav-shell.is-open .nutri-primary-nav__list > .nutri-primary-nav__item,
    .nutri-primary-nav-shell.is-open .nutri-primary-nav__utilities > *,
    .nutri-primary-nav-shell.is-open .nutri-primary-nav__extras > *{
      animation: none;
    }
  }

  .nutri-primary-nav__center,
  .nutri-primary-nav__priority{
    display: block;
    flex: 0 0 auto;
    width: max-content;
    min-width: 100%;
    max-width: 100%;
  }

  .nutri-primary-nav__list{
    display: block;
    width: max-content;
    min-width: 100%;
    max-width: 100%;
    padding: 6px 0 0;
  }

  .nutri-primary-nav__overflow{
    display: none !important;
  }

  .nutri-primary-nav__utilities{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 0;
    min-width: 0;
    position: relative;
  }

  .nutri-primary-nav__utilities::before{
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    border-radius: 999px;
    background: rgba(11,53,87,.14);
    margin: 0 auto 4px;
  }

  .nutri-primary-nav__utility{
    width: 100%;
  }

  .nutri-primary-nav__utility--pro{
    width: 100%;
    height: 48px;
    padding: 0 14px;
    gap: 10px;
    justify-content: flex-start;
    border-radius: 14px;
  }

  .nutri-primary-nav__utility--pro .nutri-primary-nav__utility-text{
    display: inline;
    font-size: .92rem;
  }

  .nutri-primary-nav__utility-icon--pro,
  .nutri-primary-nav__utility-icon--pro svg{
    width: 24px;
    height: 24px;
  }

  .nutri-primary-nav__utility-icon--pro::after{
    right: -12px;
    bottom: -3px;
    min-width: 22px;
    height: 12px;
    font-size: 7px;
  }

  .nutri-primary-nav__toggle:hover,
  .nutri-primary-nav__toggle:focus,
  .nutri-primary-nav__toggle:focus-visible,
  .nutri-primary-nav__toggle:focus-within,
  .nutri-primary-nav__toggle:active{
    outline: 0 !important;
    background: #eef5fa !important;
    color: var(--nutri-primary) !important;
    box-shadow: inset 0 0 0 1px rgba(0,123,158,.16) !important;
  }

  .nutri-primary-nav-shell.is-open .nutri-primary-nav__toggle:hover,
  .nutri-primary-nav-shell.is-open .nutri-primary-nav__toggle:focus,
  .nutri-primary-nav-shell.is-open .nutri-primary-nav__toggle:focus-visible,
  .nutri-primary-nav-shell.is-open .nutri-primary-nav__toggle:focus-within,
  .nutri-primary-nav-shell.is-open .nutri-primary-nav__toggle:active{
    outline: 0 !important;
    background: var(--nutri-primary) !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(11,53,87,.28) !important;
  }

  .nutri-primary-nav__utility--account{
    justify-content: flex-start;
    gap: 10px;
    padding: 0 14px;
    height: 48px;
    width: 100%;
    border-radius: 14px;
  }

  .nutri-primary-nav__utility--account .nutri-primary-nav__utility-icon,
  .nutri-primary-nav__utility--account .nutri-primary-nav__utility-icon svg{
    width: 24px;
    height: 24px;
  }

  .nutri-primary-nav__utility--account .nutri-primary-nav__utility-label{
    display: inline;
    font-size: .94rem;
    font-weight: 700;
    color: var(--nutri-primary);
  }

  .nutri-primary-nav__mobile-actions .nutri-primary-nav__utility{
    width: 44px;
  }

  .nutri-primary-nav__panel .nutri-primary-nav__utility--search,
  .nutri-primary-nav__panel .nutri-primary-nav__utility--cart,
  .nutri-primary-nav__panel .nutri-primary-nav__search{
    display: none;
  }

  .nutri-primary-nav__extras{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 0;
    padding-top: 14px;
    border-top: 0;
    position: relative;
  }

  .nutri-primary-nav__extras::before{
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    border-radius: 999px;
    background: rgba(11,53,87,.14);
    margin: 0 auto 4px;
    flex: 1 0 100%;
  }

  .nutri-primary-nav__item{
    border-bottom: 1px solid rgba(11,53,87,.05);
  }

  .nutri-primary-nav__list > .nutri-primary-nav__item:last-child{
    border-bottom: 0;
  }

  .nutri-primary-nav__item-row{
    gap: 8px;
  }

  .nutri-primary-nav__link{
    flex: 1 1 auto;
    min-height: 54px;
    padding: 15px 0;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
    max-width: 280px;
    white-space: normal;
  }

  .nutri-primary-nav__submenu-toggle{
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    margin-right: -4px;
    border-radius: 12px;
    background: #f6fafc;
    box-shadow: inset 0 0 0 1px rgba(11,53,87,.07);
    pointer-events: auto;
  }

  .nutri-primary-nav__item.is-submenu-open > .nutri-primary-nav__item-row .nutri-primary-nav__submenu-icon{
    transform: rotate(-135deg) translate(-1px, 0);
  }

  .nutri-primary-nav__submenu{
    position: static;
    min-width: 0;
    max-width: 100%;
    margin: 0 0 14px 14px;
    padding: 6px 0 0 14px;
    border: 0;
    border-left: 1px solid rgba(11,53,87,.09);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .nutri-primary-nav__item.is-submenu-open > .nutri-primary-nav__submenu{
    display: block;
  }

  .nutri-primary-nav__submenu .nutri-primary-nav__item{
    border-bottom: 0;
  }

  .nutri-primary-nav__submenu .nutri-primary-nav__link{
    min-height: 46px;
    padding: 11px 0;
    font-size: .93rem;
    max-width: 250px;
  }
}

@media (max-width: 479px){
  .nutri-primary-nav__mobile-actions{
    gap: 8px;
  }

  .nutri-primary-nav__mobile-actions .nutri-primary-nav__utility,
  .nutri-primary-nav__toggle{
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .nutri-primary-nav__panel{
    min-width: 238px;
    max-width: min(330px, calc(100vw - 10px));
    padding-left: 16px;
    padding-right: 16px;
  }

  .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion{
    min-height: 72px;
    padding: 12px 14px;
    gap: 12px;
  }

  .dgwt-wcas-suggestions-wrapp .dgwt-wcas-si{
    width: 56px !important;
    min-width: 56px;
    height: 56px;
  }
}
