.wns-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  font-family: inherit;
  color: var(--wns-mobile-nav-text, #152833);
}

.wns-mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(201, 33, 39, 0.24), transparent 32%),
    rgba(7, 13, 19, 0.58);
  opacity: 0;
  transition: opacity 260ms ease;
  backdrop-filter: blur(12px);
}

.wns-mobile-nav__dialog {
  position: absolute;
  inset:
    calc(8px + env(safe-area-inset-top, 0px))
    calc(8px + env(safe-area-inset-right, 0px))
    calc(8px + env(safe-area-inset-bottom, 0px))
    calc(8px + env(safe-area-inset-left, 0px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(24, 53, 67, 0.98) 0, rgba(14, 33, 43, 0.98) 104px, var(--wns-mobile-nav-surface, #f6f2ed) 104px, var(--wns-mobile-nav-surface, #f6f2ed) 100%);
  box-shadow:
    0 28px 60px rgba(7, 10, 15, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(28px) scale(0.985);
  opacity: 0;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
}

.wns-mobile-nav__dialog::before {
  content: "";
  position: absolute;
  inset: -40px auto auto -32px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 100, 88, 0.46) 0, rgba(235, 100, 88, 0) 72%);
  pointer-events: none;
}

.wns-mobile-nav__dialog::after {
  content: "";
  position: absolute;
  inset: 36px -60px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0) 72%);
  pointer-events: none;
}

.wns-mobile-nav__hero {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  padding: 16px 18px 8px;
  background: linear-gradient(135deg, var(--asa-accent, var(--wns-mobile-nav-accent, #c92127)) 0%, #b3242b 48%, #86181c 100%);
  color: #fff;
}

.wns-mobile-nav__hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wns-mobile-nav__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wns-mobile-nav__title {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.wns-mobile-nav__subtitle {
  max-width: 32ch;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.55;
}

.wns-mobile-nav__close {
  position: relative;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.wns-mobile-nav__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transform-origin: center;
}

.wns-mobile-nav__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.wns-mobile-nav__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.wns-mobile-nav__search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.wns-mobile-nav__search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 22px rgba(5, 12, 18, 0.14);
}

.wns-mobile-nav__search-field i {
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
}

.wns-mobile-nav__search-field input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 14px;
}

.wns-mobile-nav__search-field input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.wns-mobile-nav__search-field input:focus {
  outline: none;
}

.wns-mobile-nav__search-submit {
  flex: 0 0 auto;
  min-height: 56px;
  padding: 0 18px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--wns-mobile-nav-accent, #c92127), var(--wns-mobile-nav-accent-soft, #eb6458));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 16px 30px rgba(201, 33, 39, 0.26);
}

.wns-mobile-nav__quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.wns-mobile-nav__quick-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 14px;
  border-radius: 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.wns-mobile-nav__quick-link i {
  font-size: 15px;
}

.wns-mobile-nav__quick-link--accent {
  background: linear-gradient(135deg, rgba(201, 33, 39, 0.95), rgba(235, 100, 88, 0.92));
  box-shadow: 0 14px 28px rgba(201, 33, 39, 0.22);
}

.wns-mobile-nav__quick-link--light {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.wns-mobile-nav__quick-link--dark {
  background: rgba(7, 14, 19, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.wns-mobile-nav__support {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.wns-mobile-nav__body {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  padding: 0 18px calc(8px + env(safe-area-inset-bottom, 0px));
  background: var(--wns-mobile-nav-surface, #f6f2ed);
}

.wns-mobile-nav__section-head {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 12px 0 14px;
  background: linear-gradient(180deg, var(--wns-mobile-nav-surface, #f6f2ed) 0, rgba(246, 242, 237, 0.98) 78%, rgba(246, 242, 237, 0) 100%);
}

.wns-mobile-nav__section-title {
  color: var(--wns-mobile-nav-text, #152833);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wns-mobile-nav__section-note {
  margin-top: 8px;
  color: rgba(21, 40, 51, 0.7);
  font-size: 13px;
  line-height: 1.5;
}

.wns-mobile-nav__tree {
  min-height: 0;
  overflow: visible;
  padding-top: 18px;
  padding-bottom: 14px;
}

.wns-mobile-nav__loading {
  display: grid;
  gap: 12px;
}

.wns-mobile-nav__loading-row {
  height: 72px;
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(21, 40, 51, 0.06), rgba(21, 40, 51, 0.12), rgba(21, 40, 51, 0.06));
  background-size: 220% 100%;
  animation: wnsMobileNavShimmer 1.6s linear infinite;
}

.wns-mobile-nav__loading-text,
.wns-mobile-nav__fallback {
  color: rgba(21, 40, 51, 0.66);
  font-size: 13px;
  line-height: 1.5;
}

.wns-mobile-nav__groups {
  display: grid;
  gap: 10px;
}

.wns-mobile-nav__group {
  overflow: hidden;
  border-radius: 20px;
  background: var(--wns-mobile-nav-surface-alt, #fffdf9);
  box-shadow:
    0 14px 34px rgba(16, 27, 34, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.wns-mobile-nav__group:first-child {
  margin-top: 8px;
}

.wns-mobile-nav__group-link,
.wns-mobile-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 62px;
  padding: 12px 14px 12px 16px;
  border: 0;
  background: transparent;
  color: var(--wns-mobile-nav-text, #152833);
  text-decoration: none;
  text-align: left;
}

.wns-mobile-nav__group-title-wrap {
  display: grid;
  gap: 0;
}

.wns-mobile-nav__group-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.wns-mobile-nav__group-badge {
  color: rgba(21, 40, 51, 0.58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wns-mobile-nav__chevron {
  position: relative;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(24, 53, 67, 0.08);
}

.wns-mobile-nav__chevron::before,
.wns-mobile-nav__chevron::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--wns-mobile-nav-navy, #183543);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, opacity 220ms ease;
}

.wns-mobile-nav__chevron::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.wns-mobile-nav__toggle[aria-expanded="true"] .wns-mobile-nav__chevron::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.5);
}

.wns-mobile-nav__panel {
  padding: 0 14px 14px;
}

.wns-mobile-nav__browse-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(201, 33, 39, 0.08);
  color: var(--wns-mobile-nav-accent, #c92127);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.wns-mobile-nav__subgroups,
.wns-mobile-nav__link-grid {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.wns-mobile-nav__subgroup {
  padding: 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(24, 53, 67, 0.04), rgba(24, 53, 67, 0.02));
}

.wns-mobile-nav__subgroup-title {
  color: var(--wns-mobile-nav-text, #152833);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.wns-mobile-nav__subgroup-links,
.wns-mobile-nav__link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.wns-mobile-nav__chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff;
  color: rgba(21, 40, 51, 0.86);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(16, 27, 34, 0.06);
}

.wns-mobile-nav__promos {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.wns-mobile-nav__promo {
  display: block;
  padding: 10px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72));
  box-shadow:
    0 14px 28px rgba(16, 27, 34, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.wns-mobile-nav__promo--link {
  text-decoration: none;
}

.wns-mobile-nav__promo-media {
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(24, 53, 67, 0.04), rgba(24, 53, 67, 0.02));
}

.wns-mobile-nav__promo-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.wns-mobile-nav__promo-gallery--duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wns-mobile-nav__promo-frame {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
}

.wns-mobile-nav__promo-frame--link {
  text-decoration: none;
}

.wns-mobile-nav__promo-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  margin: 0 auto;
}

.wns-mobile-nav__promo-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.wns-mobile-nav__promo-title {
  color: var(--wns-mobile-nav-accent, #c92127);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 360px) {
  .wns-mobile-nav__promo-gallery--duo {
    grid-template-columns: minmax(0, 1fr);
  }
}

.wns-mobile-nav__footer {
  margin-top: 0;
  padding: 10px 0 2px;
  border-top: 1px solid rgba(21, 40, 51, 0.08);
}

.wns-mobile-nav__footer--actions {
  margin-top: 0;
  padding: 10px 0;
  border-top: 0;
}

.wns-mobile-nav__footer--actions .wns-mobile-nav__footer-links {
  margin-top: 0;
  margin-bottom: 6px;
}

.wns-mobile-nav__footer-title {
  color: rgba(21, 40, 51, 0.66);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wns-mobile-nav__footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.wns-mobile-nav__footer-links--center {
  justify-content: center;
}

.wns-mobile-nav__footer-link {
  color: var(--wns-mobile-nav-text, #152833);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
}

.wns-mobile-nav__footer-html {
  color: var(--wns-mobile-nav-text, #152833);
  font-size: 13px;
  line-height: 1.65;
  text-align: center;
}

.wns-mobile-nav__footer-html > :first-child {
  margin-top: 0;
}

.wns-mobile-nav__footer-html > :last-child {
  margin-bottom: 0;
}

.wns-mobile-nav__footer-html a {
  color: var(--wns-mobile-nav-accent, #c92127);
  font-weight: 600;
  text-decoration: none;
}

.wns-mobile-nav__footer-html strong,
.wns-mobile-nav__footer-html b {
  font-weight: 700;
}

.wns-mobile-nav__footer-html p {
  margin: 0.45em 0;
}

.wns-mobile-nav__footer-html ul,
.wns-mobile-nav__footer-html ol {
  display: inline-block;
  margin: 0.45em auto 0;
  padding-left: 20px;
  text-align: left;
}

.wns-mobile-nav__footer-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(201, 33, 39, 0.08), rgba(201, 33, 39, 0.12));
  color: var(--wns-mobile-nav-accent, #c92127);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 8px 20px rgba(201, 33, 39, 0.06);
}

body.wns-mobile-nav-open .wns-mobile-nav {
  pointer-events: auto;
}

body.wns-mobile-nav-open .wns-mobile-nav__backdrop {
  opacity: 1;
}

body.wns-mobile-nav-open .wns-mobile-nav__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

body.wns-mobile-nav-hydrated .wns-mobile-nav__fallback {
  display: none;
}

@keyframes wnsMobileNavShimmer {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -20% 0;
  }
}

@keyframes wnsMobileSearchReveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.wns-mobile-nav-hydrated.wns-mobile-nav-viewport .wns-mobile-nav {
  display: block;
}

body.wns-mobile-nav-hydration-failed .wns-mobile-nav {
  display: none;
}

body.wns-mobile-nav-hydrated.wns-mobile-nav-viewport .main-menu .navbar-header,
body.wns-mobile-nav-hydrated.wns-mobile-nav-viewport .main-menu .megamenu-wrapper,
body.wns-mobile-nav-hydrated.wns-mobile-nav-viewport .bottom1.menu-vertical .vertical-wrapper,
body.wns-mobile-nav-hydrated.wns-mobile-nav-viewport .bottom1.menu-vertical #remove-verticalmenu {
  display: none !important;
}

body.wns-mobile-nav-hydrated.wns-mobile-nav-viewport .bottom1.menu-vertical .container-megamenu.vertical {
  min-height: 0;
}

body.wns-mobile-nav-hydrated.wns-mobile-nav-viewport .bottom1.menu-vertical .megamenuToogle-wrapper,
body.wns-mobile-nav-hydrated.wns-mobile-nav-viewport .bottom1.menu-vertical #show-verticalmenu {
  width: 100%;
}

body.wns-mobile-nav-hydrated.wns-mobile-nav-viewport .bottom1.menu-vertical .megamenuToogle-pattern,
body.wns-mobile-nav-hydrated.wns-mobile-nav-viewport .bottom1.menu-vertical #show-verticalmenu {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.wns-mobile-nav-hydrated.wns-mobile-nav-viewport .bottom1.menu-vertical .megamenuToogle-pattern .container,
body.wns-mobile-nav-hydrated.wns-mobile-nav-viewport .bottom1.menu-vertical #show-verticalmenu {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 54px;
  padding: 0 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(13, 42, 56, 0.96), rgba(10, 34, 47, 0.92)) !important;
  box-shadow:
    0 12px 22px rgba(10, 16, 23, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.wns-mobile-nav-hydrated.wns-mobile-nav-viewport .bottom1.menu-vertical .megamenuToogle-pattern .container > div,
body.wns-mobile-nav-hydrated.wns-mobile-nav-viewport .bottom1.menu-vertical #show-verticalmenu i.fa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

body.wns-mobile-nav-hydrated.wns-mobile-nav-viewport .bottom1.menu-vertical .megamenuToogle-pattern .container > div span {
  display: block;
  width: 14px;
  height: 2px;
  margin: 2px 0;
  border-radius: 999px;
  background: #fff;
}

body.wns-mobile-nav-hydrated.wns-mobile-nav-viewport .bottom1.menu-vertical #show-verticalmenu span {
  color: #fff !important;
}

.wns-mobile-topbar {
  display: none;
}

body.wns-mobile-nav-viewport.wns-mobile-topbar-mounted header.typeheader-1 .header-top .container > .row {
  display: flex;
  align-items: center;
}

body.wns-mobile-nav-viewport.wns-mobile-topbar-mounted header.typeheader-1 .header-top .header-top-left {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

body.wns-mobile-nav-viewport.wns-mobile-topbar-mounted header.typeheader-1 .header-top .header-top-right,
body.wns-mobile-nav-viewport.wns-mobile-topbar-mounted header.typeheader-1 .header-top .header-top-left > .top-link.hidden-lg.hidden-md {
  display: none !important;
}

body.wns-mobile-nav-viewport.wns-mobile-topbar-mounted header.typeheader-1 .header-top .header-top-left > .wns-mobile-topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  padding: 0 2px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

body.wns-mobile-nav-viewport.wns-mobile-topbar-mounted header.typeheader-1 .header-top .header-top-left > .wns-mobile-topbar::-webkit-scrollbar {
  display: none;
}

body.wns-mobile-nav-viewport.wns-mobile-topbar-mounted .wns-mobile-topbar__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease, opacity 160ms ease;
}

body.wns-mobile-nav-viewport.wns-mobile-topbar-mounted .wns-mobile-topbar__label {
  display: inline-block;
}

body.wns-mobile-nav-viewport.wns-mobile-topbar-mounted .wns-mobile-topbar__link + .wns-mobile-topbar__link::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 50%;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%);
}

body.wns-mobile-nav-viewport.wns-mobile-topbar-mounted .wns-mobile-topbar__link:hover,
body.wns-mobile-nav-viewport.wns-mobile-topbar-mounted .wns-mobile-topbar__link:focus {
  color: #fff;
}

body.wns-mobile-nav-viewport.wns-mobile-topbar-mounted .wns-mobile-topbar__link--accent {
  color: var(--asa-accent, var(--wns-mobile-nav-accent, #c92127));
  font-weight: 600;
}

body.wns-mobile-nav-viewport.wns-mobile-topbar-mounted .wns-mobile-topbar__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

body.wns-mobile-nav-desktop-search-boost:not(.wns-mobile-nav-viewport) header #sosearchpro .dropdown-menu .media-left img {
  width: 70px !important;
  height: 70px !important;
  max-width: 70px !important;
  max-height: 70px !important;
  object-fit: contain;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport header.typeheader-1 .header-bottom .container > .row {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) 48px 52px;
  gap: 10px;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport header.typeheader-1 .header-bottom .container > .row::before,
body.wns-mobile-nav-ready.wns-mobile-nav-viewport header.typeheader-1 .header-bottom .container > .row::after {
  display: none;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport header.typeheader-1 .header-bottom .bottom1,
body.wns-mobile-nav-ready.wns-mobile-nav-viewport header.typeheader-1 .header-bottom .bottom2,
body.wns-mobile-nav-ready.wns-mobile-nav-viewport header.typeheader-1 .header-bottom .bottom3 {
  float: none;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport header.typeheader-1 .header-bottom .bottom1 {
  width: auto;
  padding-left: 8px;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport header.typeheader-1 .header-bottom .bottom2 {
  display: flex;
  justify-content: center;
  width: 48px;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport header.typeheader-1 .header-bottom .bottom3 {
  display: flex;
  justify-content: flex-end;
  width: 52px;
  overflow: visible;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport header.typeheader-1 .search-header-w {
  position: relative;
  top: auto;
  z-index: 99;
  float: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-left: 0;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport header.typeheader-1 .search-header-w .icon-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 22px rgba(10, 16, 23, 0.12);
  line-height: 1;
  transform: translate(-8px, 6px);
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport header.typeheader-1 .search-header-w .icon-search.active {
  border-color: rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, rgba(201, 33, 39, 0.98), rgba(166, 21, 35, 0.98));
  box-shadow:
    0 14px 28px rgba(201, 33, 39, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport header.typeheader-1 .search-header-w .icon-search i {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.94);
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport header.typeheader-1 .search-header-w .icon-search.active i {
  color: #fff;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport header.typeheader-1 .header-bottom .container {
  position: relative;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-sheet {
  position: relative;
  z-index: 20;
  margin: 20px -7px 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  animation: wnsMobileSearchReveal 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-sheet[hidden] {
  display: none !important;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-sheet #sosearchpro {
  position: relative;
  margin: 0;
  padding: 0 !important;
  width: 100%;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-sheet #sosearchpro .search.input-group,
body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-sheet #sosearchpro .search.form-group {
  display: block !important;
  margin-bottom: 0 !important;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-sheet #sosearchpro .search {
  position: relative !important;
  z-index: 2;
  display: block !important;
  top: auto !important;
  left: auto !important;
  width: 100% !important;
  min-height: 52px !important;
  height: 52px !important;
  margin: 0;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transform: none !important;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-sheet #sosearchpro .search .select_category,
body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-sheet #sosearchpro .search .chosen-container {
  display: none !important;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-sheet #sosearchpro .search input {
  position: relative;
  z-index: 3;
  display: block !important;
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  height: 52px !important;
  padding: 0 68px 0 18px !important;
  border: 0 !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.98) !important;
  color: var(--wns-mobile-nav-text, #152833);
  font-size: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 14px 26px rgba(10, 16, 23, 0.14);
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-sheet #sosearchpro .search input::placeholder {
  color: rgba(21, 40, 51, 0.52);
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-sheet #sosearchpro .search .input-group-btn {
  position: static;
  z-index: 3;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-sheet #sosearchpro .search button {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 4;
  width: 44px;
  height: 44px;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, rgba(201, 33, 39, 0.98), rgba(166, 21, 35, 0.98)) !important;
  box-shadow:
    0 10px 20px rgba(201, 33, 39, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-sheet #sosearchpro .search button i {
  font-size: 14px;
  color: #fff;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-sheet #sosearchpro .dropdown-menu {
  position: absolute !important;
  top: 60px !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 2 !important;
  width: 100% !important;
  margin: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  max-height: min(46vh, 360px);
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 18px 36px rgba(10, 16, 23, 0.18);
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-scrollbar {
  position: absolute;
  right: 8px;
  width: 4px;
  border-radius: 999px;
  background: rgba(21, 40, 51, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
  z-index: 3;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-scrollbar.is-visible {
  opacity: 1;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(201, 33, 39, 0.96), rgba(166, 21, 35, 0.98));
  box-shadow: 0 6px 12px rgba(201, 33, 39, 0.18);
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-sheet #sosearchpro .dropdown-menu::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport.wns-mobile-search-open:not(.wns-mobile-search-has-query) .wns-mobile-search-sheet #sosearchpro .dropdown-menu {
  display: none !important;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-sheet #sosearchpro .dropdown-menu .clearfix {
  display: none;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-sheet #sosearchpro .dropdown-menu .media {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(21, 40, 51, 0.08);
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-sheet #sosearchpro .dropdown-menu .media:last-of-type {
  border-bottom: 0;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-sheet #sosearchpro .dropdown-menu .media-left {
  flex: 0 0 70px;
  float: none;
  padding: 0;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-sheet #sosearchpro .dropdown-menu .media-left img {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  object-fit: contain;
  background: #fff;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-sheet #sosearchpro .dropdown-menu .media-body {
  min-width: 0;
  padding: 0;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-sheet #sosearchpro .dropdown-menu .media-body a {
  float: none;
  display: block;
  color: rgba(21, 40, 51, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-sheet #sosearchpro .dropdown-menu .media-body .box-price {
  float: none;
  width: auto;
  margin-top: 6px;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-sheet #sosearchpro .dropdown-menu .media-body .box-price span {
  float: none;
  padding-right: 0;
  color: var(--wns-mobile-nav-accent, #c92127);
  font-size: 12px;
  font-weight: 700;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport .wns-mobile-search-sheet #sosearchpro .dropdown-menu .media:hover {
  background: rgba(24, 53, 67, 0.04);
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport header.typeheader-1 .shopping_cart {
  float: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin-right: 0;
  overflow: visible;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport header.typeheader-1 .shopping_cart .btn-shopping-cart {
  display: flex;
  overflow: visible;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport header.typeheader-1 .shopping_cart .btn-shopping-cart .top_cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(201, 33, 39, 0.98), rgba(166, 21, 35, 0.98));
  box-shadow:
    0 14px 28px rgba(201, 33, 39, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transform: translate(-14px, 6px);
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport header.typeheader-1 .shopping_cart .btn-shopping-cart .top_cart .icon-c {
  float: none;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: transparent;
  line-height: 48px;
  box-shadow: none;
  transform: none;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport header.typeheader-1 .shopping_cart .btn-shopping-cart .top_cart .icon-c i {
  font-size: 18px;
  color: #fff;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport header.typeheader-1 .shopping_cart .btn-shopping-cart .top_cart .shopcart-inner {
  position: absolute;
  inset: 0;
  float: none;
  width: auto;
  margin: 0;
  overflow: visible;
  pointer-events: none;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport header.typeheader-1 .shopping_cart .btn-shopping-cart .top_cart .shopcart-inner .total-shopping-cart {
  float: none;
}

body.wns-mobile-nav-ready.wns-mobile-nav-viewport header.typeheader-1 .shopping_cart .btn-shopping-cart .top_cart .shopcart-inner .total-shopping-cart .items_cart {
  top: -4px;
  right: -1px;
  left: auto;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 11px;
  font-weight: 700;
  color: #16313f;
  box-shadow: 0 8px 16px rgba(7, 12, 18, 0.18);
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .dropdown-menu {
  right: 0;
  margin-top: 12px;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .dropdown-menu.shoppingcart-box {
  left: auto;
  width: min(388px, calc(100vw - 24px));
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(246, 242, 237, 0.98));
  box-shadow:
    0 24px 52px rgba(10, 16, 23, 0.18),
    0 10px 22px rgba(10, 16, 23, 0.1);
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box:before {
  display: none;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box > li {
  padding: 0;
  border: 0;
  background: transparent;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box > li.content-item {
  max-height: min(54vh, 420px);
  padding: 10px 14px 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 33, 39, 0.9) rgba(201, 33, 39, 0.12);
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box > li.content-item::-webkit-scrollbar {
  width: 7px;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box > li.content-item::-webkit-scrollbar-track {
  background: rgba(201, 33, 39, 0.12);
  border-radius: 999px;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box > li.content-item::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(201, 33, 39, 0.96), rgba(143, 15, 36, 0.96));
  border-radius: 999px;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .table {
  width: 100%;
  margin-bottom: 0 !important;
  background: transparent;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .table,
body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .table > tbody {
  display: block;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .table > tbody > tr {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto 34px;
  grid-template-areas:
    "image title title remove"
    "image quantity price remove";
  gap: 6px 12px;
  align-items: start;
  margin: 0;
  padding: 12px 4px 14px;
  border: 0;
  border-bottom: 1px solid rgba(21, 40, 51, 0.08);
  background: transparent;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .table > tbody > tr:last-child {
  border-bottom: 0;
  padding-bottom: 12px;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .table > tbody > tr > td {
  display: block;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .table > tbody > tr > td:nth-child(1) {
  grid-area: image;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .table > tbody > tr > td:nth-child(2) {
  grid-area: title;
  min-width: 0;
  color: var(--wns-mobile-nav-text, #152833);
  font-size: 13px;
  line-height: 1.35;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .table > tbody > tr > td:nth-child(2) > a {
  display: block;
  color: var(--wns-mobile-nav-text, #152833);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .table > tbody > tr > td:nth-child(2) > a:hover {
  color: var(--wns-mobile-nav-accent, #c92127);
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .table > tbody > tr.wns-mobile-cart-row-ready {
  grid-template-columns: 78px minmax(0, 1fr);
  grid-template-areas: "image copy";
  gap: 8px 12px;
  align-items: start;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .table > tbody > tr.wns-mobile-cart-row-ready > td:nth-child(1) {
  grid-area: image;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .table > tbody > tr.wns-mobile-cart-row-ready > td:nth-child(2) {
  grid-area: copy;
  min-width: 0;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .table > tbody > tr.wns-mobile-cart-row-ready > td:nth-child(3),
body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .table > tbody > tr.wns-mobile-cart-row-ready > td:nth-child(4),
body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .table > tbody > tr.wns-mobile-cart-row-ready > td:nth-child(5) {
  display: none !important;
}

body.wns-mobile-nav-cart-enhance .wns-mobile-cart-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

body.wns-mobile-nav-cart-enhance .wns-mobile-cart-titlebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

body.wns-mobile-nav-cart-enhance .wns-mobile-cart-titlebar > a {
  display: block;
  min-width: 0;
  color: var(--wns-mobile-nav-text, #152833);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

body.wns-mobile-nav-cart-enhance .wns-mobile-cart-titlebar > a:hover {
  color: var(--wns-mobile-nav-accent, #c92127);
}

body.wns-mobile-nav-cart-enhance .wns-mobile-cart-copy small {
  display: block;
  margin-top: -3px;
  color: rgba(21, 40, 51, 0.68);
  font-size: 11px;
  line-height: 1.35;
}

body.wns-mobile-nav-cart-enhance .wns-mobile-cart-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .table > tbody > tr > td:nth-child(2) small {
  display: block;
  margin-top: 3px;
  color: rgba(21, 40, 51, 0.68);
  font-size: 11px;
  line-height: 1.35;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .table > tbody > tr > td:nth-child(3) {
  grid-area: quantity;
  align-self: center;
  justify-self: start;
  min-width: max-content;
  text-align: left !important;
  line-height: 1;
}

body.wns-mobile-nav-cart-enhance .wns-mobile-cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(21, 40, 51, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
  color: rgba(21, 40, 51, 0.78);
}

body.wns-mobile-nav-cart-enhance .wns-mobile-cart-qty__label {
  color: rgba(21, 40, 51, 0.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.wns-mobile-nav-cart-enhance .wns-mobile-cart-qty__value {
  color: rgba(21, 40, 51, 0.86);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

body.wns-mobile-nav-cart-enhance .wns-mobile-cart-line-price {
  margin-left: auto;
  color: var(--wns-mobile-nav-accent, #c92127);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .table > tbody > tr > td:nth-child(4) {
  grid-area: price;
  align-self: center;
  justify-self: end;
  color: var(--wns-mobile-nav-accent, #c92127);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .table > tbody > tr > td:nth-child(5) {
  grid-area: remove;
  align-self: center;
  justify-self: end;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .table .size-img-cart img,
body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .table .img-thumbnail {
  display: block;
  width: 74px;
  height: 74px;
  padding: 8px;
  object-fit: contain;
  border: 1px solid rgba(21, 40, 51, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 26px rgba(10, 16, 23, 0.08);
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .table .btn.btn-danger.btn-xs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: rgba(21, 40, 51, 0.08);
  color: rgba(21, 40, 51, 0.56);
  box-shadow: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .table .btn.btn-danger.btn-xs:hover,
body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .table .btn.btn-danger.btn-xs:focus {
  background: rgba(201, 33, 39, 0.14);
  color: var(--wns-mobile-nav-accent, #c92127);
  transform: translateY(-1px);
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .checkout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  padding: 16px;
  border-top: 1px solid rgba(21, 40, 51, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .checkout:before,
body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .checkout:after {
  content: none !important;
  display: none !important;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .checkout .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  float: none !important;
  width: 100%;
  min-height: 56px;
  padding: 0 18px !important;
  margin: 0 !important;
  border-radius: 18px !important;
  line-height: 1 !important;
  text-align: center;
  white-space: nowrap;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .checkout .btn > strong,
body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .checkout .btn > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1 !important;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .checkout > .btn:first-of-type {
  grid-column: 1;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .checkout > .btn:last-of-type {
  grid-column: 2;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 #cart .shoppingcart-box .checkout.cart-qty-header-cart-actions--single {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 #cart .shoppingcart-box .checkout.cart-qty-header-cart-actions--single .btn:not([aria-hidden="true"]) {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 56px !important;
  min-height: 56px !important;
  padding: 0 18px !important;
  line-height: 56px !important;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 #cart .shoppingcart-box .checkout.cart-qty-header-cart-actions--single .btn[aria-hidden="true"] {
  display: none !important;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 #cart .shoppingcart-box .checkout.cart-qty-header-cart-actions--single > .btn:not([aria-hidden="true"]) {
  grid-column: 1 / -1 !important;
}

body.wns-mobile-nav-cart-enhance header.typeheader-1 .shopping_cart .shoppingcart-box .empty {
  margin: 0;
  padding: 28px 24px;
  color: rgba(21, 40, 51, 0.68);
  font-size: 14px;
  text-align: center;
}

@media (max-width: 640px) {
  .wns-mobile-nav__dialog {
    inset:
      calc(4px + env(safe-area-inset-top, 0px))
      calc(4px + env(safe-area-inset-right, 0px))
      calc(4px + env(safe-area-inset-bottom, 0px))
      calc(4px + env(safe-area-inset-left, 0px));
    border-radius: 24px;
  }

  .wns-mobile-nav__title {
    font-size: 22px;
  }
}
