/*
Theme Name: Royal Kinzy
Theme URI: https://royalkinzy.com/
Author: Royal Kinzy
Author URI: https://royalkinzy.com/
Description: Royal Kinzy watch storefront.
Version: 1.5.0
Requires at least: 6.2
Tested up to: 6.5
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: maven-commerce-wp
Woo: 8.0
*/

:root {
  --mw-black: #111111;
  --mw-ink: #252525;
  --mw-muted: #707070;
  --mw-line: #e8e4df;
  --mw-bg: #fbfaf8;
  --mw-soft: #f2f0eb;
  --mw-white: #ffffff;
  --mw-accent: #9d6b4e;
  --mw-max: 1440px;
  --mw-serif: "Times New Roman", Times, serif;
  --mw-sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--mw-bg);
  color: var(--mw-ink);
  font-family: var(--mw-sans);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

.mw-container {
  width: min(100%, var(--mw-max));
  margin: 0 auto;
  padding: 0 32px;
}

.mw-topbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 34px;
  padding: 0;
  background: var(--mw-black);
  color: var(--mw-white);
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
}

.mw-topbar__track {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  animation: mwTopbarMarquee 32s linear infinite;
  will-change: transform;
}

.mw-topbar__item {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 36px;
  color: inherit;
  font-size: inherit;
  font-weight: 800;
  letter-spacing: 0.05em;
}

@keyframes mwTopbarMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mw-topbar__track {
    animation: none;
  }
}

body.mw-theme .mw-topbar__track {
  width: max-content !important;
  min-width: max-content !important;
  animation: mwTopbarMarquee 32s linear infinite !important;
  animation-play-state: running !important;
  will-change: transform !important;
}

.mw-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 248, 0.96);
  border-bottom: 1px solid var(--mw-line);
  backdrop-filter: blur(10px);
}

.mw-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  gap: 24px;
}

.mw-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  text-transform: uppercase;
  font-size: 12px;
}

.mw-nav ul,
.mw-mega ul {
  display: contents;
  margin: 0;
  padding: 0;
}

.mw-nav li,
.mw-mega li {
  display: inline-flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mw-nav a {
  padding: 30px 0;
  color: #2c2b29;
  font-size: 11px;
  letter-spacing: 0.4px;
  transition: color .2s ease;
}

.mw-nav a:hover,
.mw-actions a:hover,
.mw-mega__inner a:hover {
  color: var(--mw-accent);
}

.mw-logo {
  font-family: var(--mw-serif);
  font-size: 28px;
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.mw-logo img {
  width: min(64px, 16vw);
  max-height: 54px;
  object-fit: contain;
}

.mw-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  text-transform: uppercase;
  font-size: 12px;
}

.mw-actions a {
  font-size: 11px;
  letter-spacing: 0.4px;
}

.mw-header-search {
  display: flex;
  align-items: center;
  min-width: 220px;
  max-width: 280px;
  border: 1px solid var(--mw-line);
  border-radius: 999px;
  background: var(--mw-white);
  overflow: hidden;
}

.mw-header-search input[type="search"] {
  min-width: 0;
  flex: 1;
  height: 36px;
  border: 0;
  background: transparent;
  padding: 0 12px;
  font-size: 12px;
  outline: 0;
}

.mw-header-search button {
  min-width: 68px;
  height: 36px;
  border: 0;
  background: var(--mw-black);
  color: var(--mw-white);
  padding: 0 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.mw-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--mw-line);
  background: transparent;
  color: var(--mw-ink);
}

.mw-menu-toggle span,
.mw-menu-toggle::before,
.mw-menu-toggle::after {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  content: "";
}

.mw-mobile-panel {
  display: none;
  border-top: 1px solid var(--mw-line);
  background: var(--mw-bg);
}

.mw-mobile-panel.is-open {
  display: block;
}

.mw-mobile-panel a {
  display: block;
  border-bottom: 1px solid var(--mw-line);
  padding: 14px 24px;
  text-transform: uppercase;
  font-size: 12px;
}

.mw-mobile-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  border-bottom: 1px solid var(--mw-line);
  padding: 14px;
}

.mw-mobile-search input[type="search"] {
  min-width: 0;
  height: 44px;
  border: 1px solid var(--mw-line);
  border-radius: 8px;
  background: var(--mw-white);
  padding: 0 12px;
  font-size: 16px;
}

.mw-mobile-search button {
  min-width: 78px;
  height: 44px;
  border: 1px solid var(--mw-black);
  border-radius: 8px;
  background: var(--mw-black);
  color: var(--mw-white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.mw-mega {
  border-bottom: 1px solid var(--mw-line);
  background: var(--mw-white);
}

.mw-mega__inner {
  display: flex;
  justify-content: center;
  gap: 28px;
  overflow-x: auto;
  padding: 14px 32px;
  text-transform: uppercase;
  font-size: 12px;
  white-space: nowrap;
}

.mw-mega__inner a {
  color: #2c2b29;
  font-size: 11px;
  letter-spacing: 0.35px;
}

.mw-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #ddd5ca;
}

.mw-hero__media {
  position: absolute;
  inset: 0;
}

.mw-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mw-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--mw-white);
  text-transform: uppercase;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.28);
}

.mw-home-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: #8b8781;
}

.mw-home-hero--video {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: clamp(560px, 72vh, 760px);
  place-items: center;
  overflow: hidden;
  background: #d9d0c5;
}

.mw-home-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mw-home-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 38, 33, 0.24);
}

.mw-home-hero__copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 90px 10vw;
  color: var(--mw-white);
}

.mw-home-hero--video .mw-home-hero__copy {
  justify-content: center;
  width: 100%;
  min-height: inherit;
  padding: 120px 24px;
  text-align: center;
}

.mw-home-hero__discount {
  margin: 0 0 6px;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.25);
}

.mw-home-hero h1 {
  margin: 0 0 28px;
  font-family: var(--mw-serif);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.25);
}

.mw-home-hero .mw-button {
  min-height: 46px;
  padding: 0 38px;
  border-color: var(--mw-white);
  background: var(--mw-white);
  color: var(--mw-black);
  font-size: 12px;
}

.mw-home-hero__image {
  min-width: 0;
  overflow: hidden;
  background: #ddd7cd;
}

.mw-home-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mw-press-strip {
  background: var(--mw-white);
  border-bottom: 1px solid var(--mw-line);
  overflow: hidden;
}

.mw-press-strip__track {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(24px, 4vw, 54px);
  min-height: 64px;
  overflow-x: auto;
  padding: 0 28px;
  color: #3d3c3a;
  white-space: nowrap;
  animation: Royal KinzyPressDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.mw-press-strip__track span {
  font-family: var(--mw-serif);
  font-size: clamp(13px, 1.6vw, 22px);
  font-weight: 700;
}

@keyframes Royal KinzyPressDrift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-18vw, 0, 0);
  }
}

.mw-watch-marquee {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--mw-line);
  background: var(--mw-white);
}

.mw-watch-marquee__track {
  display: flex;
  width: max-content;
  animation: Royal KinzyWatchMarquee 12s linear infinite;
  animation-play-state: running;
  will-change: transform;
}

.mw-watch-marquee__group {
  display: flex;
  flex: none;
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  min-height: 58px;
  padding: 0 clamp(18px, 3vw, 34px);
  white-space: nowrap;
}

.mw-watch-marquee__group span {
  color: #292724;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(14px, 1.15vw, 18px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

@keyframes Royal KinzyWatchMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mw-press-strip__track,
  .mw-watch-marquee__track {
    animation: none;
  }
}

.mw-hero-models {
  background: #fff;
  border-bottom: 1px solid var(--mw-line);
  padding: 24px 0 28px;
}

.mw-hero-models__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 16px;
}

.mw-hero-models__header p,
.mw-hero-models__header a {
  margin: 0;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mw-hero-models__header a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

.mw-hero-models__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mw-hero-model {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e6e0d8;
  background: #f7f5f1;
  color: #111;
}

.mw-hero-model__image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1.08;
  padding: 22px;
  background: #f7f5f1;
}

.mw-hero-model__image img {
  width: 100%;
  height: 100%;
  max-width: 230px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.mw-hero-model:hover .mw-hero-model__image img {
  transform: translateY(-4px) scale(1.02);
}

.mw-hero-model__body {
  display: grid;
  gap: 5px;
  min-height: 76px;
  padding: 13px 15px 15px;
  border-top: 1px solid #e6e0d8;
  background: #fff;
}

.mw-hero-model__body strong {
  overflow: hidden;
  color: #111;
  font-size: 12px;
  line-height: 1.35;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.mw-hero-model__body span {
  color: #68645f;
  font-size: 12px;
  line-height: 1.4;
}

.mw-feature-collections {
  background: var(--mw-white);
  padding: 22px 0 0;
  overflow: hidden;
}

.mw-feature-collections__rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(270px, 1fr));
  gap: 6px;
  width: 100%;
}

.mw-feature-tile {
  position: relative;
  display: block;
  min-height: 520px;
  overflow: hidden;
  background: #222;
}

.mw-feature-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.mw-feature-tile:hover img {
  transform: scale(1.035);
}

.mw-feature-tile::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0));
  content: "";
}

.mw-feature-tile span {
  position: absolute;
  left: 14px;
  bottom: 16px;
  z-index: 1;
  color: var(--mw-white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.mw-home-products {
  background: var(--mw-white);
  padding-top: 42px;
}

.mw-home-products__eyebrow {
  margin: 0 0 8px;
  color: var(--mw-muted);
  text-align: center;
  text-transform: uppercase;
  font-size: 11px;
}

.mw-home-tabs {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin: 0 0 28px;
  text-transform: uppercase;
  font-size: 12px;
}

.mw-home-tabs a {
  border-bottom: 1px solid transparent;
  padding-bottom: 5px;
}

.mw-home-tabs a:first-child {
  border-color: currentColor;
}

.mw-home-products .mw-products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 56px 80px;
}

.mw-home-products .mw-product-card__image {
  aspect-ratio: 1 / 1.28;
  background: #f5f4f2;
}

.mw-home-products .mw-product-card__title {
  font-size: 11px;
  line-height: 1.45;
}

.mw-hero__eyebrow {
  margin: 0 0 8px;
  font-size: clamp(22px, 4vw, 54px);
  line-height: 1;
}

.mw-hero__title {
  margin: 0 0 26px;
  font-family: var(--mw-serif);
  font-size: clamp(24px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
}

.mw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 34px;
  border: 1px solid var(--mw-black);
  background: var(--mw-black);
  color: var(--mw-white);
  text-transform: uppercase;
  font-size: 12px;
}

.mw-button--light {
  border-color: var(--mw-white);
  background: var(--mw-white);
  color: var(--mw-black);
  text-shadow: none;
}

.mw-section {
  padding: 54px 0;
}

.mw-section--tight {
  padding: 34px 0;
}

.mw-section__heading {
  margin: 0 0 28px;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--mw-serif);
  font-size: 22px;
  font-weight: 400;
}

.mw-press {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
}

.mw-press__item {
  display: grid;
  place-items: center;
  min-height: 58px;
  color: #8a857d;
  font-family: var(--mw-serif);
  font-size: 20px;
  text-transform: uppercase;
}

.mw-collections {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.mw-collections a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  text-transform: uppercase;
  font-size: 12px;
}

.mw-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px 22px;
}

.mw-product-card {
  min-width: 0;
}

.mw-product-card__image {
  aspect-ratio: 1 / 1.22;
  background: var(--mw-soft);
  overflow: hidden;
}

.mw-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.mw-product-card__title {
  margin: 14px 0 4px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
}

.mw-product-card__price {
  color: var(--mw-muted);
  font-size: 13px;
}

.mw-trust {
  border-top: 1px solid var(--mw-line);
  border-bottom: 1px solid var(--mw-line);
  background: var(--mw-white);
}

.mw-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.mw-trust__item {
  display: grid;
  place-items: center;
  min-height: 112px;
  border-right: 1px solid var(--mw-line);
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
}

.mw-trust__item:last-child {
  border-right: 0;
}

.mw-footer {
  background: var(--mw-black);
  color: var(--mw-white);
  padding: 54px 0 28px;
}

.mw-footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.8fr 0.9fr 1.25fr;
  gap: 34px;
}

.mw-footer h2,
.mw-footer h3 {
  margin: 0 0 16px;
  text-transform: uppercase;
  font-family: var(--mw-serif);
  font-size: 16px;
  font-weight: 400;
}

.mw-footer__logo {
  width: min(320px, 100%);
  max-height: 76px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 14px;
}

.mw-footer a {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.mw-footer ul,
.mw-footer .menu {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mw-footer li,
.mw-footer .menu-item {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mw-footer li a,
.mw-footer .menu-item a {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.76);
}

.mw-footer__bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.mw-footer-trust {
  min-width: 0;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.gv-pay {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 18px;
}

.gv-pay__label {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.payment-icon {
  display: flex;
  width: 100%;
  min-width: 0;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
}

.payment-icon img {
  display: block;
  width: 64px;
  max-width: 70%;
  height: 22px;
  object-fit: contain;
  object-position: center;
}

.mw-us-notices {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
}

.mw-us-notices div {
  position: relative;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: transparent;
  padding: 0 0 14px 18px;
}

.mw-us-notices div::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #b9855b;
  box-shadow: 0 0 0 3px rgba(185, 133, 91, 0.13);
}

.mw-us-notices div:last-child {
  padding-bottom: 0;
}

.mw-us-notices strong {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.86);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.mw-us-notices span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.5;
}

.mw-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.mw-social-links a {
  margin: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mw-newsletter {
  margin-top: 20px;
}

.mw-newsletter label {
  display: block;
  margin-bottom: 10px;
  color: var(--mw-white);
  text-transform: uppercase;
  font-family: var(--mw-serif);
  font-size: 14px;
}

.mw-newsletter div {
  display: flex;
  gap: 8px;
}

.mw-newsletter input {
  min-width: 0;
  flex: 1;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--mw-white);
  padding: 0 12px;
}

.mw-newsletter .mw-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.mw-newsletter button {
  height: 40px;
  border: 1px solid var(--mw-white);
  background: var(--mw-white);
  color: var(--mw-black);
  padding: 0 16px;
  text-transform: uppercase;
  font-size: 11px;
}

.mw-newsletter__message {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1.45;
}

.mw-cookie {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 2147483647;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  max-width: min(520px, calc(100vw - 36px));
  border: 1px solid var(--mw-line);
  background: var(--mw-white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  padding: 16px;
  pointer-events: auto;
  touch-action: manipulation;
}

.mw-cookie[hidden] {
  display: none;
}

.mw-cookie p {
  margin: 0;
  color: var(--mw-muted);
  font-size: 13px;
  line-height: 1.5;
}

.mw-cookie__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.mw-cookie button {
  height: 38px;
  border: 0;
  background: var(--mw-black);
  color: var(--mw-white);
  padding: 0 18px;
  text-transform: uppercase;
  font-size: 11px;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 3;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.mw-cookie button[data-cookie-reject] {
  border: 1px solid var(--mw-line);
  background: var(--mw-white);
  color: var(--mw-black);
}

.mw-cookie button:hover {
  background: #2d2d2d;
}

.mw-error-page {
  min-height: 58vh;
  text-align: center;
}

.mw-error-page h1 {
  margin: 0 0 14px;
  font-family: var(--mw-serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  text-transform: uppercase;
}

.mw-error-page p {
  max-width: 620px;
  margin: 0 auto 22px;
  color: var(--mw-muted);
}

.mw-error-page form {
  display: flex;
  max-width: 520px;
  margin: 28px auto;
}

.mw-error-page input[type="search"] {
  flex: 1;
  min-width: 0;
  height: 46px;
  border: 1px solid var(--mw-line);
  padding: 0 14px;
}

.mw-error-page input[type="submit"] {
  height: 46px;
  border: 0;
  background: var(--mw-black);
  color: var(--mw-white);
  padding: 0 20px;
  text-transform: uppercase;
}

.mw-error-page__actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.woocommerce div.product {
  max-width: var(--mw-max);
  margin: 0 auto;
  padding: 48px 32px;
}

body.single-product .mw-product-page {
  background: var(--mw-white);
}

body.single-product .woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: start;
  padding-top: clamp(44px, 6vw, 84px);
  padding-bottom: 30px;
}

body.single-product .woocommerce div.product div.images,
body.single-product .woocommerce div.product div.summary {
  float: none;
  width: auto;
  margin: 0;
}

body.single-product .woocommerce div.product div.images {
  background: #f5f4f2;
}

body.single-product .woocommerce div.product div.images img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

body.single-product .woocommerce div.product div.summary {
  max-width: 560px;
  padding-top: 10px;
}

.woocommerce div.product .product_title {
  text-transform: uppercase;
  font-family: var(--mw-serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--mw-ink);
  font-size: 18px;
}

body.single-product .woocommerce-product-details__short-description {
  color: var(--mw-muted);
  line-height: 1.7;
}

body.single-product .woocommerce div.product form.cart {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin: 28px 0 24px;
}

body.single-product .woocommerce div.product form.cart div.quantity {
  float: none;
  margin: 0;
}

body.single-product .woocommerce div.product form.cart .qty {
  width: 76px;
  height: 48px;
  border: 1px solid var(--mw-line);
  text-align: center;
}

.woocommerce div.product form.cart .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  border-radius: 0;
  background: var(--mw-black);
  color: var(--mw-white);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
}

body.single-product .woocommerce div.product form.cart .single_add_to_cart_button {
  min-width: 230px;
  min-height: 48px;
  padding: 0 34px;
}

.mw-single-badges {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  color: var(--mw-muted);
  text-transform: uppercase;
  font-size: 12px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  border-bottom: 1px solid var(--mw-line);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 0;
  border-radius: 0;
  background: transparent;
  text-transform: uppercase;
  font-size: 12px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: transparent;
  border-bottom: 1px solid var(--mw-black);
}

body.single-product .woocommerce div.product .woocommerce-tabs,
body.single-product .woocommerce div.product .related,
body.single-product .woocommerce div.product .upsells {
  grid-column: 1 / -1;
}

body.single-product .woocommerce div.product .woocommerce-tabs {
  margin-top: 34px;
}

body.single-product .woocommerce div.product .related,
body.single-product .woocommerce div.product .upsells {
  margin-top: 54px;
}

body.single-product .woocommerce div.product .related > h2,
body.single-product .woocommerce div.product .upsells > h2 {
  margin: 0 0 28px;
  font-family: var(--mw-serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}

.woocommerce ul.products {
  max-width: var(--mw-max);
  margin-left: auto;
  margin-right: auto;
  padding: 0 32px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
}

.woocommerce ul.products li.product .price {
  color: var(--mw-muted);
}

body.single-product .woocommerce div.product .related ul.products,
body.single-product .woocommerce div.product .upsells ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px 28px;
  max-width: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.single-product .woocommerce div.product .related ul.products::before,
body.single-product .woocommerce div.product .related ul.products::after,
body.single-product .woocommerce div.product .upsells ul.products::before,
body.single-product .woocommerce div.product .upsells ul.products::after {
  display: none;
}

body.single-product .woocommerce div.product .related ul.products li.product,
body.single-product .woocommerce div.product .upsells ul.products li.product {
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.single-product .woocommerce div.product .related ul.products li.product::before,
body.single-product .woocommerce div.product .upsells ul.products li.product::before {
  display: none;
  content: none;
}

body.single-product .woocommerce div.product .related ul.products li.product a img,
body.single-product .woocommerce div.product .upsells ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1 / 1.28;
  object-fit: cover;
  background: #f5f4f2;
}

body.single-product .woocommerce div.product .related ul.products li.product .button,
body.single-product .woocommerce div.product .upsells ul.products li.product .button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 0 14px;
  font-size: 10px;
}

.mw-shop-hero {
  background: var(--mw-white);
  border-bottom: 1px solid var(--mw-line);
  padding: 70px 0 62px;
  text-align: center;
}

.mw-shop-hero__eyebrow {
  margin: 0 0 12px;
  color: var(--mw-accent);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mw-shop-hero h1 {
  margin: 0;
  font-family: var(--mw-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  text-transform: uppercase;
}

.mw-shop-hero p:last-child {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--mw-muted);
  font-size: 14px;
}

.mw-shop-toolbar {
  background: var(--mw-bg);
  border-bottom: 1px solid var(--mw-line);
}

.mw-shop-toolbar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 58px;
  gap: 18px;
}

.mw-view-icons {
  display: grid;
  grid-template-columns: repeat(4, 7px);
  gap: 4px;
  width: max-content;
}

.mw-view-icons span {
  width: 7px;
  height: 7px;
  border: 1px solid var(--mw-muted);
}

.mw-shop-count {
  color: var(--mw-muted);
  font-size: 12px;
  text-transform: uppercase;
}

.mw-shop-sort {
  justify-self: end;
}

.mw-shop-sort .woocommerce-ordering {
  margin: 0;
}

.mw-shop-sort select {
  min-height: 38px;
  border: 1px solid var(--mw-line);
  background: var(--mw-white);
  color: var(--mw-ink);
  padding: 0 34px 0 12px;
  text-transform: uppercase;
  font-size: 11px;
}

.mw-shop-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 44px;
  padding-top: 42px;
  padding-bottom: 68px;
}

.mw-shop-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
  padding: 4px 0;
}

.mw-shop-sidebar details {
  border-bottom: 1px solid var(--mw-line);
  padding: 0;
}

.mw-shop-sidebar summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 52px;
  cursor: pointer;
  list-style: none;
  color: var(--mw-ink);
  text-transform: uppercase;
  color: #292826;
  font-size: 11px;
  letter-spacing: .6px;
}

.mw-shop-sidebar summary::-webkit-details-marker {
  display: none;
}

.mw-shop-sidebar summary::after {
  content: "+";
  color: var(--mw-muted);
  font-size: 16px;
}

.mw-shop-sidebar details[open] summary::after {
  content: "-";
}

.mw-shop-sidebar a,
.mw-shop-sidebar li {
  display: block;
  margin: 0;
  color: var(--mw-muted);
  font-size: 13px;
  line-height: 1.25;
}

.mw-shop-sidebar ul {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.mw-shop-sidebar li a,
.mw-shop-sidebar details > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 0;
  color: #74716d;
  transition: color .2s ease, transform .2s ease;
}

.mw-shop-sidebar a em {
  display: inline-flex;
  min-width: 24px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f1ece5;
  color: #6b6258;
  font-size: 11px;
  font-style: normal;
  line-height: 1;
}

.mw-shop-sidebar a.is-active,
.mw-shop-sidebar li.current-cat > a {
  color: #111;
  font-weight: 700;
}

.mw-shop-sidebar a.is-active em,
.mw-shop-sidebar li.current-cat > a em {
  background: #111;
  color: #fff;
}

.mw-shop-sidebar li a:hover,
.mw-shop-sidebar details > a:hover {
  color: var(--mw-black);
  transform: translateX(2px);
}

.mw-shop-results .woocommerce ul.products,
.woocommerce .mw-shop-results ul.products,
.mw-shop-results ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 46px 28px;
  max-width: none;
  margin: 0;
  padding: 0;
}

.woocommerce .mw-shop-results ul.products::before,
.woocommerce .mw-shop-results ul.products::after {
  display: none;
}

.woocommerce .mw-shop-results ul.products li.product {
  float: none;
  width: auto;
  margin: 0;
  text-align: left;
}

.woocommerce .mw-shop-results ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1 / 1.28;
  margin: 0 0 16px;
  background: #f4f3f1;
  object-fit: cover;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.woocommerce .mw-shop-results ul.products li.product:hover a img {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
}

.woocommerce .mw-shop-results ul.products li.product .woocommerce-loop-product__title {
  min-height: 36px;
  padding: 0;
  color: var(--mw-ink);
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.4px;
}

.woocommerce .mw-shop-results ul.products li.product .price {
  color: var(--mw-muted);
  font-size: 12px;
}

.woocommerce .mw-shop-results ul.products li.product .button {
  display: none;
}

.woocommerce nav.woocommerce-pagination {
  display: flex;
  justify-content: center;
  margin-top: 58px;
}

.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce nav.woocommerce-pagination ul li {
  display: block;
  border: 0;
  float: none;
  margin: 0;
  list-style: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--mw-line);
  background: var(--mw-white);
  color: var(--mw-ink);
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--mw-black);
  color: var(--mw-white);
  border-color: var(--mw-black);
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--mw-black);
  color: var(--mw-white);
  border-color: var(--mw-black);
}

.Royal Kinzy-policy-page,
.vgc-policy-page {
  max-width: 880px;
  margin: 0 auto;
  color: var(--mw-ink);
  font-size: 15px;
  line-height: 1.75;
}

.Royal Kinzy-policy-page h2,
.vgc-policy-page h2 {
  margin: 28px 0 10px;
  font-family: var(--mw-serif);
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
}

.Royal Kinzy-policy-page p,
.vgc-policy-page p {
  margin: 0 0 14px;
}

.Royal Kinzy-policy-page ul,
.vgc-policy-page ul {
  margin: 0 0 18px 22px;
  padding: 0;
}

.Royal Kinzy-policy-page li,
.vgc-policy-page li {
  margin: 5px 0;
}

@media (max-width: 1024px) {
  .mw-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mw-hero-models__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mw-press {
    grid-template-columns: repeat(3, 1fr);
  }

  .mw-shop-layout {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 28px;
  }

  .mw-shop-results ul.products,
  .woocommerce .mw-shop-results ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mw-feature-collections__rail {
    overflow-x: auto;
  }

  .mw-home-products .mw-products {
    gap: 38px 24px;
  }

  body.single-product .woocommerce div.product {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 36px;
  }

  body.single-product .woocommerce div.product .related ul.products,
  body.single-product .woocommerce div.product .upsells ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .mw-container {
    padding: 0 18px;
  }

  .mw-header__inner {
    grid-template-columns: auto 1fr auto;
    min-height: 64px;
  }

  .mw-nav,
  .mw-actions a:not(.mw-cart-link) {
    display: none;
  }

  .mw-menu-toggle {
    display: block;
  }

  .mw-logo {
    justify-self: center;
    font-size: 20px;
    letter-spacing: 3px;
  }

  .mw-logo img {
    width: min(58px, 18vw);
    max-height: 48px;
  }

  .mw-mega {
    display: none;
  }

  .mw-hero {
    min-height: 520px;
  }

  .mw-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 14px;
  }

  .mw-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mw-trust__item:nth-child(2n) {
    border-right: 0;
  }

  .mw-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .mw-home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mw-home-hero__copy {
    min-height: 260px;
    padding: 54px 28px;
  }

  .mw-home-hero__image {
    min-height: 340px;
  }

  .mw-feature-tile {
    min-height: 430px;
  }

  .mw-home-products .mw-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mw-hero-model__image {
    padding: 16px;
  }

  .mw-shop-toolbar__inner {
    grid-template-columns: auto 1fr;
  }

  .mw-shop-count {
    display: none;
  }

  .mw-shop-layout {
    grid-template-columns: 1fr;
    padding-top: 24px;
  }

  .mw-shop-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .mw-shop-sidebar details {
    border: 1px solid var(--mw-line);
    background: var(--mw-white);
    padding: 0 12px;
  }

  body.single-product .woocommerce div.product {
    display: block;
    padding: 28px 18px;
  }

  body.single-product .woocommerce div.product div.summary {
    max-width: none;
    padding-top: 26px;
  }

  body.single-product .woocommerce div.product form.cart {
    flex-wrap: wrap;
  }

  body.single-product .woocommerce div.product form.cart .single_add_to_cart_button {
    flex: 1 1 210px;
  }

  body.single-product .woocommerce div.product .related ul.products,
  body.single-product .woocommerce div.product .upsells ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 14px;
  }
}

@media (max-width: 560px) {
  .mw-hero {
    min-height: 460px;
  }

  .mw-products {
    grid-template-columns: 1fr 1fr;
  }

  .mw-hero-models {
    padding: 18px 0 22px;
  }

  .mw-hero-models__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .mw-hero-models__grid {
    gap: 10px;
  }

  .mw-hero-model__body {
    min-height: 68px;
    padding: 10px 11px 12px;
  }

  .mw-hero-model__body strong {
    font-size: 11px;
  }

  .mw-press {
    grid-template-columns: repeat(2, 1fr);
  }

  .mw-footer__grid {
    grid-template-columns: 1fr;
  }

  .mw-shop-hero {
    padding: 44px 0 38px;
  }

  .mw-shop-sidebar {
    grid-template-columns: 1fr;
  }

  .mw-shop-results ul.products,
  .woocommerce .mw-shop-results ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 14px;
  }

  body.single-product .woocommerce div.product form.cart .qty,
  body.single-product .woocommerce div.product form.cart .single_add_to_cart_button {
    width: 100%;
  }
}

/* BEGIN VGC extracted home critical */
body.mw-theme .mw-home-hero.mw-home-hero--video {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    place-items: center !important;
    width: 100% !important;
    min-height: clamp(560px, 74vh, 780px) !important;
    overflow: hidden !important;
    background: #d9d0c5 !important;
  }
  body.mw-theme .mw-home-hero__video {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
  }
  body.mw-theme .mw-home-hero__overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background: rgba(32, 28, 24, 0.32) !important;
  }
  body.mw-theme .mw-home-hero__copy {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: inherit !important;
    padding: 120px 24px !important;
    color: #fff !important;
    text-align: center !important;
  }
  body.mw-theme .mw-home-hero__discount {
    margin: 0 0 10px !important;
    color: #fff !important;
    font-size: clamp(32px, 4vw, 58px) !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    text-shadow: 0 2px 22px rgba(0,0,0,.32) !important;
  }
  body.mw-theme .mw-home-hero h1 {
    margin: 0 0 30px !important;
    color: #fff !important;
    font-family: "Times New Roman", Times, serif !important;
    font-size: clamp(38px, 5vw, 76px) !important;
    font-weight: 400 !important;
    line-height: 1.04 !important;
    text-transform: uppercase !important;
    text-shadow: 0 2px 22px rgba(0,0,0,.32) !important;
  }
  body.mw-theme .mw-home-hero .mw-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 46px !important;
    padding: 0 38px !important;
    border: 1px solid #fff !important;
    background: #fff !important;
    color: #111 !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
  }
  body.mw-theme .mw-press-strip {
    display: block !important;
    background: #fff !important;
    border-bottom: 1px solid #e8e4df !important;
  }
  body.mw-theme .mw-press-strip__track {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: clamp(22px, 4vw, 54px) !important;
    min-height: 64px !important;
    overflow-x: auto !important;
    padding: 0 28px !important;
    white-space: nowrap !important;
  }
  body.mw-theme .mw-press-strip__track span {
    color: #3d3c3a !important;
    font-family: "Times New Roman", Times, serif !important;
    font-size: clamp(13px, 1.6vw, 22px) !important;
    font-weight: 700 !important;
  }
  body.mw-theme .mw-feature-collections {
    display: block !important;
    background: #fff !important;
    padding: 22px 0 0 !important;
    overflow: hidden !important;
  }
  body.mw-theme .mw-feature-collections__rail {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(260px, 1fr)) !important;
    gap: 6px !important;
    width: 100% !important;
  }
  body.mw-theme .mw-feature-tile {
    position: relative !important;
    display: block !important;
    min-height: 520px !important;
    overflow: hidden !important;
    background: #222 !important;
  }
  body.mw-theme .mw-feature-tile img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
  }
  body.mw-theme .mw-feature-tile span {
    position: absolute !important;
    left: 14px !important;
    bottom: 16px !important;
    z-index: 2 !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
  }
  body.mw-theme .mw-home-products {
    display: block !important;
    background: #fff !important;
    padding-top: 42px !important;
  }
  body.mw-theme .mw-home-products .mw-products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 56px 80px !important;
    width: 100% !important;
  }
  body.mw-theme .mw-home-products .mw-product-card {
    min-width: 0 !important;
  }
  body.mw-theme .mw-home-products .mw-product-card__image {
    display: block !important;
    aspect-ratio: 1 / 1.28 !important;
    background: #f5f4f2 !important;
    overflow: hidden !important;
  }
  body.mw-theme .mw-home-products .mw-product-card__image img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
  }
  @media (max-width: 1024px) {
    body.mw-theme .mw-feature-collections__rail { overflow-x: auto !important; }
    body.mw-theme .mw-home-products .mw-products { gap: 38px 24px !important; }
  }
  @media (max-width: 820px) {
    body.mw-theme .mw-home-hero.mw-home-hero--video { min-height: 520px !important; }
    body.mw-theme .mw-feature-tile { min-height: 430px !important; }
    body.mw-theme .mw-home-products .mw-products { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 30px 14px !important; }
  }
/* END VGC extracted home critical */


/* BEGIN VGC extracted shop critical */
.mw-shop-hero{background:#fff;border-bottom:1px solid #e8e4df;padding:72px 0 60px;text-align:center}
  .mw-shop-hero__eyebrow{margin:0 0 12px;color:#9d6b4e;font-size:11px;letter-spacing:2px;text-transform:uppercase}
  .mw-shop-hero h1{margin:0;font-family:"Times New Roman",serif;font-size:44px;font-weight:400;text-transform:uppercase}
  .mw-shop-hero p:last-child{max-width:620px;margin:14px auto 0;color:#707070;font-size:14px}
  .mw-shop-toolbar{background:#fbfaf8;border-bottom:1px solid #e8e4df}
  .mw-shop-toolbar__inner{display:grid!important;grid-template-columns:1fr auto 1fr!important;align-items:center!important;min-height:58px;gap:18px}
  .mw-view-icons{display:grid;grid-template-columns:repeat(4,7px);gap:4px;width:max-content}
  .mw-view-icons span{width:7px;height:7px;border:1px solid #707070}
  .mw-shop-count{color:#707070;font-size:12px;text-transform:uppercase}
  .mw-shop-sort{justify-self:end}.mw-shop-sort .woocommerce-ordering{margin:0}
  .mw-shop-sort select{min-height:38px;border:1px solid #e8e4df;background:#fff;padding:0 34px 0 12px;text-transform:uppercase;font-size:11px}
  .mw-shop-layout{display:grid!important;grid-template-columns:240px minmax(0,1fr)!important;gap:44px!important;width:min(100%,1440px)!important;margin:0 auto!important;padding:42px 32px 70px!important}
  .mw-shop-sidebar{position:sticky;top:120px;align-self:start}
  .mw-shop-sidebar details{border-bottom:1px solid #e8e4df;padding:0}.mw-shop-sidebar summary{display:flex;justify-content:space-between;align-items:center;min-height:52px;cursor:pointer;list-style:none;text-transform:uppercase;font-size:12px}.mw-shop-sidebar summary::-webkit-details-marker{display:none}.mw-shop-sidebar summary:after{content:"+";color:#707070;font-size:16px}.mw-shop-sidebar details[open] summary:after{content:"-"}
  .mw-shop-sidebar ul{margin:0 0 14px;padding:0;list-style:none}.mw-shop-sidebar li{display:block;margin:0;list-style:none}.mw-shop-sidebar li a,.mw-shop-sidebar details>a{display:block;margin:0;padding:7px 0;color:#74716d;font-size:13px;line-height:1.25;text-decoration:none;transition:color .2s ease,transform .2s ease}.mw-shop-sidebar li a:hover,.mw-shop-sidebar details>a:hover{color:#111;transform:translateX(2px)}
  .mw-archive-grid{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:50px 28px!important}
  .mw-archive-card{min-width:0}.mw-archive-card__image{display:block;aspect-ratio:1/1.28;background:#f5f4f2;overflow:hidden}.mw-archive-card__image img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease,box-shadow .35s ease}.mw-archive-card:hover img{transform:translateY(-3px);box-shadow:0 18px 38px rgba(0,0,0,.08)}
  .mw-archive-card__title{margin:14px 0 4px;text-transform:uppercase;font-size:12px;font-weight:400;line-height:1.45}.mw-archive-card__price{color:#707070;font-size:12px}
  body.mw-theme .woocommerce nav.woocommerce-pagination{display:flex!important;justify-content:center!important;margin-top:58px!important}
  body.mw-theme .woocommerce nav.woocommerce-pagination ul{display:flex!important;align-items:center!important;justify-content:center!important;gap:8px!important;border:0!important;margin:0!important;padding:0!important;list-style:none!important}
  body.mw-theme .woocommerce nav.woocommerce-pagination ul li{display:block!important;float:none!important;border:0!important;margin:0!important;padding:0!important;list-style:none!important}
  body.mw-theme .woocommerce nav.woocommerce-pagination ul li:before{display:none!important;content:none!important}
  body.mw-theme .woocommerce nav.woocommerce-pagination ul li a,body.mw-theme .woocommerce nav.woocommerce-pagination ul li span{display:grid!important;place-items:center!important;min-width:38px!important;height:38px!important;padding:0 12px!important;border:1px solid #e8e4df!important;background:#fff!important;color:#252525!important;font-size:12px!important;line-height:1!important;text-decoration:none!important}
  body.mw-theme .woocommerce nav.woocommerce-pagination ul li span.current,body.mw-theme .woocommerce nav.woocommerce-pagination ul li a:hover{background:#111!important;color:#fff!important;border-color:#111!important}
  @media(max-width:1024px){.mw-shop-layout{grid-template-columns:190px minmax(0,1fr)!important;gap:28px!important}.mw-archive-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important}}
  @media(max-width:820px){.mw-shop-toolbar__inner{grid-template-columns:auto 1fr!important}.mw-shop-count{display:none}.mw-shop-layout{grid-template-columns:1fr!important;padding:24px 18px 60px!important}.mw-shop-sidebar{position:static;display:grid;grid-template-columns:repeat(3,1fr);gap:14px}.mw-shop-sidebar details{border:1px solid #e8e4df;background:#fff;padding:0 12px}.mw-archive-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:30px 14px!important}}
  @media(max-width:560px){.mw-shop-hero{padding:44px 0 38px}.mw-shop-hero h1{font-size:32px}.mw-shop-sidebar{grid-template-columns:1fr}}
/* END VGC extracted shop critical */

/* Royal Kinzy policy pages inspired by the reference layout */
body.mw-theme .rk-policy-layout {
  background: #fff;
}

body.mw-theme .rk-policy-hero {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: clamp(64px, 8vw, 116px) 24px clamp(56px, 7vw, 92px);
  border-bottom: 1px solid #e7e0d7;
  background: #fff;
  text-align: center;
}

body.mw-theme .rk-policy-hero p {
  margin: 0;
  color: #9d6b4e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.34em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.mw-theme .rk-policy-hero h1 {
  max-width: 980px;
  margin: 0;
  color: #111;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

body.mw-theme .rk-policy-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 66px) 24px clamp(64px, 8vw, 112px);
  background:
    linear-gradient(90deg, transparent 0, transparent calc(50% - 1px), rgba(157, 107, 78, 0.08) calc(50% - 1px), rgba(157, 107, 78, 0.08) 50%, transparent 50%),
    #fff;
}

body.mw-theme .rk-policy-quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto clamp(24px, 3vw, 38px);
}

body.mw-theme .rk-policy-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 6px 14px;
  align-items: center;
  min-height: 118px;
  border: 1px solid #e4d9cc;
  border-radius: 10px;
  padding: 18px;
  background: #fbf7f1;
  box-shadow: 0 18px 45px rgba(36, 29, 22, 0.06);
}

body.mw-theme .rk-policy-card__icon {
  grid-row: span 2;
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid #d9c8b6;
  border-radius: 999px;
  background: #fff;
  color: #8b5d3d;
}

body.mw-theme .rk-policy-card__icon::before,
body.mw-theme .rk-policy-card__icon::after {
  content: "";
  position: absolute;
  display: block;
}

body.mw-theme .rk-policy-card__icon--plane::before {
  width: 27px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-24deg);
}

body.mw-theme .rk-policy-card__icon--plane::after {
  width: 15px;
  height: 15px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translate(-1px, 1px) rotate(-24deg) skewX(-18deg);
}

body.mw-theme .rk-policy-card__icon--truck::before {
  width: 27px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 3px;
  box-shadow: 11px 4px 0 -3px #fff, 11px 4px 0 -1px currentColor;
}

body.mw-theme .rk-policy-card__icon--truck::after {
  width: 28px;
  height: 7px;
  border-left: 5px solid currentColor;
  border-right: 5px solid currentColor;
  border-radius: 999px;
  transform: translateY(13px);
}

body.mw-theme .rk-policy-card__icon--package::before {
  width: 24px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

body.mw-theme .rk-policy-card__icon--package::after {
  width: 2px;
  height: 22px;
  background: currentColor;
  transform: translateY(0);
}

body.mw-theme .rk-policy-card__icon--calendar::before {
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 4px;
  box-shadow: inset 0 7px 0 rgba(139, 93, 61, 0.16);
}

body.mw-theme .rk-policy-card__icon--calendar::after {
  width: 14px;
  height: 2px;
  background: currentColor;
  transform: translateY(4px);
}

body.mw-theme .rk-policy-card__icon--shield::before {
  width: 24px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 12px 12px 14px 14px;
  transform: scaleX(0.86);
}

body.mw-theme .rk-policy-card__icon--shield::after {
  width: 11px;
  height: 6px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

body.mw-theme .rk-policy-card strong {
  color: #16130f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

body.mw-theme .rk-policy-card span:last-child {
  color: #655c53;
  font-size: 13px;
  line-height: 1.5;
}

body.mw-theme .rk-policy-article {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid #e2d8cc;
  border-radius: 12px;
  padding: clamp(28px, 4vw, 52px);
  background: #fff;
  box-shadow: 0 24px 70px rgba(35, 28, 20, 0.08);
  color: #292724;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.78;
}

body.mw-theme .rk-policy-article .royalkinzy-policy-page {
  display: grid;
  gap: 0;
}

body.mw-theme .rk-policy-article h2 {
  margin: 0 0 22px;
  color: #111;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}

body.mw-theme .rk-policy-article h3 {
  margin: 34px 0 12px;
  padding-top: 24px;
  border-top: 1px solid #e8e1d8;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

body.mw-theme .rk-policy-article p {
  margin: 0 0 16px;
  color: #47413b;
}

body.mw-theme .rk-policy-article p:first-of-type {
  color: #24211d;
  font-size: 16px;
}

body.mw-theme .rk-policy-article ul,
body.mw-theme .rk-policy-article ol {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

body.mw-theme .rk-policy-article li {
  position: relative;
  margin: 0 0 9px;
  padding-left: 22px;
  color: #47413b;
}

body.mw-theme .rk-policy-article li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9d6b4e;
}

body.mw-theme .rk-policy-article strong {
  color: #16130f;
  font-weight: 800;
}

body.mw-theme .rk-policy-article a {
  color: #111;
  text-decoration-color: #9d6b4e;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

body.mw-theme .rk-policy-article .gv-email,
body.mw-theme .rk-policy-article a[href^="tel:"] {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid #e4dacf;
  border-radius: 999px;
  padding: 0 12px;
  background: #fbfaf8;
  color: #111;
  font-size: 13px;
  line-height: 1;
}

@media (max-width: 640px) {
  body.mw-theme .rk-policy-shell {
    padding-inline: 18px;
  }

  body.mw-theme .rk-policy-quick {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.mw-theme .rk-policy-card {
    min-height: 92px;
    padding: 15px;
  }

  body.mw-theme .rk-policy-hero {
    padding-top: 48px;
    padding-bottom: 42px;
  }

  body.mw-theme .rk-policy-article {
    font-size: 14px;
    line-height: 1.72;
    padding: 24px 18px;
  }
}

/* Mobile header search in the right-side marked area */
body.mw-theme .mw-mobile-header-search {
  display: none;
}

@media (max-width: 820px) {
  body.mw-theme .mw-header__inner {
    grid-template-columns: 72px minmax(132px, 1fr) 72px !important;
    gap: 10px !important;
  }

  body.mw-theme .mw-mobile-header-search {
    justify-self: end !important;
    width: 42px !important;
    height: 42px !important;
    display: grid !important;
    grid-template-columns: 0 42px !important;
    align-items: center !important;
    border: 1px solid #ded2c4 !important;
    border-radius: 999px !important;
    background: #fbf6ee !important;
    box-shadow: 0 8px 22px rgba(109, 80, 52, 0.08) !important;
    overflow: hidden !important;
  }

  body.mw-theme .mw-mobile-header-search input[type="search"] {
    width: 100% !important;
    min-width: 0 !important;
    height: 40px !important;
    border: 0 !important;
    background: transparent !important;
    padding: 0 0 0 14px !important;
    color: #191612 !important;
    font-size: 13px !important;
    outline: 0 !important;
  }

  body.mw-theme .mw-mobile-header-search input[type="search"]::placeholder {
    color: #7b736a !important;
    opacity: 1 !important;
  }

  body.mw-theme .mw-mobile-header-search button {
    width: 42px !important;
    height: 42px !important;
    display: grid !important;
    place-items: center !important;
    border: 0 !important;
    border-left: 1px solid #e5dbce !important;
    background: #f3eadf !important;
    color: #6d4b31 !important;
    cursor: pointer !important;
  }

  body.mw-theme .mw-mobile-header-search:focus-within {
    width: min(38vw, 150px) !important;
    grid-template-columns: minmax(0, 1fr) 42px !important;
  }

  body.mw-theme .mw-mobile-header-search button span {
    width: 14px !important;
    height: 14px !important;
    display: block !important;
    border: 2px solid #6d4b31 !important;
    border-radius: 999px !important;
    position: relative !important;
  }

  body.mw-theme .mw-mobile-header-search button span::after {
    content: "" !important;
    width: 7px !important;
    height: 2px !important;
    position: absolute !important;
    right: -6px !important;
    bottom: -4px !important;
    background: #6d4b31 !important;
    transform: rotate(45deg) !important;
    transform-origin: center !important;
  }
}

@media (max-width: 430px) {
  body.mw-theme .mw-header__inner {
    grid-template-columns: 58px minmax(126px, 1fr) 58px !important;
    gap: 8px !important;
  }

  body.mw-theme .mw-mobile-header-search {
    width: 48px !important;
    grid-template-columns: 0 48px !important;
    border-radius: 999px !important;
  }

  body.mw-theme .mw-mobile-header-search:focus-within {
    width: min(40vw, 140px) !important;
    grid-template-columns: minmax(0, 1fr) 42px !important;
  }

  body.mw-theme .mw-mobile-header-search input[type="search"] {
    padding-left: 12px !important;
  }
}

/* Royal Kinzy restored product image fit */
body.mw-theme .mw-products,
body.mw-theme .mw-home-products .mw-products,
body.mw-theme .mw-shop-results ul.products,
body.mw-theme.woocommerce .mw-shop-results ul.products,
body.single-product .woocommerce div.product .related ul.products,
body.single-product .woocommerce div.product .upsells ul.products {
  align-items: start !important;
}

body.mw-theme .mw-product-card,
body.mw-theme .mw-home-products .mw-product-card,
body.mw-theme .mw-hero-model,
body.mw-theme .mw-shop-results ul.products li.product,
body.mw-theme.woocommerce .mw-shop-results ul.products li.product,
body.single-product .woocommerce div.product .related ul.products li.product,
body.single-product .woocommerce div.product .upsells ul.products li.product {
  display: grid !important;
  grid-template-rows: auto minmax(58px, auto) auto !important;
  min-width: 0 !important;
}

body.mw-theme .mw-product-card__image,
body.mw-theme .mw-home-products .mw-product-card__image,
body.mw-theme .mw-hero-model__image,
body.mw-theme .mw-archive-card__image,
body.mw-theme .mw-shop-results ul.products li.product a:first-child,
body.mw-theme.woocommerce .mw-shop-results ul.products li.product a:first-child {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  aspect-ratio: 1 / 1 !important;
  min-height: 0 !important;
  padding: clamp(6px, 1.1vw, 13px) !important;
  border: 1px solid #eee8df !important;
  background: #f8f6f2 !important;
  overflow: hidden !important;
}

body.mw-theme .mw-product-card__image img,
body.mw-theme .mw-home-products .mw-product-card__image img,
body.mw-theme .mw-hero-model__image img,
body.mw-theme .mw-archive-card__image img,
body.mw-theme .mw-shop-results ul.products li.product a img,
body.mw-theme.woocommerce .mw-shop-results ul.products li.product a img,
body.single-product .woocommerce div.product .related ul.products li.product a img,
body.single-product .woocommerce div.product .upsells ul.products li.product a img {
  width: 108% !important;
  height: 108% !important;
  max-width: 108% !important;
  max-height: 108% !important;
  aspect-ratio: auto !important;
  margin: 0 !important;
  background: transparent !important;
  object-fit: contain !important;
  mix-blend-mode: multiply;
  transition: transform 0.28s ease !important;
}

body.mw-theme .mw-product-card:hover img,
body.mw-theme .mw-home-products .mw-product-card:hover img,
body.mw-theme .mw-hero-model:hover img,
body.mw-theme .mw-shop-results ul.products li.product:hover a img,
body.mw-theme.woocommerce .mw-shop-results ul.products li.product:hover a img {
  transform: translateY(-3px) scale(1.015) !important;
  box-shadow: none !important;
}

body.mw-theme .mw-product-card__title,
body.mw-theme .mw-home-products .mw-product-card__title,
body.mw-theme .mw-shop-results ul.products li.product .woocommerce-loop-product__title,
body.mw-theme.woocommerce .mw-shop-results ul.products li.product .woocommerce-loop-product__title {
  min-height: 42px !important;
  margin: 13px 0 5px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
}

body.mw-theme .mw-product-card__price,
body.mw-theme .mw-home-products .mw-product-card__price,
body.mw-theme .mw-shop-results ul.products li.product .price,
body.mw-theme.woocommerce .mw-shop-results ul.products li.product .price {
  min-height: 18px !important;
  color: #6f6860 !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
}

@media (max-width: 560px) {
  body.mw-theme .mw-product-card__image,
  body.mw-theme .mw-home-products .mw-product-card__image,
  body.mw-theme .mw-hero-model__image,
  body.mw-theme .mw-archive-card__image,
  body.mw-theme .mw-shop-results ul.products li.product a:first-child,
  body.mw-theme.woocommerce .mw-shop-results ul.products li.product a:first-child {
    padding: 6px !important;
  }
}

/* BEGIN VGC framed shop layout */
body.mw-theme .mw-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid #e7e2db;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 28px rgba(31, 27, 22, 0.04);
}

body.mw-theme .mw-header__inner {
  min-height: 78px;
}

body.mw-theme .mw-nav,
body.mw-theme .mw-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

body.mw-theme .mw-nav a,
body.mw-theme .mw-actions a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 13px;
  color: #2b2926;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

body.mw-theme .mw-nav a:hover,
body.mw-theme .mw-actions a:hover,
body.mw-theme .mw-cart-link {
  border-color: #e7e2db;
  background: #f7f4ef;
}

body.mw-theme .mw-logo {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid #e7e2db;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(31, 27, 22, 0.08);
}

body.mw-theme .mw-logo img {
  max-width: 42px;
  max-height: 42px;
}

body.mw-theme .mw-mega {
  border-bottom: 1px solid #e7e2db;
  background: #faf8f5;
}

body.mw-theme .mw-mega__inner {
  width: min(100%, 1240px);
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
  padding: 0 24px;
}

body.mw-theme .mw-mega a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 13px;
  color: #252525;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}

body.mw-theme .mw-mega a:hover {
  border-color: #e3ddd4;
  background: #fff;
}

body.mw-theme .mw-shop-hero {
  background: #fbfaf8 !important;
  padding: 74px 0 68px !important;
}

body.mw-theme .mw-shop-toolbar {
  border: 0 !important;
  background: #f6f2ec !important;
  padding: 18px 0 !important;
}

body.mw-theme .mw-shop-toolbar__inner {
  min-height: 64px !important;
  border: 1px solid #e4ded5 !important;
  border-radius: 8px !important;
  background: #fff !important;
  padding: 0 18px !important;
  box-shadow: 0 14px 34px rgba(31, 27, 22, 0.05) !important;
}

body.mw-theme .mw-view-icons {
  display: inline-flex !important;
  width: auto !important;
  align-items: center !important;
  gap: 6px !important;
  border: 1px solid #e4ded5 !important;
  border-radius: 999px !important;
  background: #fbfaf8 !important;
  padding: 9px 12px !important;
}

body.mw-theme .mw-view-icons span {
  width: 6px !important;
  height: 6px !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #8a847c !important;
}

body.mw-theme .mw-shop-count {
  color: #5f5a53 !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
}

body.mw-theme .mw-shop-sort select {
  min-height: 42px !important;
  border: 1px solid #e4ded5 !important;
  border-radius: 999px !important;
  background-color: #fbfaf8 !important;
  padding: 0 40px 0 18px !important;
}

body.mw-theme .mw-shop-layout {
  grid-template-columns: 300px minmax(0, 1fr) !important;
  gap: 48px !important;
  width: min(100%, 1400px) !important;
  padding: 34px 32px 86px !important;
  background: #fff !important;
}

body.mw-theme .mw-shop-sidebar {
  top: 118px !important;
  border: 1px solid #e4ded5 !important;
  border-radius: 8px !important;
  background: #fbfaf8 !important;
  padding: 20px !important;
  box-shadow: 0 18px 44px rgba(31, 27, 22, 0.06) !important;
}

body.mw-theme .mw-shop-sidebar details {
  border: 1px solid #ebe5dd !important;
  border-radius: 8px !important;
  background: #fff !important;
  padding: 0 !important;
  overflow: hidden !important;
}

body.mw-theme .mw-shop-sidebar details + details {
  margin-top: 12px !important;
}

body.mw-theme .mw-shop-sidebar summary {
  min-height: 48px !important;
  padding: 0 14px !important;
  border-bottom: 1px solid #eee8df !important;
  color: #252525 !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
}

body.mw-theme .mw-shop-sidebar details:not([open]) summary {
  border-bottom: 0 !important;
}

body.mw-theme .mw-shop-sidebar summary::after {
  width: 22px !important;
  height: 22px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  background: #f4f0ea !important;
  color: #6e675f !important;
  font-size: 14px !important;
}

body.mw-theme .mw-shop-sidebar ul {
  display: grid !important;
  gap: 3px !important;
  margin: 10px 0 !important;
  padding: 0 10px !important;
}

body.mw-theme .mw-shop-sidebar li a,
body.mw-theme .mw-shop-sidebar details > a {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  border-radius: 6px !important;
  padding: 9px 10px !important;
  color: #69645d !important;
  line-height: 1.25 !important;
}

body.mw-theme .mw-shop-sidebar li a:hover,
body.mw-theme .mw-shop-sidebar details > a:hover,
body.mw-theme .mw-shop-sidebar .current-cat > a {
  background: #f4f0ea !important;
  color: #111 !important;
  transform: none !important;
}

body.mw-theme .mw-shop-sidebar a.is-active {
  background: #f4f0ea !important;
  color: #111 !important;
  font-weight: 700 !important;
}

body.mw-theme .mw-shop-sidebar a em {
  display: inline-flex !important;
  min-width: 24px !important;
  height: 22px !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: #ece6dd !important;
  color: #6b6258 !important;
  font-size: 11px !important;
  font-style: normal !important;
  line-height: 1 !important;
}

body.mw-theme .mw-shop-sidebar a.is-active em,
body.mw-theme .mw-shop-sidebar li.current-cat > a em {
  background: #111 !important;
  color: #fff !important;
}

body.mw-theme .mw-shop-results {
  min-width: 0 !important;
}

body.mw-theme .mw-archive-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 46px 34px !important;
}

body.mw-theme .mw-archive-card {
  min-width: 0 !important;
}

body.mw-theme .mw-archive-card__image {
  border: 1px solid #f0ebe4 !important;
  border-radius: 8px !important;
  background: #f7f5f1 !important;
}

body.mw-theme .mw-archive-card__image img {
  border-radius: 8px !important;
}

body.mw-theme .mw-archive-card__title {
  margin-top: 16px !important;
  font-size: 13px !important;
  letter-spacing: 0.02em !important;
}

@media (max-width: 1180px) {
  body.mw-theme .mw-shop-layout {
    grid-template-columns: 270px minmax(0, 1fr) !important;
    gap: 34px !important;
  }

  body.mw-theme .mw-archive-grid {
    gap: 38px 22px !important;
  }
}

@media (max-width: 900px) {
  body.mw-theme .mw-nav,
  body.mw-theme .mw-actions a:not(.mw-cart-link) {
    display: none !important;
  }

  body.mw-theme .mw-header-search {
    display: none !important;
  }

  body.mw-theme .mw-shop-toolbar__inner {
    grid-template-columns: 1fr !important;
    justify-items: stretch !important;
    gap: 12px !important;
    padding: 14px !important;
  }

  body.mw-theme .mw-shop-sort {
    justify-self: stretch !important;
  }

  body.mw-theme .mw-shop-sort select {
    width: 100% !important;
  }

  body.mw-theme .mw-shop-layout {
    grid-template-columns: 1fr !important;
    padding: 24px 18px 70px !important;
  }

  body.mw-theme .mw-shop-sidebar {
    position: static !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    padding: 14px !important;
  }

  body.mw-theme .mw-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* BEGIN VGC audit shop mobile overflow fix */
@media (max-width: 900px) {
  html,
  body.mw-theme {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  body.mw-theme .mw-shop-layout.mw-container {
    width: 100vw !important;
    max-width: 100vw !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    overflow: hidden !important;
  }

  body.mw-theme .mw-shop-results {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  body.mw-theme .mw-archive-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 37vw)) !important;
    gap: 28px 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  body.mw-theme .mw-archive-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  body.mw-theme .mw-archive-card__image {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 1 / 1.22 !important;
  }

  body.mw-theme .mw-archive-card__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    padding: 8px !important;
  }

  body.mw-theme .mw-archive-card__title,
  body.mw-theme .mw-archive-card__price {
    width: 100% !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  body.mw-theme .mw-archive-card__title {
    min-height: 3.1em !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
  }
}

@media (max-width: 430px) {
  body.mw-theme .mw-shop-results {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
  }

  body.mw-theme .mw-archive-grid {
    grid-template-columns: repeat(2, minmax(0, calc(50vw - 19px))) !important;
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
  }
}
/* END VGC audit shop mobile overflow fix */

@media (max-width: 560px) {
  body.mw-theme .mw-shop-sidebar,
  body.mw-theme .mw-archive-grid {
    grid-template-columns: 1fr !important;
  }

  body.mw-theme .mw-shop-layout {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}
/* END VGC framed shop layout */

/* BEGIN VGC V6 related products horizontal hardening */
body.single-product section.related.products,
body.single-product .related.products,
body.single-product .woocommerce div.product .related.products {
  clear: both !important;
  display: block !important;
  width: 100% !important;
  max-width: var(--mw-max) !important;
  margin: clamp(54px, 6vw, 86px) auto 0 !important;
  padding: 0 32px !important;
  box-sizing: border-box !important;
}

body.single-product section.related.products > h2,
body.single-product .related.products > h2,
body.single-product .woocommerce div.product .related.products > h2 {
  margin: 0 0 32px !important;
  font-family: var(--mw-serif) !important;
  font-size: clamp(26px, 3vw, 40px) !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  letter-spacing: 0 !important;
}

body.single-product section.related.products ul.products,
body.single-product .related.products ul.products,
body.single-product .woocommerce div.product .related ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 34px !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.single-product section.related.products ul.products::before,
body.single-product section.related.products ul.products::after,
body.single-product .related.products ul.products::before,
body.single-product .related.products ul.products::after,
body.single-product .woocommerce div.product .related ul.products::before,
body.single-product .woocommerce div.product .related ul.products::after {
  content: none !important;
  display: none !important;
}

body.single-product section.related.products ul.products li.product,
body.single-product .related.products ul.products li.product,
body.single-product .woocommerce div.product .related ul.products li.product,
body.single-product .woocommerce ul.products li.product.product {
  clear: none !important;
  float: none !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.single-product .related.products ul.products li.product a.woocommerce-LoopProduct-link {
  display: block !important;
  color: inherit !important;
  text-decoration: none !important;
}

body.single-product .related.products ul.products li.product a img,
body.single-product .woocommerce div.product .related ul.products li.product a img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1.28 !important;
  object-fit: cover !important;
  margin: 0 0 16px !important;
  background: #f7f5f1 !important;
  border-radius: 8px !important;
}

body.single-product .related.products ul.products li.product .woocommerce-loop-product__title,
body.single-product .woocommerce div.product .related ul.products li.product .woocommerce-loop-product__title {
  min-height: 2.7em !important;
  margin: 0 0 7px !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

body.single-product .related.products ul.products li.product .price,
body.single-product .woocommerce div.product .related ul.products li.product .price {
  display: block !important;
  margin: 0 0 12px !important;
  color: var(--mw-text) !important;
  font-size: 13px !important;
}

body.single-product .related.products ul.products li.product .button,
body.single-product .woocommerce div.product .related ul.products li.product .button {
  display: inline-flex !important;
  min-height: 36px !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 0 !important;
  padding: 0 16px !important;
  border: 1px solid var(--mw-charcoal) !important;
  background: var(--mw-charcoal) !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

@media (max-width: 1024px) {
  body.single-product section.related.products ul.products,
  body.single-product .related.products ul.products,
  body.single-product .woocommerce div.product .related ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 28px !important;
  }
}

@media (max-width: 760px) {
  body.single-product section.related.products,
  body.single-product .related.products,
  body.single-product .woocommerce div.product .related.products {
    padding: 0 18px !important;
  }

  body.single-product section.related.products ul.products,
  body.single-product .related.products ul.products,
  body.single-product .woocommerce div.product .related ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px 14px !important;
  }
}

@media (max-width: 460px) {
  body.single-product section.related.products ul.products,
  body.single-product .related.products ul.products,
  body.single-product .woocommerce div.product .related ul.products {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}
/* END VGC V6 related products horizontal hardening */

/* BEGIN VGC mobile-first production hardening */
body.mw-mobile-menu-open {
  overflow: hidden !important;
}

@media (max-width: 900px) {
  html,
  body {
    max-width: 100% !important;
    overflow-x: hidden !important;
    -webkit-text-size-adjust: 100%;
  }

  body.mw-theme .mw-topbar {
    min-height: 30px !important;
    height: auto !important;
    padding: 0 !important;
    font-size: 10px !important;
    letter-spacing: 0 !important;
    line-height: 1.25 !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: hidden !important;
  }

  body.mw-theme .mw-topbar__track {
    animation-duration: 18s !important;
  }

  body.mw-theme .mw-topbar__item {
    min-height: 30px !important;
    padding: 0 22px !important;
  }

  body.mw-theme .mw-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 2000 !important;
    background: rgba(255, 255, 255, 0.98) !important;
  }

  body.mw-theme .mw-header__inner {
    grid-template-columns: 58px minmax(126px, 1fr) 58px !important;
    min-height: 62px !important;
    gap: 10px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  body.mw-theme .mw-menu-toggle {
    position: relative !important;
    display: grid !important;
    place-items: center !important;
    width: 42px !important;
    height: 42px !important;
    border: 1px solid #e4ded5 !important;
    border-radius: 999px !important;
    background: #fff !important;
    padding: 0 !important;
    box-shadow: 0 8px 22px rgba(31, 27, 22, 0.06) !important;
    justify-self: start !important;
  }

  body.mw-theme .mw-menu-toggle span,
  body.mw-theme .mw-menu-toggle::before,
  body.mw-theme .mw-menu-toggle::after {
    width: 17px !important;
    height: 1px !important;
    margin: 3px auto !important;
    background: #252525 !important;
    transition: transform 0.2s ease, opacity 0.2s ease !important;
  }

  body.mw-theme .mw-menu-toggle[aria-expanded="true"] span {
    opacity: 0 !important;
  }

  body.mw-theme .mw-menu-toggle[aria-expanded="true"]::before {
    transform: translateY(4px) rotate(45deg) !important;
  }

  body.mw-theme .mw-menu-toggle[aria-expanded="true"]::after {
    transform: translateY(-4px) rotate(-45deg) !important;
  }

  body.mw-theme .mw-logo {
    justify-self: center !important;
    width: 48px !important;
    height: 48px !important;
  }

  body.mw-theme .mw-logo img {
    width: 34px !important;
    max-width: 34px !important;
    max-height: 34px !important;
  }

  body.mw-theme .mw-actions {
    display: none !important;
    justify-content: flex-end !important;
    gap: 0 !important;
  }

  body.mw-theme .mw-actions a:not(.mw-cart-link) {
    display: none !important;
  }

  body.mw-theme .mw-cart-link {
    min-height: 38px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    font-size: 10px !important;
    white-space: nowrap !important;
  }

  body.mw-theme .mw-mobile-panel {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    top: calc(30px + 62px + env(safe-area-inset-top, 0px)) !important;
    z-index: 1999 !important;
    display: block !important;
    max-height: min(72vh, 540px) !important;
    overflow-y: auto !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-8px) !important;
    border: 1px solid #e4ded5 !important;
    border-radius: 10px !important;
    background: #fff !important;
    box-shadow: 0 24px 70px rgba(31, 27, 22, 0.18) !important;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease !important;
  }

  body.mw-theme .mw-mobile-panel.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }

  body.mw-theme .mw-mobile-panel ul,
  body.mw-theme .mw-mobile-panel li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  body.mw-theme .mw-mobile-panel a {
    display: flex !important;
    min-height: 48px !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-bottom: 1px solid #eee8df !important;
    padding: 0 18px !important;
    color: #252525 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
  }

  body.mw-theme .mw-mobile-panel a::after {
    content: ">";
    color: #9d6b4e;
    font-size: 13px;
  }

  body.mw-theme .mw-mega {
    display: none !important;
  }

  body.mw-theme .mw-home-hero.mw-home-hero--video {
    min-height: clamp(365px, 56vh, 470px) !important;
  }

  body.mw-theme .mw-home-hero__copy {
    min-height: inherit !important;
    padding: 44px 18px !important;
  }

  body.mw-theme .mw-home-hero__discount {
    max-width: calc(100vw - 36px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: clamp(20px, 6.2vw, 28px) !important;
    line-height: 1.12 !important;
    overflow-wrap: anywhere !important;
  }

  body.mw-theme .mw-home-hero h1 {
    max-width: min(340px, calc(100vw - 36px)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: clamp(30px, 8.2vw, 38px) !important;
    line-height: 1.08 !important;
    overflow-wrap: break-word !important;
  }

  body.mw-theme .mw-home-hero .mw-button {
    min-height: 42px !important;
    padding: 0 24px !important;
  }

  body.mw-theme .mw-press-strip__track {
    min-height: 54px !important;
    padding: 0 16px !important;
    gap: 26px !important;
    -webkit-overflow-scrolling: touch !important;
  }

  body.mw-theme .mw-feature-collections {
    padding-top: 10px !important;
  }

  body.mw-theme .mw-feature-collections__rail {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: minmax(72vw, 1fr) !important;
    grid-template-columns: none !important;
    gap: 8px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
  }

  body.mw-theme .mw-feature-tile {
    min-height: 390px !important;
    scroll-snap-align: start !important;
  }

  body.mw-theme .mw-section,
  body.mw-theme .mw-home-products {
    padding-top: 34px !important;
    padding-bottom: 42px !important;
  }

  body.mw-theme .mw-home-tabs {
    display: flex !important;
    gap: 10px !important;
    overflow-x: auto !important;
    padding-bottom: 4px !important;
    white-space: nowrap !important;
  }

  body.mw-theme .mw-home-products .mw-products,
  body.mw-theme .mw-products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 30px 14px !important;
  }

  body.mw-theme .mw-product-card__title,
  body.mw-theme .mw-archive-card__title {
    min-height: 2.8em !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
  }

  body.mw-theme .mw-shop-hero {
    padding: 44px 0 34px !important;
  }

  body.mw-theme .mw-shop-hero h1 {
    font-size: clamp(34px, 10vw, 44px) !important;
  }

  body.mw-theme .mw-shop-hero p:last-child {
    max-width: 32ch !important;
    font-size: 13px !important;
  }

  body.mw-theme .mw-shop-toolbar {
    padding: 12px 0 !important;
  }

  body.mw-theme .mw-shop-toolbar__inner {
    grid-template-columns: auto minmax(0, 1fr) !important;
    min-height: 0 !important;
    gap: 10px !important;
    padding: 10px !important;
  }

  body.mw-theme .mw-view-icons {
    padding: 8px 10px !important;
  }

  body.mw-theme .mw-shop-sort select {
    width: 100% !important;
    min-height: 40px !important;
    font-size: 11px !important;
  }

  body.mw-theme .mw-shop-layout {
    display: block !important;
    padding: 18px 14px 58px !important;
  }

  body.mw-theme .mw-shop-sidebar {
    position: static !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-bottom: 24px !important;
    padding: 12px !important;
    border-radius: 10px !important;
  }

  body.mw-theme .mw-shop-sidebar details + details {
    margin-top: 0 !important;
  }

  body.mw-theme .mw-shop-sidebar summary {
    min-height: 44px !important;
  }

  body.mw-theme .mw-shop-sidebar ul {
    max-height: 260px !important;
    overflow-y: auto !important;
  }

  body.mw-theme .mw-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 30px 14px !important;
  }

  body.mw-theme .woocommerce nav.woocommerce-pagination {
    margin-top: 38px !important;
  }

  body.mw-theme .woocommerce nav.woocommerce-pagination ul {
    flex-wrap: wrap !important;
    gap: 7px !important;
  }

  body.mw-theme .woocommerce nav.woocommerce-pagination ul li a,
  body.mw-theme .woocommerce nav.woocommerce-pagination ul li span {
    min-width: 40px !important;
    height: 40px !important;
    border-radius: 999px !important;
  }

  body.single-product .woocommerce div.product {
    display: block !important;
    padding: 22px 14px 48px !important;
  }

  body.single-product .woocommerce div.product div.images {
    border-radius: 10px !important;
    overflow: hidden !important;
  }

  body.single-product .woocommerce div.product div.summary {
    max-width: none !important;
    padding-top: 24px !important;
  }

  body.single-product .woocommerce div.product .product_title {
    font-size: clamp(30px, 9vw, 42px) !important;
    line-height: 1.08 !important;
  }

  body.single-product .woocommerce div.product p.price,
  body.single-product .woocommerce div.product span.price {
    font-size: 18px !important;
  }

  body.single-product .woocommerce-product-details__short-description {
    font-size: 13px !important;
  }

  body.single-product .woocommerce div.product form.cart {
    display: grid !important;
    grid-template-columns: 76px minmax(0, 1fr) !important;
    gap: 10px !important;
    margin: 22px 0 !important;
  }

  body.single-product .woocommerce div.product form.cart .qty {
    width: 100% !important;
    height: 48px !important;
  }

  body.single-product .woocommerce div.product form.cart .single_add_to_cart_button {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 48px !important;
    padding: 0 14px !important;
  }

  body.single-product .woocommerce div.product .woocommerce-tabs {
    margin-top: 28px !important;
  }

  body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs {
    display: grid !important;
    gap: 8px !important;
    padding: 0 !important;
  }

  body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    border-radius: 8px !important;
  }

  body.single-product section.related.products,
  body.single-product .related.products,
  body.single-product .woocommerce div.product .related.products {
    margin-top: 44px !important;
    padding: 0 !important;
  }

  body.single-product section.related.products ul.products,
  body.single-product .related.products ul.products,
  body.single-product .woocommerce div.product .related ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 26px 14px !important;
  }

  body.single-product .related.products ul.products li.product .button,
  body.single-product .woocommerce div.product .related ul.products li.product .button {
    width: 100% !important;
    min-height: 38px !important;
    padding: 0 10px !important;
  }

  body.mw-theme .woocommerce-cart-form,
  body.mw-theme .woocommerce-cart .cart-collaterals,
  body.mw-theme .woocommerce-checkout form.checkout,
  body.mw-theme .woocommerce-account .woocommerce,
  body.mw-theme .woocommerce .woocommerce-order {
    width: min(100%, 100vw) !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  body.mw-theme .woocommerce table.shop_table {
    display: block !important;
    width: 100% !important;
    overflow-x: auto !important;
    border-radius: 8px !important;
    -webkit-overflow-scrolling: touch !important;
  }

  body.mw-theme .woocommerce table.shop_table th,
  body.mw-theme .woocommerce table.shop_table td {
    min-width: 110px !important;
    padding: 12px 10px !important;
    font-size: 12px !important;
  }

  body.mw-theme .woocommerce form .form-row,
  body.mw-theme .woocommerce-checkout #customer_details,
  body.mw-theme .woocommerce-checkout #order_review,
  body.mw-theme .woocommerce-checkout #order_review_heading {
    width: 100% !important;
    float: none !important;
  }

  body.mw-theme .woocommerce form .form-row input.input-text,
  body.mw-theme .woocommerce form .form-row textarea,
  body.mw-theme .woocommerce form .form-row select,
  body.mw-theme .select2-container .select2-selection--single {
    min-height: 46px !important;
    font-size: 16px !important;
  }

  body.mw-theme .woocommerce a.button,
  body.mw-theme .woocommerce button.button,
  body.mw-theme .woocommerce input.button,
  body.mw-theme .woocommerce #payment #place_order {
    min-height: 46px !important;
    width: 100% !important;
    text-align: center !important;
  }

  body.mw-theme .mw-footer {
    padding: 38px 0 24px !important;
  }

  body.mw-theme .mw-footer__grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  body.mw-theme .mw-footer h2,
  body.mw-theme .mw-footer h3 {
    margin-bottom: 12px !important;
  }

  body.mw-theme .mw-footer a,
  body.mw-theme .mw-footer li a,
  body.mw-theme .mw-footer .menu-item a {
    min-height: 34px !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
  }

  body.mw-theme .mw-payment-badges {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  body.mw-theme .mw-cookie {
    left: 12px !important;
    right: 12px !important;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px)) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    max-width: none !important;
    padding: 14px !important;
    border-radius: 10px !important;
    z-index: 2147483647 !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
  }

  body.mw-theme .mw-cookie p {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  body.mw-theme .mw-cookie button {
    width: 100% !important;
    min-height: 42px !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 3 !important;
  }

  body.mw-theme .mw-cookie__actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    position: relative !important;
    z-index: 2 !important;
  }
}

@media (max-width: 430px) {
  body.mw-theme .mw-container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  body.mw-theme .mw-home-products .mw-products,
  body.mw-theme .mw-products,
  body.mw-theme .mw-archive-grid,
  body.single-product section.related.products ul.products,
  body.single-product .related.products ul.products,
  body.single-product .woocommerce div.product .related ul.products {
    gap: 24px 10px !important;
  }

  body.mw-theme .mw-product-card__title,
  body.mw-theme .mw-archive-card__title,
  body.single-product .related.products ul.products li.product .woocommerce-loop-product__title {
    font-size: 11px !important;
  }
}

@media (max-width: 360px) {
  body.mw-theme .mw-cart-link {
    padding: 0 9px !important;
    font-size: 9px !important;
  }

  body.mw-theme .mw-home-products .mw-products,
  body.mw-theme .mw-products,
  body.mw-theme .mw-archive-grid,
  body.single-product section.related.products ul.products,
  body.single-product .related.products ul.products,
  body.single-product .woocommerce div.product .related ul.products {
    grid-template-columns: 1fr !important;
  }

  body.single-product .woocommerce div.product form.cart {
    grid-template-columns: 1fr !important;
  }
}
/* END VGC mobile-first production hardening */

/* BEGIN VGC mobile menu tap reliability */
.mw-cookie[hidden],
body.mw-theme .mw-cookie[hidden] {
  display: none !important;
}

@media (max-width: 900px) {
  body.mw-theme .mw-menu-toggle {
    position: relative !important;
    z-index: 2105 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  body.mw-theme .mw-menu-toggle span,
  body.mw-theme .mw-menu-toggle::before,
  body.mw-theme .mw-menu-toggle::after {
    pointer-events: none !important;
  }

  body.mw-theme .mw-header__inner,
  body.mw-theme .mw-header {
    overflow: visible !important;
  }

  body.mw-theme .mw-mobile-panel {
    pointer-events: auto !important;
  }
}
/* END VGC mobile menu tap reliability */

/* BEGIN VGC 1.2.8 Voncher-style single product layout */
body.single-product .mw-product-page {
  background: var(--mw-white) !important;
  padding: clamp(18px, 3vw, 42px) 0 0 !important;
}

body.single-product .mw-product-shell {
  width: min(100%, var(--mw-max)) !important;
  margin: 0 auto !important;
  padding: 0 32px !important;
}

body.single-product .mw-product-breadcrumb {
  margin: 0 0 clamp(18px, 3vw, 34px) !important;
  color: #777 !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
  text-transform: uppercase !important;
}

body.single-product .mw-product-breadcrumb .woocommerce-breadcrumb {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
  color: inherit !important;
}

body.single-product .mw-product-breadcrumb a {
  color: #363636 !important;
  text-decoration: none !important;
}

body.single-product .mw-product-page div.product.type-product,
body.single-product .mw-product-shell > div.product.type-product {
  clear: both !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr) !important;
  gap: clamp(34px, 5vw, 76px) !important;
  align-items: start !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.single-product .mw-product-page div.product.type-product::before,
body.single-product .mw-product-page div.product.type-product::after {
  content: none !important;
  display: none !important;
}

body.single-product .mw-product-page div.product.type-product > .woocommerce-product-gallery,
body.single-product .mw-product-page div.product.type-product > div.images {
  float: none !important;
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  opacity: 1 !important;
  position: relative !important;
}

body.single-product .mw-product-page div.product.type-product > .summary,
body.single-product .mw-product-page div.product.type-product > div.summary {
  float: none !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
  width: 100% !important;
  max-width: 560px !important;
  margin: 0 !important;
  padding: 2px 0 0 !important;
}

body.single-product .woocommerce-product-gallery__wrapper,
body.single-product .woocommerce-product-gallery .flex-viewport {
  margin: 0 !important;
  overflow: hidden !important;
  border: 1px solid #f0ebe4 !important;
  border-radius: 8px !important;
  background: #f7f5f1 !important;
}

body.single-product .woocommerce-product-gallery__image,
body.single-product .woocommerce-product-gallery__image a {
  display: block !important;
  width: 100% !important;
  background: #f7f5f1 !important;
}

body.single-product .woocommerce-product-gallery__image img,
body.single-product div.product div.images img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: contain !important;
  padding: clamp(18px, 3vw, 42px) !important;
  background: #f7f5f1 !important;
}

body.single-product .woocommerce-product-gallery__trigger {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.single-product div.product.type-product ol.flex-control-thumbs,
body.single-product div.product.type-product .flex-control-nav.flex-control-thumbs {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 12px !important;
  width: 100% !important;
  margin: 16px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
  counter-reset: none !important;
}

body.single-product div.product.type-product ol.flex-control-thumbs li,
body.single-product div.product.type-product .flex-control-nav.flex-control-thumbs li {
  float: none !important;
  display: block !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.single-product div.product.type-product ol.flex-control-thumbs li::marker,
body.single-product div.product.type-product .flex-control-nav.flex-control-thumbs li::marker {
  content: "" !important;
  font-size: 0 !important;
}

body.single-product div.product.type-product ol.flex-control-thumbs img,
body.single-product div.product.type-product .flex-control-nav.flex-control-thumbs img {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  padding: 8px !important;
  object-fit: contain !important;
  border: 1px solid #eee8df !important;
  border-radius: 6px !important;
  background: #f7f5f1 !important;
  opacity: 0.72 !important;
  cursor: pointer !important;
}

body.single-product div.product.type-product ol.flex-control-thumbs img.flex-active,
body.single-product div.product.type-product .flex-control-nav.flex-control-thumbs img.flex-active,
body.single-product div.product.type-product ol.flex-control-thumbs img:hover {
  border-color: var(--mw-black) !important;
  opacity: 1 !important;
}

body.single-product div.product.type-product .product_title {
  margin: 0 0 16px !important;
  color: var(--mw-ink) !important;
  font-family: var(--mw-serif) !important;
  font-size: clamp(36px, 4.3vw, 62px) !important;
  font-weight: 400 !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

body.single-product div.product.type-product p.price,
body.single-product div.product.type-product span.price {
  display: block !important;
  margin: 0 0 22px !important;
  color: var(--mw-black) !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
}

body.single-product .woocommerce-product-details__short-description {
  margin: 0 0 22px !important;
  padding: 18px 0 !important;
  border-top: 1px solid var(--mw-line) !important;
  border-bottom: 1px solid var(--mw-line) !important;
  color: #4f4f4f !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
}

body.single-product .woocommerce-product-details__short-description p {
  margin: 0 !important;
}

body.single-product .mw-single-badges {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  margin: 0 0 24px !important;
}

body.single-product .mw-single-badges span {
  display: flex !important;
  min-height: 36px !important;
  align-items: center !important;
  padding: 0 12px !important;
  border: 1px solid #eee8df !important;
  border-radius: 6px !important;
  background: #fbfaf8 !important;
  color: #555 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

body.single-product div.product.type-product form.cart {
  display: grid !important;
  grid-template-columns: 84px minmax(0, 1fr) !important;
  gap: 12px !important;
  align-items: stretch !important;
  margin: 26px 0 !important;
}

body.single-product div.product.type-product form.cart .quantity {
  float: none !important;
  margin: 0 !important;
}

body.single-product div.product.type-product form.cart .qty {
  width: 100% !important;
  min-width: 0 !important;
  height: 52px !important;
  min-height: 52px !important;
  border: 1px solid #d8d1c8 !important;
  border-radius: 0 !important;
  background: var(--mw-white) !important;
  color: var(--mw-black) !important;
  text-align: center !important;
  font-size: 16px !important;
}

body.single-product div.product.type-product form.cart .single_add_to_cart_button {
  display: inline-flex !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 52px !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 24px !important;
  border: 1px solid var(--mw-black) !important;
  border-radius: 0 !important;
  background: var(--mw-black) !important;
  color: var(--mw-white) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

body.single-product .mw-product-info-blocks {
  display: grid !important;
  gap: 14px !important;
  margin: 0 0 24px !important;
}

body.single-product .mw-product-info-card {
  padding: 18px !important;
  border: 1px solid var(--mw-line) !important;
  border-radius: 8px !important;
  background: #fbfaf8 !important;
}

body.single-product .mw-product-info-card h2 {
  margin: 0 0 12px !important;
  color: var(--mw-ink) !important;
  font-family: var(--mw-sans) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

body.single-product .mw-product-info-card ul {
  display: grid !important;
  gap: 8px !important;
  margin: 0 0 12px !important;
  padding: 0 !important;
  list-style: none !important;
  color: #555 !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
}

body.single-product .mw-product-info-card li {
  margin: 0 !important;
  padding-left: 16px !important;
  position: relative !important;
}

body.single-product .mw-product-info-card li::before {
  content: "" !important;
  position: absolute !important;
  top: 0.74em !important;
  left: 0 !important;
  width: 5px !important;
  height: 5px !important;
  border-radius: 50% !important;
  background: var(--mw-accent) !important;
}

body.single-product .mw-product-info-card p {
  margin: 0 !important;
  color: #555 !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
}

body.single-product .mw-product-info-card a {
  color: var(--mw-black) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

body.single-product .mw-product-specs-card dl {
  display: grid !important;
  gap: 0 !important;
  margin: 0 !important;
}

body.single-product .mw-product-specs-card dl div {
  display: grid !important;
  grid-template-columns: 110px minmax(0, 1fr) !important;
  gap: 12px !important;
  padding: 9px 0 !important;
  border-bottom: 1px solid #ece7df !important;
}

body.single-product .mw-product-specs-card dl div:last-child {
  border-bottom: 0 !important;
}

body.single-product .mw-product-specs-card dt,
body.single-product .mw-product-specs-card dd {
  margin: 0 !important;
  color: #555 !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

body.single-product .mw-product-specs-card dt {
  color: var(--mw-ink) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

body.single-product div.product.type-product .product_meta {
  display: grid !important;
  gap: 9px !important;
  margin: 22px 0 0 !important;
  padding-top: 18px !important;
  border-top: 1px solid var(--mw-line) !important;
  color: #666 !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
}

body.single-product div.product.type-product .product_meta > span {
  display: block !important;
}

body.single-product div.product.type-product .product_meta a {
  color: var(--mw-black) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

body.single-product .mw-product-page div.product.type-product > .woocommerce-tabs,
body.single-product .mw-product-page div.product.type-product > section.related.products,
body.single-product .mw-product-page div.product.type-product > .related.products,
body.single-product .mw-product-page div.product.type-product > .upsells {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  max-width: none !important;
}

body.single-product div.product.type-product .woocommerce-tabs {
  margin-top: clamp(44px, 6vw, 76px) !important;
  padding-top: 0 !important;
  border-top: 1px solid var(--mw-line) !important;
}

body.single-product div.product.type-product .woocommerce-tabs ul.tabs {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0 !important;
  margin: 0 0 28px !important;
  padding: 0 !important;
  border-bottom: 1px solid var(--mw-line) !important;
  list-style: none !important;
}

body.single-product div.product.type-product .woocommerce-tabs ul.tabs li {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  list-style: none !important;
}

body.single-product div.product.type-product .woocommerce-tabs ul.tabs li::before,
body.single-product div.product.type-product .woocommerce-tabs ul.tabs li::after,
body.single-product div.product.type-product .woocommerce-tabs ul.tabs li::marker {
  content: none !important;
  display: none !important;
}

body.single-product div.product.type-product .woocommerce-tabs ul.tabs a {
  display: flex !important;
  min-height: 52px !important;
  align-items: center !important;
  padding: 0 24px !important;
  color: #777 !important;
  border-bottom: 2px solid transparent !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

body.single-product div.product.type-product .woocommerce-tabs ul.tabs li.active a {
  color: var(--mw-black) !important;
  border-bottom-color: var(--mw-black) !important;
}

body.single-product div.product.type-product .woocommerce-Tabs-panel {
  max-width: 980px !important;
  margin: 0 auto !important;
  color: #333 !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
}

body.single-product div.product.type-product .woocommerce-Tabs-panel h2,
body.single-product div.product.type-product .woocommerce-Tabs-panel h3 {
  margin: 0 0 16px !important;
  color: var(--mw-ink) !important;
  font-family: var(--mw-serif) !important;
  font-size: clamp(24px, 3vw, 36px) !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  text-transform: uppercase !important;
}

body.single-product section.related.products,
body.single-product .related.products {
  margin: clamp(48px, 7vw, 88px) auto 0 !important;
  padding: 0 0 clamp(54px, 7vw, 86px) !important;
}

body.single-product section.related.products > h2,
body.single-product .related.products > h2 {
  margin: 0 0 28px !important;
  color: var(--mw-ink) !important;
  font-family: var(--mw-serif) !important;
  font-size: clamp(26px, 3vw, 42px) !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  text-align: left !important;
  text-transform: uppercase !important;
}

body.single-product section.related.products ul.products,
body.single-product .related.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 34px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.single-product section.related.products ul.products li,
body.single-product section.related.products ul.products li.product,
body.single-product .related.products ul.products li,
body.single-product .related.products ul.products li.product {
  float: none !important;
  clear: none !important;
  display: block !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.single-product section.related.products ul.products li::marker,
body.single-product .related.products ul.products li::marker {
  content: "" !important;
  font-size: 0 !important;
}

@media (max-width: 1100px) {
  body.single-product .mw-product-page div.product.type-product,
  body.single-product .mw-product-shell > div.product.type-product {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr) !important;
    gap: 32px !important;
  }

  body.single-product div.product.type-product ol.flex-control-thumbs,
  body.single-product div.product.type-product .flex-control-nav.flex-control-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 820px) {
  body.single-product .mw-product-shell {
    padding: 0 16px !important;
    overflow-x: hidden !important;
  }

  body.single-product .mw-product-page div.product.type-product,
  body.single-product .mw-product-shell > div.product.type-product {
    display: block !important;
  }

  body.single-product .mw-product-page div.product.type-product > .summary,
  body.single-product .mw-product-page div.product.type-product > div.summary {
    max-width: none !important;
    margin-top: 28px !important;
  }

  body.single-product .woocommerce-product-gallery__wrapper {
    display: block !important;
    grid-template-columns: 1fr !important;
  }

  body.single-product .woocommerce-product-gallery__image:not(:first-child) {
    display: none !important;
  }

  body.single-product div.product.type-product ol.flex-control-thumbs,
  body.single-product div.product.type-product .flex-control-nav.flex-control-thumbs {
    display: flex !important;
    gap: 10px !important;
    margin: 12px 0 0 !important;
    padding: 0 0 4px !important;
    overflow-x: auto !important;
    list-style: none !important;
    -webkit-overflow-scrolling: touch !important;
  }

  body.single-product div.product.type-product ol.flex-control-thumbs li,
  body.single-product div.product.type-product .flex-control-nav.flex-control-thumbs li {
    flex: 0 0 72px !important;
    width: 72px !important;
    min-width: 72px !important;
  }

  body.single-product div.product.type-product ol.flex-control-thumbs img,
  body.single-product div.product.type-product .flex-control-nav.flex-control-thumbs img {
    padding: 6px !important;
  }

  body.single-product div.product.type-product .product_title {
    overflow-wrap: anywhere !important;
    font-size: clamp(30px, 8.2vw, 42px) !important;
  }

  body.single-product section.related.products ul.products,
  body.single-product .related.products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px 14px !important;
  }
}

@media (max-width: 520px) {
  body.single-product .mw-product-page {
    padding-top: 14px !important;
  }

  body.single-product .mw-product-shell {
    padding: 0 14px !important;
  }

  body.single-product .woocommerce-product-gallery__image img,
  body.single-product div.product div.images img {
    padding: 14px !important;
  }

  body.single-product div.product.type-product ol.flex-control-thumbs,
  body.single-product div.product.type-product .flex-control-nav.flex-control-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  body.single-product div.product.type-product form.cart {
    grid-template-columns: 76px minmax(0, 1fr) !important;
    gap: 10px !important;
  }

  body.single-product .mw-product-specs-card dl div {
    grid-template-columns: 92px minmax(0, 1fr) !important;
  }

  body.single-product div.product.type-product .woocommerce-tabs ul.tabs {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  body.single-product div.product.type-product .woocommerce-tabs ul.tabs a {
    min-height: 44px !important;
    padding: 0 !important;
  }

  body.single-product section.related.products ul.products,
  body.single-product .related.products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
/* END VGC 1.2.8 Voncher-style single product layout */

/* BEGIN VGC 1.2.8 product gallery grid stability */
body.single-product .woocommerce-product-gallery .flex-viewport {
  height: auto !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

body.single-product .woocommerce-product-gallery__wrapper {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  width: 100% !important;
  margin: 0 !important;
  transform: none !important;
  transition: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

body.single-product .woocommerce-product-gallery__image {
  float: none !important;
  display: block !important;
  width: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  border: 1px solid #f0ebe4 !important;
  border-radius: 8px !important;
  background: #f7f5f1 !important;
  opacity: 1 !important;
}

body.single-product .woocommerce-product-gallery__image:first-child {
  grid-column: 1 / -1 !important;
}

body.single-product .woocommerce-product-gallery__image a {
  display: block !important;
  width: 100% !important;
  background: #f7f5f1 !important;
}

body.single-product .woocommerce-product-gallery__image img,
body.single-product div.product div.images .woocommerce-product-gallery__image img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  margin: 0 !important;
  padding: clamp(16px, 2.6vw, 34px) !important;
  object-fit: contain !important;
  background: #f7f5f1 !important;
}

body.single-product div.product.type-product ol.flex-control-thumbs,
body.single-product div.product.type-product .flex-control-nav.flex-control-thumbs {
  display: none !important;
}

@media (max-width: 520px) {
  body.single-product .woocommerce-product-gallery__wrapper {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  body.single-product .woocommerce-product-gallery__image img,
  body.single-product div.product div.images .woocommerce-product-gallery__image img {
    padding: 12px !important;
  }

  body.single-product div.product.type-product .product_title {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    font-size: clamp(24px, 6.6vw, 29px) !important;
    line-height: 1.08 !important;
    word-break: break-word !important;
  }

  body.single-product .woocommerce-product-details__short-description,
  body.single-product .woocommerce-product-details__short-description p,
  body.single-product .summary {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }
}
/* END VGC 1.2.8 product gallery grid stability */

@media (max-width: 900px) {
  body.single-product .mw-product-page div.product.type-product > .summary,
  body.single-product .mw-product-page div.product.type-product > div.summary {
    width: 100% !important;
    max-width: 340px !important;
    min-width: 0 !important;
    overflow: visible !important;
  }

  body.single-product div.product.type-product .product_title {
    width: 100% !important;
    max-width: 340px !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    font-size: 26px !important;
    line-height: 1.08 !important;
    text-transform: none !important;
  }

  body.single-product .woocommerce-product-details__short-description,
  body.single-product .woocommerce-product-details__short-description p {
    display: block !important;
    width: 100% !important;
    max-width: 300px !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    font-size: 13px !important;
  }

  body.single-product .mw-product-info-card,
  body.single-product .mw-product-info-card li,
  body.single-product .mw-product-info-card p,
  body.single-product .mw-product-info-card a,
  body.single-product .mw-product-info-card dd {
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }
}

/* BEGIN Royal Kinzy 1.3.9 premium logo */
body.mw-theme .mw-logo {
  position: relative !important;
  width: auto !important;
  min-width: 196px !important;
  height: 58px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 11px !important;
  padding: 0 18px 0 11px !important;
  border: 1px solid rgba(34, 29, 22, 0.16) !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #ffffff 0%, #f7f4ef 54%, #ece4d9 100%) !important;
  box-shadow: 0 16px 34px rgba(31, 27, 22, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.86) !important;
  color: #15120f !important;
  font-family: var(--mw-serif) !important;
  line-height: 1 !important;
  text-decoration: none !important;
  text-transform: none !important;
  white-space: nowrap !important;
  isolation: isolate !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease !important;
}

body.mw-theme .mw-logo::after {
  content: "" !important;
  position: absolute !important;
  inset: 6px !important;
  border: 1px solid rgba(157, 107, 78, 0.18) !important;
  border-radius: inherit !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.mw-theme .mw-logo > * {
  position: relative !important;
  z-index: 1 !important;
}

body.mw-theme .mw-logo:hover {
  border-color: rgba(157, 107, 78, 0.34) !important;
  box-shadow: 0 18px 42px rgba(31, 27, 22, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  transform: translateY(-1px) !important;
}

body.mw-theme .mw-logo-mark {
  width: 38px !important;
  height: 38px !important;
  display: grid !important;
  place-items: center !important;
  flex: 0 0 auto !important;
  border: 1px solid rgba(255, 255, 255, 0.58) !important;
  border-radius: 50% !important;
  background: radial-gradient(circle at 30% 24%, #b88a61 0%, #7a5137 46%, #161310 100%) !important;
  box-shadow: 0 8px 18px rgba(31, 27, 22, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.32) !important;
  color: #fff !important;
  font-family: var(--mw-serif) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
}

body.mw-theme .mw-logo-text {
  display: grid !important;
  gap: 4px !important;
  min-width: 0 !important;
  text-align: left !important;
}

body.mw-theme .mw-logo-name {
  color: #15120f !important;
  font-family: var(--mw-serif) !important;
  font-size: 21px !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  line-height: 0.92 !important;
  text-transform: uppercase !important;
}

body.mw-theme .mw-logo-subtitle {
  color: #8a6a4d !important;
  font-family: var(--mw-sans) !important;
  font-size: 8px !important;
  font-weight: 800 !important;
  letter-spacing: 0.34em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

body.mw-theme .mw-logo img {
  width: auto !important;
  max-width: 154px !important;
  max-height: 42px !important;
}

@media (max-width: 1040px) {
  body.mw-theme .mw-logo {
    min-width: 172px !important;
    height: 54px !important;
    padding-right: 14px !important;
  }

  body.mw-theme .mw-logo-name {
    font-size: 18px !important;
    letter-spacing: 0.15em !important;
  }

  body.mw-theme .mw-logo-subtitle {
    letter-spacing: 0.27em !important;
  }
}

@media (max-width: 820px) {
  body.mw-theme .mw-logo {
    justify-self: center !important;
    min-width: 154px !important;
    height: 50px !important;
    gap: 8px !important;
    padding: 0 12px 0 8px !important;
  }

  body.mw-theme .mw-logo::after {
    inset: 5px !important;
  }

  body.mw-theme .mw-logo-mark {
    width: 32px !important;
    height: 32px !important;
    font-size: 11px !important;
  }

  body.mw-theme .mw-logo-name {
    font-size: 16px !important;
    letter-spacing: 0.14em !important;
  }

  body.mw-theme .mw-logo-subtitle {
    font-size: 7px !important;
    letter-spacing: 0.22em !important;
  }

  body.mw-theme .mw-logo img {
    max-width: 122px !important;
    max-height: 36px !important;
  }
}

@media (max-width: 390px) {
  body.mw-theme .mw-logo {
    min-width: 130px !important;
    gap: 7px !important;
    padding-right: 9px !important;
  }

  body.mw-theme .mw-logo-mark {
    width: 30px !important;
    height: 30px !important;
  }

  body.mw-theme .mw-logo-name {
    font-size: 14px !important;
    letter-spacing: 0.11em !important;
  }

  body.mw-theme .mw-logo-subtitle {
    display: none !important;
  }
}
/* END Royal Kinzy 1.3.9 premium logo */

/* BEGIN Royal Kinzy 1.3.11 mobile logo balance */
@media (max-width: 820px) {
  body.mw-theme .mw-header__inner {
    position: relative !important;
    grid-template-columns: 48px minmax(0, 1fr) 48px !important;
    justify-items: center !important;
  }

  body.mw-theme .mw-menu-toggle {
    justify-self: start !important;
    z-index: 3 !important;
  }

  body.mw-theme .mw-logo {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    justify-self: auto !important;
    margin: 0 !important;
    transform: translate(-50%, -50%) !important;
    z-index: 2 !important;
  }

  body.mw-theme .mw-logo:hover {
    transform: translate(-50%, calc(-50% - 1px)) !important;
  }

  body.mw-theme .mw-actions {
    justify-self: end !important;
    width: 48px !important;
    min-width: 48px !important;
    height: 1px !important;
    overflow: hidden !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

@media (max-width: 390px) {
  body.mw-theme .mw-logo {
    min-width: 138px !important;
    padding: 0 9px 0 7px !important;
  }
}
/* END Royal Kinzy 1.3.11 mobile logo balance */

/* BEGIN Royal Kinzy visual refresh 1.7.1 */
body.mw-theme {
  --mw-black: #14120f !important;
  --mw-ink: #24211d !important;
  --mw-muted: #6d675f !important;
  --mw-line: #e1d6c8 !important;
  --mw-bg: #f8f3ea !important;
  --mw-soft: #efe7dc !important;
  --mw-accent: #6f7f74 !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(151, 129, 88, 0.11), transparent 28%),
    linear-gradient(180deg, #fbf8f2 0%, #f7f1e7 100%) !important;
}

body.mw-theme .mw-header {
  border-bottom: 1px solid rgba(91, 75, 55, 0.18) !important;
  background: rgba(250, 247, 240, 0.96) !important;
  box-shadow: 0 14px 34px rgba(43, 33, 22, 0.06) !important;
}

body.mw-theme .mw-mega {
  background: #f4eee4 !important;
  border-bottom-color: #ded1c0 !important;
}

body.mw-theme .mw-mega a:hover,
body.mw-theme .mw-nav a:hover,
body.mw-theme .mw-actions a:hover {
  color: #6f7f74 !important;
}

body.mw-theme .mw-logo {
  border-color: rgba(104, 91, 70, 0.22) !important;
  background: linear-gradient(135deg, #fffdf8 0%, #f1e8da 52%, #d8c7ad 100%) !important;
  box-shadow: 0 12px 28px rgba(51, 40, 27, 0.12), inset 0 1px 0 rgba(255,255,255,.9) !important;
}

body.mw-theme .mw-logo::after {
  inset: 5px !important;
  border-color: rgba(111, 127, 116, 0.22) !important;
}

body.mw-theme .mw-button,
body.mw-theme .woocommerce a.button,
body.mw-theme .woocommerce button.button,
body.mw-theme .woocommerce input.button {
  border-radius: 999px !important;
}

body.mw-theme .mw-product-card__image,
body.mw-theme .mw-home-products .mw-product-card__image,
body.mw-theme .mw-hero-model__image,
body.mw-theme .mw-archive-card__image,
body.mw-theme .mw-shop-results ul.products li.product a:first-child {
  border-color: #e4d6c4 !important;
  border-radius: 14px !important;
  background: linear-gradient(180deg, #fbf8f2 0%, #f0e8dc 100%) !important;
}

body.mw-theme .mw-product-card,
body.mw-theme .mw-hero-model,
body.mw-theme .mw-archive-card {
  border-radius: 14px !important;
}

body.mw-theme .mw-hero-model__body,
body.mw-theme .mw-product-card__title,
body.mw-theme .mw-archive-card__title {
  letter-spacing: 0.01em !important;
}

body.mw-theme .mw-shop-hero,
body.mw-theme .rk-policy-hero {
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(248,243,234,.9)),
    radial-gradient(circle at 50% 0%, rgba(111,127,116,.12), transparent 42%) !important;
}

body.mw-theme .rk-policy-card {
  border-radius: 14px !important;
  background: #fffaf2 !important;
}

body.mw-theme .mw-footer {
  background: linear-gradient(180deg, #171411 0%, #211a15 100%) !important;
}

body.mw-theme .mw-footer-trust {
  border-color: rgba(214, 192, 158, 0.18) !important;
  background: rgba(255, 250, 242, 0.055) !important;
}

body.mw-theme .mw-mobile-header-search,
body.mw-theme .mw-menu-toggle {
  background: #fffaf2 !important;
  border-color: #d7c7b2 !important;
}

body.mw-theme .mw-mobile-header-search button {
  background: #eadfce !important;
  color: #596c63 !important;
}

body.mw-theme .mw-mobile-header-search button span {
  border-color: #596c63 !important;
}

body.mw-theme .mw-mobile-header-search button span::after {
  background: #596c63 !important;
}
/* END Royal Kinzy visual refresh 1.7.1 */

/* BEGIN Royal Kinzy tracking page */
body.mw-theme .rk-track-panel {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto 28px;
  border: 1px solid #e0d3c2;
  border-radius: 16px;
  padding: clamp(20px, 4vw, 34px);
  background: #fffaf2;
  box-shadow: 0 18px 48px rgba(43, 33, 22, 0.07);
}

body.mw-theme .rk-track-panel h2 {
  margin: 0;
  color: #191714;
  font-family: var(--mw-serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}

body.mw-theme .rk-track-panel p {
  margin: 0;
  color: #5f574d;
  font-size: 14px;
  line-height: 1.65;
}

body.mw-theme .rk-track-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.mw-theme .rk-track-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #14120f;
  border-radius: 999px;
  padding: 0 18px;
  background: #14120f;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

body.mw-theme .rk-track-actions a + a {
  border-color: #d7c7b2;
  background: #fff;
  color: #14120f;
}

body.mw-theme .woocommerce form.track_order,
body.mw-theme form.track_order {
  max-width: 760px;
  margin: 0 auto 52px;
  border: 1px solid #e0d3c2;
  border-radius: 16px;
  padding: clamp(22px, 4vw, 34px) !important;
  background: #fff;
  box-shadow: 0 18px 48px rgba(43, 33, 22, 0.06);
}

body.mw-theme form.track_order > p:first-child {
  margin: 0 0 22px !important;
  color: #5c554c;
  font-size: 15px;
  line-height: 1.7;
}

body.mw-theme form.track_order .form-row {
  width: 100% !important;
  float: none !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
}

body.mw-theme form.track_order label {
  display: block;
  margin: 0 0 8px;
  color: #2e2923;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.mw-theme form.track_order input.input-text,
body.mw-theme form.track_order input[type="text"],
body.mw-theme form.track_order input[type="email"] {
  width: 100% !important;
  min-height: 52px;
  border: 1px solid #d9cab7;
  border-radius: 10px;
  padding: 0 15px;
  background: #fbf8f2;
  color: #1f1d1a;
  font-size: 15px;
  box-sizing: border-box;
}

body.mw-theme form.track_order input:focus {
  border-color: #6f7f74;
  background: #fff;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(111, 127, 116, 0.14);
}

body.mw-theme form.track_order button.button,
body.mw-theme form.track_order input.button {
  display: inline-flex !important;
  min-height: 48px !important;
  align-items: center;
  justify-content: center;
  border-radius: 999px !important;
  padding: 0 26px !important;
  background: #14120f !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  body.mw-theme .rk-track-actions {
    display: grid;
  }

  body.mw-theme .rk-track-actions a,
  body.mw-theme form.track_order button.button,
  body.mw-theme form.track_order input.button {
    width: 100%;
  }
}
/* END Royal Kinzy tracking page */

