/* Header */
.mktw-header {
  --mktw-accent: #10cbe5;
  position: relative;
  z-index: 100;
  width: 100%;
  color: #fff;
}

.mktw-header--sticky {
  position: sticky;
  top: 0;
}

body.admin-bar .mktw-header--sticky {
  top: 32px;
}

.mktw-header__container {
  width: min(calc(100% - 40px), 1280px);
  margin-inline: auto;
}

.mktw-header__topbar {
  background: #010815;
  color: #fff;
  font-size: 12px;
}

.mktw-header__topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 34px;
}

.mktw-header__offer,
.mktw-header__toplinks,
.mktw-header__actions,
.mktw-header__action {
  display: flex;
  align-items: center;
}

.mktw-header__offer {
  gap: 8px;
  font-weight: 700;
}

.mktw-header__offer svg,
.mktw-header__offer i {
  width: 14px;
  height: 14px;
  color: var(--mktw-accent);
  fill: currentColor;
}

.mktw-header__toplinks {
  gap: 28px;
}

.mktw-header__toplinks a {
  color: inherit;
  opacity: .9;
}

.mktw-header__toplinks a:hover {
  color: var(--mktw-accent);
}

.mktw-header__main,
.mktw-header__nav-wrap {
  background: #020d22;
}

.mktw-header__main-inner {
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  align-items: center;
  gap: 42px;
  min-height: 90px;
}

.mktw-header__logo {
  display: inline-flex;
  align-items: center;
}

.mktw-header__logo img {
  width: 112px;
  height: auto;
  object-fit: contain;
}

.mktw-header__search {
  display: flex;
  min-width: 0;
  height: 48px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: #fff;
}

.mktw-header__search input {
  min-width: 0;
  flex: 1;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: #334155;
  outline: 0;
}

.mktw-header__search button {
  display: grid;
  place-items: center;
  width: 58px;
  padding: 0;
  border: 0;
  background: #fff;
  color: #071326;
  cursor: pointer;
}

.mktw-header__search button:hover {
  color: var(--mktw-accent);
}

.mktw-header__search svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.mktw-header__actions {
  gap: 28px;
}

.mktw-header__action {
  position: relative;
  gap: 11px;
  color: #fff;
  white-space: nowrap;
}

.mktw-header__action > svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mktw-header__action span {
  display: flex;
  flex-direction: column;
}

.mktw-header__action b {
  color: inherit;
  font-size: 14px;
  line-height: 1.15;
}

.mktw-header__action small {
  margin-top: 2px;
  color: rgba(255,255,255,.72);
  font-size: 10px;
  line-height: 1.2;
}

.mktw-header__cart em {
  position: absolute;
  top: -9px;
  right: -9px;
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding-inline: 4px;
  border-radius: 999px;
  background: var(--mktw-accent);
  color: #001324;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.mktw-header__nav-wrap {
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.mktw-header__nav {
  min-height: 54px;
}

.mktw-header__menu,
.mktw-header__menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mktw-header__menu {
  display: flex;
  align-items: stretch;
  gap: 46px;
  min-height: 54px;
}

.mktw-header__menu > li {
  position: relative;
  display: flex;
  align-items: stretch;
}

.mktw-header__menu a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.mktw-header__menu > li > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--mktw-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.mktw-header__menu > li:hover > a,
.mktw-header__menu > .current-menu-item > a {
  color: var(--mktw-accent);
}

.mktw-header__menu > li:hover > a::after,
.mktw-header__menu > .current-menu-item > a::after {
  transform: scaleX(1);
}

.mktw-header__menu .sub-menu {
  position: absolute;
  z-index: 1000;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  background: #06142a;
  box-shadow: 0 22px 48px rgba(0,0,0,.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.mktw-header__menu li:hover > .sub-menu,
.mktw-header__menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mktw-header__menu .sub-menu a {
  padding: 10px 12px;
  border-radius: 7px;
}

.mktw-header__menu .sub-menu a:hover {
  background: rgba(15,208,232,.1);
}

.mktw-header__menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.mktw-header__menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: #fff;
}

/* Benefits */
.mktw-benefits__grid {
  display: grid;
  grid-template-columns: repeat(var(--mktw-cols, 4), minmax(0, 1fr));
}

.mktw-benefit {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  color: inherit;
  background: #f7f9fc;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.mktw-benefit:hover {
  transform: translateY(-3px);
}

.mktw-benefit__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 10px;
  background: #fff;
  color: #031b43;
}

.mktw-benefit__icon svg,
.mktw-benefit__icon i {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.mktw-benefit h3 {
  margin: 0 0 5px;
  color: #071326;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.mktw-benefit p {
  margin: 0;
  color: #526079;
  font-size: 11px;
  line-height: 1.45;
}

/* Categories */
.mktw-categories__track {
  display: grid;
  grid-template-columns: repeat(var(--mktw-cols, 8), minmax(0, 1fr));
}

.mktw-categories.mktw-carousel .mktw-categories__track,
.mktw-products.mktw-carousel .mktw-products__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 7px;
}

.mktw-categories.mktw-carousel .mktw-category-card {
  flex: 0 0 calc((100% - ((var(--mktw-cols, 8) - 1) * 14px)) / var(--mktw-cols, 8));
  scroll-snap-align: start;
}

.mktw-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 15px 10px 17px;
  background: #f7f8fc;
  color: #071326;
  text-align: center;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.mktw-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px rgba(3,15,34,.1);
}

.mktw-category-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 105px;
}

.mktw-category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .25s ease;
}

.mktw-category-card:hover img {
  transform: translateY(-4px) scale(1.03);
}

.mktw-category-card__name {
  display: block;
  min-height: 34px;
  margin-top: 8px;
  color: #071326;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.mktw-category-card small {
  margin-top: 4px;
  color: #718096;
  font-size: 10px;
}

/* Mini banners */
.mktw-mini-banners__track {
  display: grid;
  grid-template-columns: repeat(var(--mktw-cols, 3), minmax(0, 1fr));
}

.mktw-mini-banner {
  position: relative;
  display: flex;
  align-items: stretch;
  min-width: 0;
  overflow: hidden;
  color: var(--mktw-banner-text, #fff);
  background: linear-gradient(120deg, var(--mktw-banner-start, #06152f), var(--mktw-banner-end, #0a3566));
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease;
}

.mktw-hover-lift .mktw-mini-banner:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 46px rgba(2, 13, 33, .2);
}

.mktw-mini-banner::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -70% -20% auto auto;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
}

.mktw-mini-banner__copy {
  position: relative;
  z-index: 3;
  width: 56%;
  padding: 26px 0 24px 25px;
}

.mktw-mini-banner__eyebrow {
  display: block;
  margin-bottom: 9px;
  color: var(--mktw-banner-accent, #13d5e9);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.mktw-mini-banner h3 {
  margin: 0 0 8px;
  color: inherit;
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.mktw-mini-banner p {
  margin: 0 0 17px;
  color: inherit;
  font-size: 13px;
  line-height: 1.4;
  opacity: .9;
}

.mktw-mini-banner__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 5px;
  color: inherit;
  font-size: 11px;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.mktw-mini-banner__button:hover {
  background: var(--mktw-banner-accent, #13d5e9);
  color: #001324;
  transform: translateY(-2px);
}

.mktw-mini-banner__image {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  width: 56%;
}

.mktw-mini-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  transition: transform .35s ease;
}

.mktw-mini-banner:hover .mktw-mini-banner__image img {
  transform: scale(1.035) translateY(-2px);
}

/* Products */
.mktw-products__track {
  display: grid;
  grid-template-columns: repeat(var(--mktw-cols, 6), minmax(0, 1fr));
}

.mktw-products.mktw-carousel .mktw-product-card {
  flex: 0 0 calc((100% - ((var(--mktw-cols, 6) - 1) * 14px)) / var(--mktw-cols, 6));
  scroll-snap-align: start;
}

.mktw-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 13px 13px 14px;
  border: 1px solid #e3e8f0;
  background: #fff;
  color: #071326;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.mktw-product-card:hover {
  border-color: rgba(16,203,229,.52);
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(4,18,42,.11);
}

.mktw-product-card__badge {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--mktw-accent);
  color: #002033;
  font-size: 10px;
  font-weight: 900;
}

.mktw-product-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 190px;
  margin-bottom: 10px;
}

.mktw-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .25s ease;
}

.mktw-product-card:hover .mktw-product-card__image img {
  transform: scale(1.035);
}

.mktw-product-card__category,
.mktw-product-card__category a {
  margin-bottom: 5px;
  color: #78859b;
  font-size: 10px;
}

.mktw-product-card__title {
  margin: 0 0 8px;
  color: #071326;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.32;
}

.mktw-product-card__title a {
  color: inherit;
}

.mktw-product-card__rating {
  min-height: 17px;
  margin-bottom: 8px;
  color: #ffb200;
  font-size: 11px;
  line-height: 1.2;
}

.mktw-product-card__rating .star-rating {
  float: none;
  margin: 0;
  font-size: 11px;
}

.mktw-product-card__rating small {
  color: #8b97aa;
}

.mktw-product-card__price {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  margin-bottom: 12px;
  color: #071326;
}

.mktw-product-card__price > .price,
.mktw-product-card__price b,
.mktw-product-card__price > span.amount,
.mktw-product-card__price ins {
  color: #071326;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
}

.mktw-product-card__price del {
  color: #9aa4b5;
  font-size: 10px;
}

.mktw-product-card__price small {
  margin-top: 3px;
  color: #6b778c;
  font-size: 10px;
}

.mktw-product-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 37px;
  padding: 8px 10px;
  border: 0;
  border-radius: 5px;
  background: #08b9d2;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: transform .2s ease, filter .2s ease;
}

.mktw-product-card__button:hover {
  color: #fff;
  filter: brightness(.94);
  transform: translateY(-2px);
}

/* Featured categories */
.mktw-featured-categories__track {
  display: grid;
  grid-template-columns: repeat(var(--mktw-cols, 4), minmax(0, 1fr));
}

.mktw-featured-category {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  background: var(--mktw-featured-bg, #f6f7fb);
  color: #071326;
  isolation: isolate;
  transition: transform .24s ease, box-shadow .24s ease;
}

.mktw-featured-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(4,18,42,.11);
}

.mktw-featured-category__copy {
  position: relative;
  z-index: 3;
  width: 59%;
  padding: 25px 0 22px 22px;
}

.mktw-featured-category h3 {
  margin: 0 0 9px;
  color: #071326;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.15;
}

.mktw-featured-category p {
  margin: 0 0 18px;
  color: #526079;
  font-size: 12px;
  line-height: 1.45;
}

.mktw-featured-category__button {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 5px;
  background: #fff;
  color: #071326;
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 5px 16px rgba(3,15,34,.08);
}

.mktw-featured-category__image {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  width: 54%;
}

.mktw-featured-category__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  transition: transform .28s ease;
}

.mktw-featured-category:hover img {
  transform: scale(1.04) translateY(-3px);
}

/* Content */
.mktw-content-inspirations__track {
  display: grid;
  grid-template-columns: repeat(var(--mktw-cols, 3), minmax(0, 1fr));
}

.mktw-content-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #06142a;
  color: #fff;
  isolation: isolate;
}

.mktw-content-card > img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.mktw-content-card:hover > img {
  transform: scale(1.055);
}

.mktw-content-card__overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, var(--mktw-overlay, rgba(2,11,27,.78)) 0%, rgba(2,11,27,.58) 50%, rgba(2,11,27,.08) 100%);
}

.mktw-content-card__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 66%;
  min-height: inherit;
  padding: 28px;
}

.mktw-content-card__tag {
  display: inline-flex;
  margin-bottom: 13px;
  padding: 5px 9px;
  border: 1px solid #14d0e8;
  border-radius: 999px;
  color: #14d0e8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.mktw-content-card h3 {
  margin: 0 0 21px;
  color: #fff;
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -.025em;
}

.mktw-content-card__button {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid #fff;
  border-radius: 4px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

/* Newsletter */
.mktw-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 120px;
  color: #fff;
  background: linear-gradient(100deg, var(--mktw-news-start, #03142e), var(--mktw-news-end, #073b72));
}

.mktw-newsletter__copy {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.mktw-newsletter__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  color: var(--mktw-accent);
}

.mktw-newsletter__icon svg,
.mktw-newsletter__icon i {
  width: 42px;
  height: 42px;
  fill: currentColor;
}

.mktw-newsletter h2 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.12;
}

.mktw-newsletter p {
  margin: 0;
  color: #d7e1ef;
  font-size: 12px;
  line-height: 1.4;
}

.mktw-newsletter__form {
  display: flex;
  width: 48%;
  min-width: 310px;
  height: 48px;
  overflow: hidden;
  border-radius: 7px;
  background: #fff;
}

.mktw-newsletter__form input {
  min-width: 0;
  flex: 1;
  padding: 0 17px;
  border: 0;
  color: #334155;
  outline: none;
}

.mktw-newsletter__form button {
  flex: 0 0 auto;
  min-width: 125px;
  padding: 0 19px;
  border: 0;
  background: var(--mktw-accent);
  color: #001324;
  font-weight: 800;
  cursor: pointer;
}

/* Social gallery */
.mktw-social-gallery__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.mktw-social-gallery__heading > div {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.mktw-social-gallery h2 {
  margin: 0;
  color: #071326;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
}

.mktw-social-gallery__heading span {
  color: #68758a;
  font-size: 13px;
}

.mktw-social-gallery__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 6px;
  background: var(--mktw-accent);
  color: #001324;
  font-size: 11px;
  font-weight: 800;
}

.mktw-social-gallery__button svg,
.mktw-social-gallery__button i {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.mktw-social-gallery__track {
  display: grid;
  grid-template-columns: repeat(var(--mktw-cols, 7), minmax(0, 1fr));
}

.mktw-social-gallery__item {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  background: #e9edf4;
}

.mktw-social-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.mktw-social-gallery__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(2,11,27,.55);
  color: #fff;
  opacity: 0;
  transition: opacity .25s ease;
}

.mktw-social-gallery__overlay svg,
.mktw-social-gallery__overlay i {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.mktw-social-gallery__item:hover img {
  transform: scale(1.07);
}

.mktw-social-gallery__item:hover .mktw-social-gallery__overlay {
  opacity: 1;
}

/* Footer */
.mktw-footer {
  --mktw-accent: #10cbe5;
  background: #020d22;
  color: #bdc8d9;
}

.mktw-footer__container {
  width: min(calc(100% - 40px), 1280px);
  margin-inline: auto;
}

.mktw-footer__main {
  padding: 58px 24px 28px;
}

.mktw-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr .8fr 1.15fr;
  gap: 48px;
}

.mktw-footer__brand img {
  width: 112px;
  height: auto;
  margin-bottom: 20px;
}

.mktw-footer p {
  margin: 0;
  color: #bdc8d9;
  font-size: 12px;
  line-height: 1.6;
}

.mktw-footer h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.mktw-footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mktw-footer__column a {
  margin-bottom: 9px;
  color: #bdc8d9;
  font-size: 12px;
  line-height: 1.35;
}

.mktw-footer__column a:hover,
.mktw-footer__contact a:hover {
  color: var(--mktw-accent);
}

.mktw-footer__social {
  display: flex;
  gap: 9px;
  margin-top: 20px;
}

.mktw-footer__social a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  color: #fff;
}

.mktw-footer__social a:hover {
  border-color: var(--mktw-accent);
  background: var(--mktw-accent);
  color: #001324;
}

.mktw-footer__social svg,
.mktw-footer__social i {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.mktw-footer__contact p {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 15px;
}

.mktw-footer__contact p > span:last-child {
  display: flex;
  flex-direction: column;
}

.mktw-footer__contact a,
.mktw-footer__contact b {
  color: #fff;
  font-size: 12px;
}

.mktw-footer__contact small {
  display: block;
  margin-top: 3px;
  color: #bdc8d9;
  font-size: 10px;
  line-height: 1.4;
}

.mktw-footer__contact-icon {
  color: var(--mktw-accent);
}

.mktw-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
}

.mktw-footer__bottom > .mktw-footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
}

.mktw-footer__payments {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.mktw-footer__payments span {
  margin-right: 5px;
  color: #bdc8d9;
  font-size: 11px;
}

.mktw-footer__payments b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 4px;
  background: #fff;
  color: #0a1730;
  font-size: 9px;
  font-weight: 900;
}

@media (max-width: 1200px) {
  .mktw-header__main-inner { gap: 25px; }
  .mktw-header__actions { gap: 17px; }
  .mktw-header__menu { gap: 31px; }
  .mktw-footer__grid { grid-template-columns: 1.3fr repeat(3, .8fr); }
  .mktw-footer__contact { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .mktw-header__main-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 78px;
  }
  .mktw-header__menu-toggle { display: block; }
  .mktw-header__logo { grid-column: 2; justify-self: start; }
  .mktw-header__search { grid-column: 1 / -1; grid-row: 2; margin-bottom: 15px; }
  .mktw-header__actions { grid-column: 3; grid-row: 1; }
  .mktw-header__nav-wrap { display: none; }
  .mktw-header.is-menu-open .mktw-header__nav-wrap { display: block; }
  .mktw-header__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 18px;
  }
  .mktw-header__menu > li,
  .mktw-header__menu a { display: block; width: 100%; }
  .mktw-header__menu a { padding: 11px 4px; }
  .mktw-header__menu .sub-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 0 15px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .mktw-header__menu li:hover > .sub-menu,
  .mktw-header__menu li:focus-within > .sub-menu { display: block; }
  .mktw-mini-banner__copy { width: 63%; }
  .mktw-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .mktw-footer__contact { grid-column: auto; }
}

@media (max-width: 767px) {
  body.admin-bar .mktw-header--sticky { top: 46px; }
  .mktw-header__container { width: min(calc(100% - 24px), 1280px); }
  .mktw-header__topbar-inner { justify-content: center; text-align: center; }
  .mktw-header__toplinks { display: none; }
  .mktw-header__main-inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    min-height: 68px;
  }
  .mktw-header__logo { justify-self: center; }
  .mktw-header__logo img { width: 86px !important; }
  .mktw-header__actions { gap: 10px; }
  .mktw-header__action span { display: none; }
  .mktw-header__action > svg { width: 24px; height: 24px; }
  .mktw-header__search { height: 44px; }

  .mktw-benefits__grid { grid-template-columns: repeat(var(--mktw-cols, 1), minmax(0, 1fr)); }
  .mktw-benefit { min-width: 0; }

  .mktw-categories__track,
  .mktw-products__track,
  .mktw-mini-banners__track,
  .mktw-featured-categories__track,
  .mktw-content-inspirations__track,
  .mktw-social-gallery__track {
    grid-template-columns: repeat(var(--mktw-cols, 2), minmax(0, 1fr));
  }

  .mktw-categories.mktw-carousel .mktw-category-card {
    flex-basis: calc((100% - ((var(--mktw-cols, 2) - 1) * 14px)) / var(--mktw-cols, 2));
  }

  .mktw-products.mktw-carousel .mktw-product-card {
    flex-basis: calc((100% - ((var(--mktw-cols, 2) - 1) * 14px)) / var(--mktw-cols, 2));
  }

  .mktw-product-card { padding: 10px; }
  .mktw-product-card__title { font-size: 12px; }
  .mktw-product-card__price > .price,
  .mktw-product-card__price b,
  .mktw-product-card__price > span.amount,
  .mktw-product-card__price ins { font-size: 15px; }

  .mktw-newsletter {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
  .mktw-newsletter__form { width: 100% !important; min-width: 0; }
  .mktw-newsletter__copy { align-items: flex-start; }
  .mktw-newsletter h2 { font-size: 21px; }

  .mktw-social-gallery__heading {
    align-items: flex-start;
  }
  .mktw-social-gallery__heading > div {
    flex-direction: column;
    gap: 5px;
  }
  .mktw-social-gallery h2 { font-size: 21px; }
  .mktw-social-gallery__button span { display: none; }

  .mktw-footer__container { width: min(calc(100% - 28px), 1280px); }
  .mktw-footer__main { padding-inline: 0 !important; }
  .mktw-footer__grid { grid-template-columns: 1fr; gap: 34px !important; }
  .mktw-footer__bottom > .mktw-footer__container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 22px;
  }
}

@media (max-width: 480px) {
  .mktw-mini-banner__copy { width: 67% !important; padding-left: 18px; }
  .mktw-mini-banner h3 { font-size: 21px; }
  .mktw-featured-category__copy { width: 64%; padding-left: 18px; }
  .mktw-content-card__copy { width: 78%; padding: 22px; }
  .mktw-newsletter__form { flex-direction: column; height: auto; background: transparent; overflow: visible; }
  .mktw-newsletter__form input,
  .mktw-newsletter__form button { min-height: 46px; border-radius: 6px; }
}
