@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/instrument-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Yarbelnn Currency";
  src: url("../fonts/poppins-latin-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --my-themes-ink: #282827;
  --my-themes-ink-soft: #454543;
  --my-themes-bone: #f2f0ea;
  --my-themes-paper: #faf9f5;
  --my-themes-paper-deep: #e9e7df;
  --my-themes-sage: #eeece6;
  --my-themes-sage-dark: #666663;
  --my-themes-clay: #efede7;
  --my-themes-mist: #f4f2ed;
  --my-themes-line: rgba(40, 40, 39, 0.15);
  --my-themes-white-line: rgba(255, 255, 255, 0.28);
  --my-themes-radius-sm: 0.5rem;
  --my-themes-radius-md: 1rem;
  --my-themes-radius-lg: 1.5rem;
  --my-themes-shell: 90rem;
  --my-themes-gutter: clamp(1rem, 4vw, 4.5rem);
  --my-themes-header-offset: 4.5rem;
  --my-themes-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --my-themes-shadow: 0 18px 60px rgba(40, 40, 39, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  min-width: 20rem;
  margin: 0;
  color: var(--my-themes-ink);
  background: var(--my-themes-paper);
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
  font-feature-settings: "kern", "ss01", "ss02";
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.my-themes-layer-open {
  overflow: hidden;
  touch-action: none;
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

button,
summary {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: inherit;
  font-family: "Instrument Sans", Arial, sans-serif;
  font-weight: 580;
	letter-spacing: -0.05em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.75rem, 12vw, 7.5rem);
  line-height: 0.91;
}

h2 {
  font-size: clamp(2.35rem, 9vw, 5.5rem);
  line-height: 0.95;
}

h3 {
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 1.05;
}

::selection {
  color: var(--my-themes-paper);
  background: var(--my-themes-ink);
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 0.75rem;
  left: 0.75rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  color: var(--my-themes-paper);
  background: var(--my-themes-ink);
  font-size: 0.875rem;
}

.my-themes-shell {
  width: min(100%, var(--my-themes-shell));
  padding-inline: var(--my-themes-gutter);
  margin-inline: auto;
}

.my-themes-narrow-shell {
  width: min(100%, 58rem);
}

.my-themes-site {
  min-height: 100vh;
  overflow: clip;
}

.my-themes-eyebrow,
.my-themes-section-index {
  margin-bottom: 1rem;
  font-size: 0.6875rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.my-themes-lede {
  max-width: 35rem;
  font-size: clamp(1.05rem, 3.8vw, 1.35rem);
  line-height: 1.42;
}

.my-themes-button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
}

.my-themes-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wp-block-button__link {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.085em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms var(--my-themes-ease);
}

.my-themes-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.wp-block-button__link:hover {
  transform: translateY(-2px);
}

.my-themes-button--dark,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  color: var(--my-themes-paper);
  background: var(--my-themes-ink);
}

.my-themes-button--dark:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  color: var(--my-themes-paper);
  background: var(--my-themes-ink-soft);
}

.my-themes-button--light {
  color: var(--my-themes-ink);
  background: var(--my-themes-paper);
}

.my-themes-button--light:hover {
  background: var(--my-themes-paper);
}

.my-themes-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding-block: 0.4rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.my-themes-text-link span {
  transition: transform 220ms var(--my-themes-ease);
}

.my-themes-text-link:hover span {
  transform: translate(0.18rem, 0.12rem);
}

/* Header */
.my-themes-site-header {
	position: fixed;
  z-index: 1000;
  top: var(--my-themes-admin-offset, 0px);
  right: 0;
  left: 0;
  color: var(--my-themes-ink);
	transition: color 260ms ease;
}

/* The landing header is always pinned to the live viewport edge. */
body:is(.my-themes-front-page, .msuie-has-landing) .my-themes-site-header {
	top: 0 !important;
}

body.admin-bar:is(.my-themes-front-page, .msuie-has-landing) .my-themes-site-header {
  top: var(--my-themes-admin-offset, 0px) !important;
}

.admin-bar .my-themes-site-header {
  top: var(--my-themes-admin-offset, 0px);
}

body:is(.my-themes-front-page, .msuie-has-landing) .my-themes-site-header:not(.is-scrolled) {
  color: #fff;
}

.my-themes-announcement {
  padding: 0.45rem var(--my-themes-gutter);
  color: var(--my-themes-ink);
  background: var(--my-themes-paper-deep);
  text-align: center;
}

.my-themes-announcement p {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.45;
  text-transform: uppercase;
}

.my-themes-header-bar {
  position: relative;
  border-bottom: 1px solid var(--my-themes-line);
  background: rgba(250, 249, 245, 0.91);
  box-shadow: 0 10px 35px rgba(40, 40, 39, 0.04);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  transition: background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

body:is(.my-themes-front-page, .msuie-has-landing) .my-themes-site-header:not(.is-scrolled) .my-themes-header-bar {
  border-bottom-color: var(--my-themes-white-line);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Keep the opening panorama full-bleed before the scroll-state script paints. */
body:is(.my-themes-front-page, .msuie-has-landing):not(.my-themes-hero-transition):not(.my-themes-hero-solid) .my-themes-site-header {
  color: #fff;
}

body:is(.my-themes-front-page, .msuie-has-landing):not(.my-themes-hero-transition):not(.my-themes-hero-solid) .my-themes-header-bar {
  border-bottom-color: var(--my-themes-white-line) !important;
  background: transparent !important;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body:is(.my-themes-front-page, .msuie-has-landing):not(.my-themes-hero-transition):not(.my-themes-hero-solid) .my-themes-brand--header img {
  filter: brightness(0) invert(1) !important;
}

body:is(.my-themes-front-page, .msuie-has-landing) .my-themes-site-header.is-hero-transition {
  color: var(--my-themes-header-transition-color, #fff);
}

body:is(.my-themes-front-page, .msuie-has-landing) .my-themes-site-header.is-hero-transition .my-themes-header-bar {
  border-bottom-color: var(--my-themes-line);
  background: rgb(250 249 245 / var(--my-themes-header-solid-alpha, 0));
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Avoid a new blur-compositor layer at the exact point the pullback settles. */
body:is(.my-themes-front-page, .msuie-has-landing) .my-themes-site-header.is-scrolled .my-themes-header-bar {
  background: var(--my-themes-paper);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.my-themes-header-inner {
  display: grid;
  width: 100%;
  min-height: 4.35rem;
  padding: 0.55rem clamp(0.75rem, 3.2vw, 4.5rem);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.my-themes-icon-button {
  position: relative;
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  align-items: center;
  justify-content: center;
  color: inherit;
  background: transparent;
  text-decoration: none;
}

.my-themes-icon-button::before {
  position: absolute;
  inset: 0.25rem;
  border: 1px solid transparent;
  border-radius: 50%;
  content: "";
  transition: background-color 180ms ease, border-color 180ms ease;
}

.my-themes-icon-button:hover::before {
  border-color: currentColor;
  background: rgba(255, 255, 255, 0.08);
}

.my-themes-menu-toggle {
  justify-self: start;
}

.my-themes-menu-lines {
  position: relative;
  z-index: 1;
  display: block;
  width: 1.2rem;
  height: 0.8rem;
}

.my-themes-menu-lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.my-themes-menu-lines span:first-child {
  top: 0.16rem;
}

.my-themes-menu-lines span:last-child {
  right: 0;
  bottom: 0.16rem;
  left: auto;
  width: 72%;
}

.my-themes-desktop-nav {
  display: none;
}

.my-themes-brand {
  min-width: 0;
}

.my-themes-brand--header {
  justify-self: center;
}

.my-themes-brand__link,
.custom-logo-link {
  display: block;
  line-height: 0;
}

.my-themes-brand__image,
.custom-logo {
  width: auto;
  max-width: 8rem;
  height: auto;
  max-height: 2.1rem;
  object-fit: contain;
  transition: filter 260ms ease, opacity 180ms ease;
}

/* The bundled mark is white; render it in ink on light header states. */
.my-themes-brand__image {
  filter: brightness(0);
}

body:is(.my-themes-front-page, .msuie-has-landing) .my-themes-site-header:not(.is-scrolled) .my-themes-brand--header img {
  filter: brightness(0) invert(1);
}

body:is(.my-themes-front-page, .msuie-has-landing) .my-themes-site-header.is-hero-transition .my-themes-brand--header img {
  filter: brightness(0) invert(var(--my-themes-header-logo-invert, 1));
}

.my-themes-brand a:hover img {
  opacity: 0.72;
}

.my-themes-header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
}

.my-themes-account-link {
  display: inline-flex;
}

.my-themes-cart-count {
  position: absolute;
  z-index: 2;
  top: 0.2rem;
  right: 0.05rem;
  display: grid;
  min-width: 1.15rem;
  height: 1.15rem;
  padding-inline: 0.2rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  place-items: center;
  color: var(--my-themes-paper);
  background: var(--my-themes-ink);
  font-size: 0.55rem;
  font-weight: 700;
  line-height: 1;
}

body:is(.my-themes-front-page, .msuie-has-landing) .my-themes-site-header:not(.is-scrolled) .my-themes-cart-count {
  color: var(--my-themes-ink);
  background: var(--my-themes-paper);
}

.my-themes-cart-count.is-empty {
  visibility: hidden;
}

/* Off-canvas menu */
.my-themes-drawer,
.my-themes-search-panel {
  position: fixed;
  z-index: 1010;
  inset: 0;
  color: var(--my-themes-ink);
}

.my-themes-drawer[hidden],
.my-themes-search-panel[hidden] {
  display: none;
}

.my-themes-drawer__scrim,
.my-themes-search-panel__scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 10, 0.45);
  opacity: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: opacity 300ms ease;
}

.my-themes-drawer__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  width: min(88vw, 28rem);
  padding: 1rem 1.15rem 2rem;
  flex-direction: column;
  background: var(--my-themes-bone);
  box-shadow: var(--my-themes-shadow);
  transform: translateX(-102%);
  transition: transform 360ms var(--my-themes-ease);
}

.admin-bar .my-themes-drawer__panel {
	padding-top: calc(1rem + var(--my-themes-admin-visible-height, 0px));
}

.my-themes-drawer.is-open .my-themes-drawer__scrim,
.my-themes-search-panel.is-open .my-themes-search-panel__scrim {
  opacity: 1;
}

.my-themes-drawer.is-open .my-themes-drawer__panel {
  transform: translateX(0);
}

.my-themes-drawer__top,
.my-themes-search-panel__top {
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--my-themes-line);
}

.my-themes-drawer__title,
.my-themes-search-panel__top p {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.my-themes-mobile-nav {
  flex: 1;
  padding-block: 2.5rem;
  overflow: auto;
}

.my-themes-mobile-nav ul,
.my-themes-mobile-nav .menu,
.my-themes-drawer__utility,
.my-themes-desktop-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.my-themes-mobile-nav > ul > li,
.my-themes-mobile-nav > .menu > li {
  border-bottom: 1px solid var(--my-themes-line);
}

.my-themes-mobile-nav > ul > li > a,
.my-themes-mobile-nav > .menu > li > a {
  display: flex;
  min-height: 4.2rem;
  align-items: center;
  justify-content: space-between;
  font-family: "Instrument Sans", Arial, sans-serif;
	font-weight: 560;
  font-size: clamp(1.75rem, 8vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1;
  text-decoration: none;
}

.my-themes-mobile-nav > ul > li > a::after,
.my-themes-mobile-nav > .menu > li > a::after {
  content: "↗";
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 0.9rem;
}

.my-themes-mobile-nav .sub-menu {
  padding: 0 0 1rem 1rem;
}

.my-themes-mobile-nav .sub-menu a {
  display: block;
  padding-block: 0.45rem;
  font-size: 0.9rem;
  text-decoration: none;
}

.my-themes-drawer__utility {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--my-themes-line);
}

.my-themes-drawer__utility a {
  padding: 1rem 0;
  font-size: 0.6875rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.my-themes-drawer__utility a:last-child {
  text-align: right;
}

/* Search overlay */
.my-themes-search-panel__dialog {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 1rem var(--my-themes-gutter) 2.5rem;
  background: var(--my-themes-paper);
  box-shadow: var(--my-themes-shadow);
  transform: translateY(-102%);
  transition: transform 360ms var(--my-themes-ease);
}

.admin-bar .my-themes-search-panel__dialog {
	padding-top: calc(1rem + var(--my-themes-admin-visible-height, 0px));
}

.my-themes-search-panel.is-open .my-themes-search-panel__dialog {
  transform: translateY(0);
}

.my-themes-search-form {
  display: grid;
  padding-top: 2rem;
  gap: 0.75rem;
}

.my-themes-search-form label {
  display: block;
}

.my-themes-search-form input[type="search"] {
  width: 100%;
  min-height: 3.75rem;
  padding: 0 0.25rem;
  border: 0;
  border-bottom: 1px solid var(--my-themes-ink);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-family: "Instrument Sans", Arial, sans-serif;
	font-weight: 540;
  font-size: clamp(1.35rem, 6vw, 3rem);
  letter-spacing: -0.02em;
}

.my-themes-search-form input[type="search"]:focus {
  border-bottom-width: 2px;
}

.my-themes-search-form button {
  display: flex;
  min-height: 3.25rem;
  padding: 0 1.1rem;
  border: 0;
  border-radius: 999px;
  align-items: center;
  justify-content: space-between;
  color: var(--my-themes-paper);
  background: var(--my-themes-ink);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Video front-page fallback: mirrors the companion landing hero if the plugin is unavailable. */
.my-themes-fallback-boot {
  position: fixed;
  z-index: 200000;
  inset: 0;
  display: none;
  place-items: center;
  background: #000;
  opacity: 1;
  visibility: visible;
  transition: opacity 660ms cubic-bezier(0.22, 1, 0.36, 1), visibility 660ms linear;
}

.my-themes-fallback-boot-enabled .my-themes-fallback-boot {
  display: grid;
}

.my-themes-fallback-boot img {
  position: relative;
  z-index: 1;
  width: clamp(132px, 38vw, 178px);
  height: auto;
  opacity: 0;
  transform: scale(0.985);
  animation: my-themes-fallback-boot-mark 560ms cubic-bezier(0.22, 1, 0.36, 1) 60ms forwards;
}

.my-themes-fallback-entry-gate {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.my-themes-fallback-entry-gate[hidden] {
  display: none;
}

.my-themes-fallback-entry-gate__prompt {
  position: absolute;
  left: 50%;
  bottom: max(8svh, calc(30px + env(safe-area-inset-bottom)));
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.92);
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.625rem, 2.6vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
  animation: my-themes-fallback-entry-pulse 2.35s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.my-themes-fallback-entry-gate:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.8);
  outline-offset: -14px;
}

.my-themes-fallback-boot.is-entering .my-themes-fallback-entry-gate__prompt {
  animation: none;
  opacity: 0.45;
}

.my-themes-fallback-boot.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.my-themes-fallback-booting {
  overflow: hidden;
}

@keyframes my-themes-fallback-boot-mark {
  from { opacity: 0; transform: scale(0.985); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes my-themes-fallback-entry-pulse {
  0%, 100% { opacity: 0.26; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .my-themes-fallback-entry-gate__prompt {
    animation: none;
    opacity: 0.9;
  }
}

.my-themes-fallback-video-hero {
  --my-themes-fallback-progress: 0;
  --my-themes-fallback-window-scale: 2.6;
  --my-themes-fallback-window-y: 0px;
  --my-themes-fallback-window-frame-opacity: 0;
  --my-themes-fallback-window-view-left: 21.8%;
  --my-themes-fallback-window-view-top: 32.55%;
  --my-themes-fallback-window-view-width: 56.4%;
  --my-themes-fallback-window-view-height: 46.75%;
  --my-themes-fallback-video-wash-opacity: 0.62;
  --my-themes-fallback-copy-opacity: 1;
  --my-themes-fallback-copy-shift: 0px;
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: clip;
  color: #fff;
  background: var(--my-themes-bone);
}

.my-themes-fallback-video-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  height: 100vh;
  height: 100svh;
	overflow: hidden;
	background: var(--my-themes-bone);
	backface-visibility: hidden;
	transform: translate3d(0, 0, 0);
	will-change: transform;
}

.my-themes-fallback-video-hero.is-pulling-back .my-themes-fallback-video-media {
	z-index: 3;
}

.my-themes-fallback-window-scene {
  position: absolute;
  top: 0;
  left: 50%;
  /* Keep the same phone-width proportion; short screens use height as the safety boundary. */
  width: min(88vw, 41.5svh);
  aspect-ratio: 849 / 1509;
	transform: translate3d(-50%, var(--my-themes-fallback-window-y), 0) scale(var(--my-themes-fallback-window-scale));
	transform-origin: 50% 56%;
	will-change: transform, opacity;
	backface-visibility: hidden;
}

.my-themes-fallback-window-view {
  position: absolute;
  z-index: 0;
  top: var(--my-themes-fallback-window-view-top);
  left: var(--my-themes-fallback-window-view-left);
  width: var(--my-themes-fallback-window-view-width);
  height: var(--my-themes-fallback-window-view-height);
  overflow: hidden;
	/* The opaque PNG frame supplies the window shape; keep the moving video uncut beneath it. */
	border-radius: 0;
  background: #e5e3dc;
	box-shadow: inset 0 0 0 1px rgba(28, 36, 42, 0.18);
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
}

.my-themes-fallback-window-frame {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  opacity: var(--my-themes-fallback-window-frame-opacity);
  pointer-events: none;
	transform: translate3d(0, 0, 0);
	will-change: transform, opacity;
	backface-visibility: hidden;
}

.my-themes-fallback-video {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
	object-fit: cover;
	object-position: center center;
	transform: translate3d(0, 0, 0);
	will-change: transform;
	backface-visibility: hidden;
}


.my-themes-fallback-video-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 18, 25, 0.4) 0%, rgba(8, 18, 25, 0.03) 34%, rgba(8, 18, 25, 0.06) 62%, rgba(8, 18, 25, 0.48) 100%),
    linear-gradient(90deg, rgba(8, 18, 25, 0.29), transparent 64%);
  opacity: var(--my-themes-fallback-video-wash-opacity);
  pointer-events: none;
  will-change: opacity;
}

.my-themes-fallback-video-copy {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  padding: calc(var(--my-themes-header-offset, 4.5rem) + clamp(32px, 6vh, 58px)) 20px max(34px, calc(24px + env(safe-area-inset-bottom)));
  flex-direction: column;
  opacity: var(--my-themes-fallback-copy-opacity);
  pointer-events: none;
  transform: translate3d(0, var(--my-themes-fallback-copy-shift), 0);
	will-change: opacity, transform;
}

.my-themes-fallback-video-hero.is-pulling-back .my-themes-fallback-video-copy {
	visibility: hidden;
}

.my-themes-fallback-kicker {
  display: flex;
  margin: 0 0 18px;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.my-themes-fallback-kicker::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.65;
}

.my-themes-fallback-video-copy h1 {
  max-width: 10.5ch;
  margin: 0;
  color: #fff;
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: clamp(46px, 13vw, 72px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.my-themes-fallback-video-copy h1 > span {
  display: block;
}

.my-themes-fallback-video-lede {
  display: none;
  max-width: 30em;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.875rem;
}

.my-themes-fallback-video-actions {
  display: flex;
  margin-top: auto;
  align-items: center;
  gap: 20px;
  pointer-events: auto;
}

.my-themes-fallback-video-link {
  display: inline-flex;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.56);
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
}

.my-themes-fallback-video-toggle {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: max(20px, env(safe-area-inset-bottom));
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background: rgba(14, 22, 28, 0.34);
  cursor: pointer;
}

.my-themes-fallback-video-toggle svg {
  position: absolute;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.my-themes-fallback-video-toggle .my-themes-fallback-play,
.my-themes-fallback-video-toggle.is-paused .my-themes-fallback-pause {
  display: none;
}

.my-themes-fallback-video-toggle.is-paused .my-themes-fallback-play {
  display: block;
}

@media (min-width: 1024px) {
  .my-themes-fallback-video-copy {
    width: min(70vw, 840px);
    padding: 150px 6vw 9vh;
  }

  .my-themes-fallback-video-copy h1 {
    font-size: clamp(76px, 8.3vw, 132px);
  }

  .my-themes-fallback-video-lede {
    display: block;
    font-size: 1.0625rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .my-themes-fallback-window-scene {
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    transform: none;
  }

  .my-themes-fallback-window-view {
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .my-themes-fallback-window-frame {
    display: none;
  }

  .my-themes-fallback-video-copy {
    opacity: 1;
    transform: none;
  }
}

/* Legacy static front-page styles retained for backwards-compatible child-theme markup. */
.my-themes-front-main {
  min-height: 100vh;
}

.my-themes-fallback-hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  padding: calc(var(--my-themes-header-offset) + 2.5rem) 0 4rem;
  align-items: center;
  overflow: hidden;
	background:
	  radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.82), transparent 32%),
	  linear-gradient(145deg, #faf9f5 0%, #efede7 52%, #e2e0d8 100%);
}

.my-themes-fallback-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 32%;
  background: linear-gradient(to top, rgba(29, 37, 26, 0.18), transparent);
  content: "";
  pointer-events: none;
}

.my-themes-fallback-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  pointer-events: none;
}

.my-themes-fallback-orbit--one {
  top: 10%;
  right: -36%;
  width: 90vw;
  height: 90vw;
}

.my-themes-fallback-orbit--two {
  bottom: -18%;
  left: -20%;
  width: 70vw;
  height: 70vw;
}

.my-themes-fallback-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 3rem;
}

.my-themes-fallback-hero__copy {
  max-width: 42rem;
}

.my-themes-fallback-hero h1 {
  max-width: 8ch;
  margin-bottom: 1.35rem;
}

.my-themes-fallback-hero .my-themes-lede {
  margin-bottom: 1.75rem;
}

.my-themes-fallback-product-stage {
  position: relative;
  display: grid;
  min-height: 24rem;
  place-items: center;
  perspective: 50rem;
}

.my-themes-fallback-product-stage::before {
  position: absolute;
  width: 19rem;
  height: 19rem;
  border-radius: 50%;
  background: rgba(243, 240, 232, 0.42);
  box-shadow: 0 0 80px rgba(255, 255, 255, 0.28);
  content: "";
}

.my-themes-fallback-product-card {
  position: relative;
  z-index: 1;
  display: flex;
  width: clamp(10.5rem, 44vw, 15rem);
  aspect-ratio: 0.7;
  padding: 1.25rem;
  border: 1px solid rgba(21, 23, 20, 0.12);
  border-radius: 0.3rem 0.3rem 1.25rem 1.25rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #fff 0%, #f3f1ed 100%);
  box-shadow: 0 36px 70px rgba(38, 48, 34, 0.26);
  text-align: center;
  transform: rotate(-4deg) rotateY(-5deg);
  animation: my-themes-product-float 5s var(--my-themes-ease) infinite alternate;
}

.my-themes-fallback-product-card__brand {
  margin-bottom: 1.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.my-themes-fallback-product-card__line {
  width: 2.5rem;
  height: 1px;
  margin-bottom: 1.2rem;
  background: var(--my-themes-ink);
}

.my-themes-fallback-product-card__name {
  max-width: 9rem;
  font-family: "Instrument Sans", Arial, sans-serif;
	font-weight: 560;
  font-size: 1.15rem;
  line-height: 1.05;
}

.my-themes-fallback-product-card__note {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes my-themes-product-float {
  from { transform: translateY(0) rotate(-4deg) rotateY(-5deg); }
  to { transform: translateY(-0.75rem) rotate(-2deg) rotateY(2deg); }
}

.my-themes-scroll-cue {
  position: absolute;
  z-index: 3;
  right: var(--my-themes-gutter);
  bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.6rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.my-themes-editorial-section,
.my-themes-principles,
.my-themes-faq {
  padding-block: clamp(5rem, 14vw, 10rem);
}

.my-themes-editorial-section {
  background: var(--my-themes-paper);
}

.my-themes-editorial-grid {
  display: grid;
  gap: 1.75rem;
}

.my-themes-editorial-grid h2,
.my-themes-section-heading h2,
.my-themes-faq h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.my-themes-editorial-copy {
  max-width: 34rem;
  font-size: clamp(1.05rem, 3vw, 1.3rem);
  line-height: 1.55;
}

.my-themes-editorial-copy p:last-child {
  margin-bottom: 0;
}

.my-themes-product-feature {
	padding-block: var(--my-themes-gutter);
	color: var(--my-themes-ink);
	background: var(--my-themes-bone);
}

.my-themes-product-feature__grid {
  display: grid;
  padding-inline: var(--my-themes-gutter);
  gap: 2.5rem;
}

.my-themes-product-feature__media {
  min-height: 28rem;
  overflow: hidden;
  border-radius: var(--my-themes-radius-md);
	background: var(--my-themes-paper);
}

.my-themes-product-feature__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.my-themes-product-placeholder {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 28rem;
  place-items: center;
  color: var(--my-themes-ink);
	background: linear-gradient(145deg, #fbfaf7 10%, #e7e5de 100%);
}

.my-themes-product-placeholder::before {
  position: absolute;
  width: 38%;
  min-width: 8rem;
  aspect-ratio: 0.56;
	border: 1px solid #d9d7cf;
  border-radius: 0.5rem 0.5rem 2rem 2rem;
	background: linear-gradient(160deg, #fffefa, #e8e6df);
  box-shadow: 0 24px 55px rgba(21, 23, 20, 0.14);
  content: "";
}

.my-themes-product-placeholder span {
  position: relative;
  z-index: 1;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.my-themes-product-feature__content {
  padding-bottom: 2rem;
}

.my-themes-product-feature__content h2 {
  max-width: 9ch;
  margin-bottom: 1.25rem;
}

.my-themes-product-feature__content > p:not(.my-themes-eyebrow) {
  max-width: 32rem;
  margin-bottom: 1.75rem;
	color: rgba(40, 40, 39, 0.7);
}

.my-themes-product-price {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.my-themes-product-feature .my-themes-button--dark {
  color: var(--my-themes-ink);
  background: var(--my-themes-paper);
}

.my-themes-principles {
  background: var(--my-themes-bone);
}

.my-themes-section-heading {
  display: grid;
  margin-bottom: clamp(3rem, 8vw, 6rem);
  gap: 1.5rem;
}

.my-themes-principle-list {
  border-top: 1px solid var(--my-themes-line);
}

.my-themes-principle-list article {
  display: grid;
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--my-themes-line);
  gap: 0.65rem;
}

.my-themes-principle-list article > span {
  font-size: 0.65rem;
  font-weight: 650;
}

.my-themes-principle-list h3 {
  margin-bottom: 0.25rem;
}

.my-themes-principle-list p {
  max-width: 31rem;
  margin-bottom: 0;
  color: rgba(21, 23, 20, 0.68);
}

.my-themes-faq {
  background: var(--my-themes-paper);
}

.my-themes-faq__grid {
  display: grid;
  gap: 3rem;
}

.my-themes-accordion {
  border-top: 1px solid var(--my-themes-line);
}

.my-themes-accordion details {
  border-bottom: 1px solid var(--my-themes-line);
}

.my-themes-accordion summary {
  display: grid;
  min-height: 4.75rem;
  padding-block: 1rem;
  grid-template-columns: 1fr 1.5rem;
  align-items: center;
  gap: 1rem;
  font-weight: 560;
  list-style: none;
}

.my-themes-accordion summary::-webkit-details-marker {
  display: none;
}

.my-themes-accordion summary span {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
}

.my-themes-accordion summary span::before,
.my-themes-accordion summary span::after {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 220ms ease;
}

.my-themes-accordion summary span::after {
  transform: rotate(90deg);
}

.my-themes-accordion details[open] summary span::after {
  transform: rotate(0);
}

.my-themes-accordion details p {
  max-width: 35rem;
  padding: 0 2.5rem 1.5rem 0;
  margin: 0;
  color: rgba(21, 23, 20, 0.68);
}

.my-themes-closing-cta {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
	color: var(--my-themes-ink);
	background: var(--my-themes-paper-deep);
}

.my-themes-closing-cta::before {
  position: absolute;
  top: -18rem;
  left: 50%;
  width: 36rem;
  height: 36rem;
	border: 1px solid var(--my-themes-line);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.my-themes-closing-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 34rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.my-themes-closing-cta h2 {
  max-width: 10ch;
  margin-bottom: 2rem;
}

/* Footer */
.my-themes-site-footer {
  padding-top: clamp(4rem, 10vw, 7rem);
	color: var(--my-themes-ink);
	background: var(--my-themes-paper-deep);
}

.my-themes-footer-grid {
  display: grid;
  padding-bottom: 3.5rem;
  gap: 2.75rem;
}

.my-themes-footer-brand .my-themes-brand {
  margin-bottom: 1.25rem;
}

.my-themes-footer-brand img {
  max-width: 9rem;
  max-height: 2.5rem;
  filter: brightness(0);
}

.my-themes-footer-brand p {
  max-width: 24rem;
  margin-bottom: 0;
  color: rgba(40, 40, 39, 0.64);
}

.my-themes-footer-column h2 {
  padding-bottom: 0.8rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--my-themes-line);
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.my-themes-footer-menu,
.my-themes-footer-column .menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.my-themes-footer-menu a,
.my-themes-footer-column .menu a {
  display: block;
  padding-block: 0.45rem;
  color: rgba(40, 40, 39, 0.76);
  font-size: 0.875rem;
  text-decoration: none;
}

.my-themes-footer-menu a:hover,
.my-themes-footer-column .menu a:hover {
  color: var(--my-themes-ink);
}

.my-themes-footer-bottom {
  display: flex;
  padding-block: 1.25rem;
  border-top: 1px solid var(--my-themes-line);
  flex-direction: column;
  gap: 0.45rem;
}

.my-themes-footer-bottom p {
  margin: 0;
  color: rgba(40, 40, 39, 0.56);
  font-size: 0.625rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-transform: uppercase;
}

/* WordPress content */
.my-themes-content-main,
.my-themes-shop-main {
  min-height: 65vh;
  padding-top: calc(var(--my-themes-header-offset) + clamp(3.5rem, 8vw, 7rem));
  padding-bottom: clamp(5rem, 10vw, 9rem);
}

.my-themes-page-header,
.my-themes-entry-header {
  margin-bottom: clamp(2.5rem, 7vw, 5rem);
}

.my-themes-page-header h1,
.my-themes-entry-header h1 {
  max-width: 13ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.75rem, 9vw, 6rem);
}

.archive-description {
  max-width: 42rem;
  color: rgba(21, 23, 20, 0.68);
  font-size: 1.05rem;
}

.my-themes-post-grid {
  display: grid;
  gap: 2.75rem 1.5rem;
}

.my-themes-post-card {
  min-width: 0;
}

.my-themes-post-card__image {
  display: block;
  margin-bottom: 1.4rem;
  overflow: hidden;
  border-radius: var(--my-themes-radius-sm);
  background: var(--my-themes-bone);
}

.my-themes-post-card__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 550ms var(--my-themes-ease);
}

.my-themes-post-card:hover .my-themes-post-card__image img {
  transform: scale(1.025);
}

.entry-meta {
  display: flex;
  margin-bottom: 0.8rem;
  gap: 0.45rem;
  color: rgba(21, 23, 20, 0.58);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.my-themes-post-card .entry-title {
  margin-bottom: 0.85rem;
  font-size: clamp(1.75rem, 6vw, 2.6rem);
}

.my-themes-post-card .entry-title a {
  text-decoration: none;
}

.entry-summary {
  color: rgba(21, 23, 20, 0.68);
}

.entry-summary p:last-child {
  margin-bottom: 1.1rem;
}

.my-themes-search-card {
  padding: 1.5rem;
  border: 1px solid var(--my-themes-line);
  border-radius: var(--my-themes-radius-md);
}

.my-themes-entry-featured {
  margin: 0 calc(var(--my-themes-gutter) * -0.25) clamp(2.5rem, 7vw, 5rem);
  overflow: hidden;
  border-radius: var(--my-themes-radius-sm);
}

.my-themes-entry-featured img {
  width: 100%;
}

.entry-content {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.75;
}

.entry-content > * {
  margin-bottom: 1.5rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  padding-top: 0.65em;
  margin-bottom: 0.55em;
}

.entry-content h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
}

.entry-content h3 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

.entry-content a {
  text-decoration: underline;
}

.entry-content blockquote {
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 2px solid var(--my-themes-ink);
  font-family: "Instrument Sans", Arial, sans-serif;
	font-weight: 520;
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  line-height: 1.2;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
}

.entry-content th,
.entry-content td {
  padding: 0.75rem;
  border: 1px solid var(--my-themes-line);
  text-align: left;
}

.alignwide {
  width: min(76rem, calc(100vw - (2 * var(--my-themes-gutter))));
  max-width: none;
  margin-right: 50%;
  margin-left: 50%;
  transform: translateX(-50%);
}

.alignfull {
  width: 100vw;
  max-width: none;
  margin-right: 50%;
  margin-left: 50%;
  transform: translateX(-50%);
}

.wp-caption,
.gallery-caption {
  max-width: 100%;
  color: rgba(21, 23, 20, 0.62);
  font-size: 0.75rem;
}

.bypostauthor {
  border-left-color: var(--my-themes-sage-dark);
}

.sticky {
  position: relative;
}

.sticky::before {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  color: var(--my-themes-paper);
  background: var(--my-themes-ink);
  content: "Featured";
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-links,
.post-navigation,
.posts-navigation,
.navigation.pagination {
  margin-top: 3rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.nav-links a,
.nav-links .page-numbers {
  text-decoration: none;
}

.nav-links .page-numbers {
  display: inline-grid;
  min-width: 2.5rem;
  min-height: 2.5rem;
  border: 1px solid var(--my-themes-line);
  border-radius: 999px;
  place-items: center;
}

.nav-links .page-numbers.current {
  color: var(--my-themes-paper);
  background: var(--my-themes-ink);
}

.post-navigation .nav-links > div {
  max-width: 45%;
}

.post-navigation .nav-links a {
  display: grid;
  gap: 0.3rem;
}

.post-navigation .nav-links span {
  color: rgba(21, 23, 20, 0.54);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.post-navigation .nav-links strong {
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.my-themes-tags {
  margin-top: 2rem;
}

.my-themes-tags a {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  margin: 0.25rem;
  border: 1px solid var(--my-themes-line);
  border-radius: 999px;
  font-size: 0.7rem;
  text-decoration: none;
}

.my-themes-empty-state,
.my-themes-404__inner {
  max-width: 42rem;
  padding: clamp(2rem, 6vw, 5rem);
  border-radius: var(--my-themes-radius-lg);
  background: var(--my-themes-bone);
}

.my-themes-empty-state h2,
.my-themes-404 h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 9vw, 5rem);
}

.my-themes-404 {
  display: grid;
  min-height: 80vh;
  padding-top: calc(var(--my-themes-header-offset) + 3rem);
  padding-bottom: 4rem;
  place-items: center;
}

.my-themes-404__inner > p:not(.my-themes-eyebrow) {
  max-width: 30rem;
  margin-bottom: 1.75rem;
}

/* Comments and forms */
.my-themes-comments {
  padding-top: 3rem;
  margin-top: 4rem;
  border-top: 1px solid var(--my-themes-line);
}

.comments-title,
.comment-reply-title {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
}

.comment-list,
.comment-list .children {
  padding: 0;
  list-style: none;
}

.comment-list .children {
  padding-left: 1.25rem;
}

.comment-body {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--my-themes-line);
}

.comment-meta {
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.comment-author img {
  border-radius: 50%;
}

.comment-form {
  display: grid;
  gap: 1rem;
}

.comment-form p {
  margin: 0;
}

.comment-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="password"],
input[type="number"],
textarea,
select {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.75rem;
  border: 1px solid var(--my-themes-line);
  border-radius: 0.35rem;
  background: var(--my-themes-paper);
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--my-themes-ink);
  outline: 1px solid var(--my-themes-ink);
  outline-offset: 0;
}

/* WooCommerce — public markup only, no template overrides */
.my-themes-shop-shell {
  min-height: 50vh;
}

.woocommerce .woocommerce-breadcrumb {
  margin-bottom: 1.25rem;
  color: rgba(21, 23, 20, 0.54);
  font-size: 0.7rem;
}

.woocommerce .woocommerce-breadcrumb a {
  color: inherit;
}

.woocommerce-products-header__title.page-title,
.woocommerce div.product .product_title {
  margin-bottom: 1.25rem;
  font-size: clamp(2.75rem, 9vw, 5.5rem);
  line-height: 0.95;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  float: none;
  margin-bottom: 1.5rem;
}

.woocommerce .woocommerce-ordering select {
  min-width: 14rem;
}

.woocommerce ul.products {
  display: grid;
  margin: 2rem 0 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem 0.8rem;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none;
  width: auto;
  margin: 0;
}

body.woocommerce-page.woocommerce-shop ul.products {
  display: grid;
  width: min(100%, 48rem);
  margin-right: auto;
  margin-left: auto;
  grid-template-columns: minmax(0, 1fr);
}

body.woocommerce-page.woocommerce-shop ul.products[class*="columns-"] li.product {
  float: none;
  width: 100% !important;
  max-width: none;
  margin: 0 !important;
}

body.woocommerce-page.woocommerce-shop ul.products li.product .woocommerce-LoopProduct-link {
  display: block;
  width: 100%;
}

.woocommerce ul.products li.product a img {
  margin-bottom: 1rem;
  border-radius: var(--my-themes-radius-sm);
  background: var(--my-themes-paper);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  display: -webkit-box;
  min-height: 2.1em;
  padding: 0;
  margin-bottom: 0.45rem;
  overflow: hidden;
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: clamp(1.15rem, 4vw, 1.6rem);
  font-weight: 500;
  line-height: 1.05;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.woocommerce-page.woocommerce-shop ul.products li.product .woocommerce-loop-product__title {
  display: block;
  width: min(100%, 20ch);
  min-height: 0;
  overflow: visible;
  font-size: clamp(1.45rem, 6vw, 2.15rem);
  line-height: 1.08;
  white-space: normal;
  text-wrap: pretty;
  -webkit-box-orient: initial;
  -webkit-line-clamp: initial;
}

.woocommerce ul.products li.product .price {
  color: var(--my-themes-ink);
  font-size: 0.85rem;
}

.woocommerce ul.products li.product .button {
  width: auto;
  min-height: 2.5rem;
  padding: 0.7rem 1.15rem;
  margin-top: 0.85rem;
  font-size: 0.63rem;
}

body.woocommerce-page.woocommerce-shop ul.products li.product .button {
  display: inline-flex;
  width: max-content;
  min-width: 5.75rem;
  min-height: 2.25rem;
  padding: 0.62rem 0.95rem;
  font-size: 0.6rem;
  line-height: 1;
  white-space: nowrap;
}

body.woocommerce-page.woocommerce-shop span.onsale {
  display: none;
}

.woocommerce span.onsale {
  top: 0.65rem;
  right: auto;
  left: 0.65rem;
  min-width: auto;
  min-height: auto;
  padding: 0.45rem 0.6rem;
  border-radius: 999px;
  color: var(--my-themes-paper);
  background: var(--my-themes-ink);
  font-size: 0.6rem;
  line-height: 1;
}

.woocommerce div.product {
  display: flow-root;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  float: none;
  width: 100%;
}

.woocommerce div.product div.images img {
  border-radius: var(--my-themes-radius-sm);
  background: var(--my-themes-paper);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--my-themes-ink);
  font-size: 1.1rem;
}

.woocommerce-product-details__short-description {
  color: rgba(21, 23, 20, 0.72);
}

.woocommerce div.product form.cart {
  display: flex;
  align-items: stretch;
  gap: 0.65rem;
}

.woocommerce .quantity .qty {
  min-height: 3.25rem;
  border: 1px solid var(--my-themes-line);
  border-radius: 999px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  padding: 0;
  overflow-x: auto;
  border-bottom: 1px solid var(--my-themes-line);
  gap: 1.25rem;
}

.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 {
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 0.85rem 0;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.woocommerce div.product .woocommerce-tabs .panel {
  padding-top: 1.5rem;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 1rem 1rem 1rem 3rem;
  border-top-color: var(--my-themes-sage-dark);
  background: var(--my-themes-bone);
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--my-themes-sage-dark);
}

.woocommerce table.shop_table {
  border-color: var(--my-themes-line);
  border-radius: var(--my-themes-radius-sm);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 0.9rem;
  border-color: var(--my-themes-line);
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout #payment #place_order {
  width: 100%;
}

.woocommerce-checkout #payment {
  border-radius: var(--my-themes-radius-md);
  background: var(--my-themes-bone);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  min-height: 3.15rem;
  padding: 0.75rem;
  border: 1px solid var(--my-themes-line);
  background: var(--my-themes-paper);
}

.select2-container--default .select2-selection--single {
  min-height: 3.15rem;
  border-color: var(--my-themes-line);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 3.05rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 3.05rem;
}

/* Responsive layout */
@media (min-width: 37.5rem) {
  .my-themes-search-form {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .my-themes-search-form button {
    min-width: 9rem;
  }

  .my-themes-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .my-themes-footer-grid {
    grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(9rem, 0.7fr));
  }

  .my-themes-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 52.5rem) {
  .my-themes-header-inner {
    min-height: 5rem;
    padding-inline: var(--my-themes-gutter);
  }

  .my-themes-menu-toggle {
    display: none;
  }

  .my-themes-desktop-nav {
    display: block;
    justify-self: start;
  }

  .my-themes-desktop-nav > ul,
  .my-themes-desktop-nav > .menu {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2.2rem);
  }

  .my-themes-desktop-nav li {
    position: relative;
  }

  .my-themes-desktop-nav a {
    display: block;
    padding-block: 0.65rem;
    font-size: 0.68rem;
    font-weight: 650;
    letter-spacing: 0.09em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .my-themes-desktop-nav > ul > li > a::after,
  .my-themes-desktop-nav > .menu > li > a::after {
    display: block;
    width: 0;
    height: 1px;
    margin-top: 0.25rem;
    background: currentColor;
    content: "";
    transition: width 220ms var(--my-themes-ease);
  }

  .my-themes-desktop-nav > ul > li:hover > a::after,
  .my-themes-desktop-nav > .menu > li:hover > a::after,
  .my-themes-desktop-nav .current-menu-item > a::after {
    width: 100%;
  }

  .my-themes-desktop-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: -1rem;
    display: block;
    min-width: 13rem;
    padding: 0.65rem 1rem;
    border: 1px solid var(--my-themes-line);
    border-radius: 0.4rem;
    color: var(--my-themes-ink);
    background: var(--my-themes-bone);
    box-shadow: var(--my-themes-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(0.5rem);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .my-themes-desktop-nav li:hover > .sub-menu,
  .my-themes-desktop-nav li:focus-within > .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .my-themes-brand__image,
  .custom-logo {
    max-width: 10.5rem;
    max-height: 2.6rem;
  }

  .my-themes-account-link {
    display: inline-flex;
  }

  .my-themes-search-panel__dialog {
    padding-bottom: 3.5rem;
  }

  .my-themes-fallback-hero__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
    align-items: center;
    gap: 4rem;
  }

  .my-themes-fallback-product-stage {
    min-height: 34rem;
  }

  .my-themes-fallback-orbit--one {
    right: -18%;
    width: 60vw;
    height: 60vw;
  }

  .my-themes-editorial-grid {
    grid-template-columns: 0.35fr minmax(0, 1.15fr) minmax(19rem, 0.8fr);
    align-items: start;
  }

  .my-themes-product-feature__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 8rem);
  }

  .my-themes-product-feature__content {
    padding: 3rem 0;
  }

  .my-themes-section-heading {
    grid-template-columns: 0.35fr 1.65fr;
  }

  .my-themes-principle-list article {
    grid-template-columns: 0.35fr minmax(15rem, 0.75fr) 1fr;
    align-items: baseline;
    gap: 1.5rem;
  }

  .my-themes-faq__grid {
    grid-template-columns: minmax(20rem, 0.8fr) minmax(25rem, 1.2fr);
    gap: clamp(4rem, 9vw, 9rem);
  }

  .my-themes-post-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .woocommerce .woocommerce-result-count {
    float: left;
  }

  .woocommerce .woocommerce-ordering {
    float: right;
  }

  .woocommerce ul.products {
    clear: both;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3rem 1.25rem;
  }

  .woocommerce div.product div.images {
    float: left;
    width: 55%;
  }

  .woocommerce div.product div.summary {
    float: right;
    width: 39%;
    padding-top: 2rem;
  }

  .woocommerce div.product .woocommerce-tabs,
  .woocommerce div.product .related.products,
  .woocommerce div.product .upsells.products {
    clear: both;
    padding-top: 4rem;
  }
}

@media (min-width: 75rem) {
  .my-themes-footer-grid {
    grid-template-columns: minmax(25rem, 2fr) minmax(10rem, 0.55fr) minmax(10rem, 0.55fr);
    gap: 6rem;
  }

  .my-themes-product-feature__media,
  .my-themes-product-placeholder {
    min-height: 46rem;
  }
}

@media (max-width: 48rem) {
  .woocommerce table.shop_table_responsive tr td::before,
  .woocommerce-page table.shop_table_responsive tr td::before {
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body:not(.msuie-has-landing) *,
  body:not(.msuie-has-landing) *::before,
  body:not(.msuie-has-landing) *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .my-themes-fallback-product-card {
    transform: rotate(-3deg);
  }
}

@media (forced-colors: active) {
  .my-themes-header-bar,
  .my-themes-button,
  .my-themes-icon-button,
  .my-themes-drawer__panel,
  .my-themes-search-panel__dialog {
    border: 1px solid CanvasText;
  }
}

/* WooCommerce mobile merchandising refinements (1.5.15). */
body.woocommerce-page.woocommerce-shop ul.products li.product {
  text-align: center;
}

body.woocommerce-page.woocommerce-shop ul.products li.product .woocommerce-loop-product__title {
  width: min(100%, 24ch);
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1.35rem, 5.4vw, 2rem);
  text-align: center;
}

body.woocommerce-page.woocommerce-shop ul.products li.product .price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  font-size: clamp(1.5rem, 6vw, 2.2rem);
  line-height: 1.1;
  text-align: center;
}

body.woocommerce-page.woocommerce-shop ul.products li.product .price del {
  font-size: 0.76em;
}

body.woocommerce-page.woocommerce-shop ul.products li.product .price ins {
  font-weight: 700;
}

body.woocommerce-page.woocommerce-shop ul.products li.product .button {
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 38.75rem) {
  body:not(.yarbelnn-track-order-page):not(.my-themes-front-page):not(.msuie-has-landing) .my-themes-content-main,
  body:not(.yarbelnn-track-order-page):not(.my-themes-front-page):not(.msuie-has-landing) .my-themes-shop-main {
    padding-top: calc(var(--my-themes-header-offset) + 30px);
  }
}

@media (max-width: 51.99rem) {
  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block > .wc-block-cart__empty-cart__title {
    display: flex;
    min-height: calc(100svh - 14rem);
    padding-top: 0;
    margin-bottom: 1rem;
    flex-direction: column;
    justify-content: center;
  }

  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block > .wc-block-cart__empty-cart__title::before {
    margin: 0 auto clamp(2.5rem, 8svh, 4rem);
    flex: 0 0 auto;
  }

  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block > .wp-block-separator {
    margin-top: 0;
    margin-bottom: 1.5rem;
  }

  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__products {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product {
    width: 100%;
    max-width: none;
    flex: none;
  }

  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-onsale {
    display: none !important;
  }

  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title {
    margin-top: 1.15rem;
    margin-bottom: 0.55rem;
    font-size: clamp(1.35rem, 5.8vw, 1.75rem);
    font-weight: 600;
    line-height: 1.12;
  }

  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-price {
    font-size: clamp(1.48rem, 6.25vw, 1.9rem);
    line-height: 1.1;
  }

  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-price del {
    font-size: 0.76em;
  }

  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-price ins {
    font-weight: 700;
  }

  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart a {
    border-bottom: 0;
    text-decoration: none !important;
    box-shadow: none;
  }

  body.woocommerce-cart .wc-block-cart-items__row .wc-block-cart-item__image {
    padding-right: 0.25rem;
  }

  body.woocommerce-cart .wc-block-cart-items__row .wc-block-cart-item__image img {
    width: 4.75rem;
    max-width: 4.75rem;
    height: 4.75rem;
  }

  body.woocommerce-cart .wc-block-cart-items__row .wc-block-components-product-name {
    font-size: 1rem;
    line-height: 1.2;
  }

  body.woocommerce-cart .wc-block-cart-items__row .wc-block-components-product-price,
  body.woocommerce-cart .wc-block-cart-items__row .wc-block-cart-item__total-price-and-sale-badge-wrapper {
    font-size: 0.94rem;
    line-height: 1.25;
  }

  body.woocommerce-cart .wc-block-cart-items__row .wc-block-components-product-metadata__description {
    font-size: 0.88rem;
    line-height: 1.35;
  }

  body.woocommerce-cart .wc-block-cart-items__row .wc-block-components-quantity-selector {
    height: 2.95rem;
    min-height: 2.95rem;
  }

  body.woocommerce-cart .wc-block-cart-items__row .wc-block-components-quantity-selector__button,
  body.woocommerce-cart .wc-block-cart-items__row .wc-block-components-quantity-selector__input {
    height: 100%;
    min-height: 0;
  }

  body.woocommerce-cart .wc-block-cart__sidebar > .wp-block-woocommerce-cart-order-summary-block {
    margin-bottom: 0.5rem;
  }

  body.woocommerce-cart .wc-block-cart__payment-options:not(:has(button, iframe)) {
    display: none;
  }

  body.woocommerce-cart .wc-block-components-express-payment-continue-rule--cart {
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
  }
}

/* WooCommerce price, navigation, and cart refinements (1.5.17). */
.woocommerce :where(
  a.woocommerce-LoopProduct-link,
  .woocommerce-loop-product__title,
  .product_title,
  .price,
  .price a
),
.wc-block-grid__product :where(
  .wc-block-grid__product-link,
  .wc-block-grid__product-title,
  .wc-block-grid__product-price,
  .wc-block-grid__product-price a
),
:where(
  .wc-block-components-product-name,
  .wc-block-components-product-price,
  .wc-block-components-product-price a
) {
  border-bottom: 0 !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

.woocommerce .price,
.wc-block-grid__product-price,
.wc-block-components-product-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.34em;
  font-variant-numeric: tabular-nums;
}

/* Keep every storefront price on one shared hierarchy: a strong integer with
 * a quieter currency sign and cents. The spans are added progressively by
 * theme.js, including after WooCommerce Blocks refresh their markup. */
.my-themes-price-currency {
  display: inline-block;
  font-size: 0.52em;
  font-weight: 500;
  line-height: 1;
  vertical-align: 0.18em;
}

.woocommerce .price > .woocommerce-Price-amount .woocommerce-Price-currencySymbol,
.wc-block-grid__product-price > .woocommerce-Price-amount .woocommerce-Price-currencySymbol,
.wc-block-components-product-price > .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
  display: inline-block;
  font-size: 0.52em;
  font-weight: 500;
  line-height: 1;
  vertical-align: 0.18em;
}

.my-themes-price-fraction {
  display: inline-block;
  font-size: 0.52em;
  font-weight: 500;
  line-height: 1;
  vertical-align: 0.42em;
}

.woocommerce .price del,
.wc-block-grid__product-price del,
.wc-block-components-product-price del {
	order: 2;
  color: rgba(21, 23, 20, 0.52);
  font-size: 0.68em !important;
  font-weight: 450;
  opacity: 1;
}

.woocommerce .price ins,
.wc-block-grid__product-price ins,
.wc-block-components-product-price ins {
	order: 1;
  color: var(--my-themes-ink);
  font-size: 1em;
  font-weight: 700;
  text-decoration: none;
}

.woocommerce .price ins .woocommerce-Price-currencySymbol {
  display: inline-block;
  margin-right: 0.04em;
  font-size: 0.52em;
  font-weight: 500;
  vertical-align: 0.18em;
}

.wc-block-grid__product-price ins .woocommerce-Price-currencySymbol,
.wc-block-components-product-price ins .woocommerce-Price-currencySymbol {
  display: inline-block;
  margin-right: 0.04em;
  font-size: 0.52em;
  font-weight: 500;
  vertical-align: 0.18em;
}

.wc-block-components-product-price ins {
  display: inline-block;
}

.wc-block-components-product-price ins::first-letter {
  font-size: inherit;
  font-weight: inherit;
}

body.single-product.woocommerce div.product .summary .price {
  font-size: clamp(1.75rem, 7.2vw, 2.5rem);
  line-height: 1.05;
}

body.single-product.woocommerce div.product .onsale,
body.single-product.woocommerce .my-themes-sidebar {
  display: none !important;
}

body.woocommerce-page.woocommerce-shop ul.products li.product .button,
body.woocommerce-page.woocommerce-shop ul.products li.product .button:hover,
body.woocommerce-page.woocommerce-shop ul.products li.product .button:focus-visible {
  border-color: #8054b3;
  color: #fff;
  background: #8054b3;
}

body.woocommerce-page.woocommerce-shop ul.products li.product .button:hover,
body.woocommerce-page.woocommerce-shop ul.products li.product .button:focus-visible {
  background: #70439f;
}

.my-themes-mobile-nav {
  display: grid;
  padding-block: 1.15rem;
  align-content: start;
  gap: 1.15rem;
}

.my-themes-drawer__title {
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.my-themes-mobile-nav__group {
  min-width: 0;
}

.my-themes-mobile-nav__heading {
  padding: 0;
  margin: 0 0 0.42rem;
  color: var(--my-themes-ink);
  font-size: clamp(0.9rem, 3.9vw, 1rem);
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.my-themes-mobile-nav .my-themes-mobile-nav-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.my-themes-mobile-nav-list > li {
  border-bottom: 1px solid var(--my-themes-line);
}

.my-themes-mobile-nav-list > li:first-child {
  border-top: 1px solid var(--my-themes-line);
}

.my-themes-mobile-nav-list > li > a {
  display: flex;
  min-height: 2.42rem;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  color: rgba(21, 23, 20, 0.62);
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: clamp(0.98rem, 4.15vw, 1.08rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-decoration: none;
}

.my-themes-mobile-nav-list > li > a::after {
  display: none;
  content: none;
}

@media (max-height: 40rem) {
  .my-themes-mobile-nav {
    gap: 0.62rem;
    padding-block: 0.55rem;
  }

  .my-themes-mobile-nav__heading {
    margin-bottom: 0.2rem;
    font-size: 0.84rem;
  }

  .my-themes-mobile-nav-list > li > a {
    min-height: 2rem;
    font-size: clamp(0.92rem, 4vw, 1rem);
  }
}

@media (max-width: 51.99rem) {
  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block > .wp-block-separator.is-style-dots {
    display: none !important;
  }

  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart a,
  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart a:hover,
  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart a:focus-visible {
    border-color: #8054b3 !important;
    color: #fff !important;
    background: #8054b3 !important;
    border-bottom: 0 !important;
    text-decoration: none !important;
    box-shadow: none !important;
  }

  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart a:hover,
  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart a:focus-visible {
    border-color: #70439f !important;
    background: #70439f !important;
  }

  body.woocommerce-cart .wc-block-cart-items__row .wc-block-cart-item__image img {
    width: calc(4.75rem + 5px);
    max-width: calc(4.75rem + 5px);
    height: calc(4.75rem + 5px);
  }

  body.woocommerce-cart .wc-block-cart-items__row .wc-block-components-product-name {
    font-size: calc(1rem + 5px);
    line-height: 1.16;
  }

  body.woocommerce-cart .wc-block-cart-items__row .wc-block-components-product-price,
  body.woocommerce-cart .wc-block-cart-items__row .wc-block-cart-item__total-price-and-sale-badge-wrapper {
    font-size: calc(0.94rem + 5px);
    line-height: 1.2;
  }

  body.woocommerce-cart .wc-block-cart-items__row .wc-block-components-product-metadata__description,
  body.woocommerce-cart .wc-block-cart-items__row .wc-block-components-product-metadata__description p {
    font-size: 0.71rem;
    line-height: 1.32;
  }

  body.woocommerce-cart .wc-block-cart-items__row .wc-block-cart-item__total-price-and-sale-badge-wrapper > .wc-block-components-product-price {
    display: none !important;
  }

  body.woocommerce-cart .wc-block-cart-items__row .wc-block-components-quantity-selector {
    width: 6.15rem;
    height: calc(2.95rem - 5px);
    min-height: calc(2.95rem - 5px);
  }

  body.woocommerce-cart .wc-block-cart-items__row .wc-block-components-quantity-selector__button {
    width: 2rem;
    min-width: 2rem;
  }

  body.woocommerce-checkout .wc-block-components-order-summary-item__description .wc-block-components-product-price {
    font-size: clamp(1.05rem, 4.8vw, 1.3rem);
    line-height: 1.15;
  }

  body.woocommerce-checkout .wc-block-components-order-summary-item__description > .wc-block-components-product-name {
    font-size: calc(0.8125rem + 2px);
  }
}

/* Yarbelnn storefront refinements (1.5.18). */

/* Keep visible prices on the same compact currency/integer/cents template,
 * including the original struck price. */
.my-themes-price-currency,
.woocommerce .price del .woocommerce-Price-currencySymbol,
.wc-block-grid__product-price del .woocommerce-Price-currencySymbol,
.wc-block-components-product-price del .woocommerce-Price-currencySymbol {
  display: inline-block;
  font-size: 0.52em;
  font-weight: 500;
  line-height: 1;
  vertical-align: 0.18em;
}

.my-themes-price-fraction {
  display: inline-block;
  font-size: 0.52em;
  font-weight: 500;
  line-height: 1;
  vertical-align: 0.42em;
}

.woocommerce .price del .my-themes-price-fraction,
.wc-block-grid__product-price del .my-themes-price-fraction,
.wc-block-components-product-price del .my-themes-price-fraction {
  font-size: 0.52em;
  vertical-align: 0.34em;
}

/* Use the available line width naturally on standard information pages. */
.entry-content h2,
.entry-content h3,
.yarbelnn-policy h2,
.yarbelnn-policy h3 {
  max-width: none;
  overflow-wrap: normal;
  white-space: normal;
  word-break: normal;
  text-wrap: wrap;
}

/* The drawer links are intentionally quieter and two pixels smaller than the
 * grouped headings; the utility destinations remain visibly stronger. */
.my-themes-drawer__title {
  font-size: 1.2rem;
}

.my-themes-mobile-nav-list > li > a {
  color: rgba(21, 23, 20, 0.62);
  font-size: clamp(0.855rem, 3.64vw, 0.955rem);
  font-weight: 400;
}

.my-themes-drawer__utility a {
  font-size: calc(0.6875rem + 3px);
}

/* The landing hero keeps its desktop calls to action, while mobile uses the
 * compact scroll-first composition. This does not alter any timeline code. */
@media (max-width: 37.499rem) {
  body.msuie-has-landing .msuie-hero-actions,
  body.my-themes-front-page .my-themes-fallback-video-actions,
  body.my-themes-front-page .my-themes-fallback-video-link {
    display: none !important;
  }
}

/* Native WooCommerce customer registration is exposed by the matching PHP
 * option shim; these rules only tune the public login presentation. */
body.woocommerce-account .woocommerce-LostPassword a,
body.woocommerce-account .lost_password a {
  text-decoration: none !important;
}

body.woocommerce-account .woocommerce-form-login .form-row:last-of-type {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

body.woocommerce-account .woocommerce-form-login .form-row:last-of-type > input[type="hidden"] {
  display: none;
}

body.woocommerce-account .woocommerce-form-login__submit {
  order: 1;
  width: auto;
  height: 47px;
  min-height: 47px;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

body.woocommerce-account .woocommerce-form-login__rememberme {
  display: inline-flex;
  order: 2;
  align-items: center;
  min-height: 32px;
  margin: 0;
  font-size: clamp(0.8rem, 3.8vw, 1rem);
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
}

/* Search submit is a centered text control; the decorative arrow is removed
 * in the template, and this also covers cached/older markup safely. */
.my-themes-search-form button {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.my-themes-search-form button > span[aria-hidden="true"] {
  display: none !important;
}

/* Yarbelnn menu, price, and order-summary refinements (1.5.19). */

/* The landing purchase control is useful while browsing, but it must never
 * cover the final destinations inside the opened mobile menu. */
body.my-themes-menu-open .msuie-sticky-buy {
  display: none !important;
}

/* Price parts stay on one line inside the landing cart sheet. The plugin's
 * generic cart-item span rule is deliberately overridden only for prices. */
.my-themes-price-decorated {
  white-space: nowrap;
}

.msuie-cart-item > b.my-themes-price-decorated,
.msuie-cart-total > strong.my-themes-price-decorated {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0;
  white-space: nowrap;
}

.msuie-cart-item > b.my-themes-price-decorated > .my-themes-price-currency,
.msuie-cart-item > b.my-themes-price-decorated > .my-themes-price-fraction,
.msuie-cart-total > strong.my-themes-price-decorated > .my-themes-price-currency,
.msuie-cart-total > strong.my-themes-price-decorated > .my-themes-price-fraction {
  display: inline-block;
  margin-top: 0;
  color: inherit;
  font-size: 0.52em;
  font-weight: 500;
  line-height: 1;
  text-transform: none;
  vertical-align: baseline;
}

/* Currency and cents share the number baseline. When a sale pair exists, the
 * complete struck price uses exactly the same scale as those compact parts. */
.my-themes-price-currency,
.my-themes-price-fraction,
.woocommerce .price .woocommerce-Price-currencySymbol,
.wc-block-grid__product-price .woocommerce-Price-currencySymbol,
.wc-block-components-product-price .woocommerce-Price-currencySymbol,
.woocommerce .price ins .woocommerce-Price-currencySymbol,
.wc-block-grid__product-price ins .woocommerce-Price-currencySymbol,
.wc-block-components-product-price ins .woocommerce-Price-currencySymbol {
  vertical-align: baseline;
}

/* Match the more specific non-sale selectors from the earlier price layer so
 * their raised alignment cannot win the cascade. */
.woocommerce .price > .woocommerce-Price-amount .woocommerce-Price-currencySymbol,
.wc-block-grid__product-price > .woocommerce-Price-amount .woocommerce-Price-currencySymbol,
.wc-block-components-product-price > .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
  vertical-align: baseline;
}

.woocommerce .price del,
.wc-block-grid__product-price del,
.wc-block-components-product-price del,
.msuie-price del,
.msuie-shop-price del,
.msuie-sticky-buy del {
  font-size: 0.52em !important;
}

/* The landing product card ships a more specific rule for both del and its
 * nested amount. Keep the struck price at one compact scale instead of
 * accidentally applying 0.52em twice. */
.msuie-main .msuie-shop-price del {
  font-size: 0.52em !important;
}

.msuie-main .msuie-shop-price {
  font-size: clamp(1.35rem, 7.45vw, 1.92rem);
}

.msuie-main .msuie-shop-price ins .woocommerce-Price-currencySymbol,
.msuie-main .msuie-shop-price ins .my-themes-price-currency,
.msuie-main .msuie-shop-price ins .my-themes-price-fraction {
  font-size: 0.52em;
  font-weight: 500;
  vertical-align: baseline;
}

.woocommerce .price del .woocommerce-Price-amount,
.wc-block-grid__product-price del .woocommerce-Price-amount,
.wc-block-components-product-price del .woocommerce-Price-amount,
.msuie-main .msuie-shop-price del .amount,
.msuie-price del .amount,
.msuie-sticky-buy del .amount {
  font-size: 1em !important;
}

.woocommerce .price del .my-themes-price-currency,
.woocommerce .price del .my-themes-price-fraction,
.woocommerce .price del .woocommerce-Price-currencySymbol,
.wc-block-grid__product-price del .my-themes-price-currency,
.wc-block-grid__product-price del .my-themes-price-fraction,
.wc-block-grid__product-price del .woocommerce-Price-currencySymbol,
.wc-block-components-product-price del .my-themes-price-currency,
.wc-block-components-product-price del .my-themes-price-fraction,
.wc-block-components-product-price del .woocommerce-Price-currencySymbol,
.msuie-price del .my-themes-price-currency,
.msuie-price del .my-themes-price-fraction,
.msuie-price del .woocommerce-Price-currencySymbol,
.msuie-shop-price del .my-themes-price-currency,
.msuie-shop-price del .my-themes-price-fraction,
.msuie-shop-price del .woocommerce-Price-currencySymbol,
.msuie-sticky-buy del .my-themes-price-currency,
.msuie-sticky-buy del .my-themes-price-fraction,
.msuie-sticky-buy del .woocommerce-Price-currencySymbol {
  font-size: 1em;
  font-weight: inherit;
  vertical-align: baseline;
}

/* Woo Blocks render line items as flexible stacks. Preserve that structure
 * while presenting each product as title, supporting copy, then unit price. */
body.woocommerce-cart .wc-block-cart-items__row .wc-block-cart-item__wrap > .wc-block-components-product-name,
body.woocommerce-checkout .wc-block-components-order-summary-item__description > .wc-block-components-product-name {
  order: 1;
}

body.woocommerce-cart .wc-block-cart-items__row .wc-block-cart-item__wrap > .wc-block-components-product-metadata,
body.woocommerce-checkout .wc-block-components-order-summary-item__description > .wc-block-components-product-metadata {
  order: 2;
}

body.woocommerce-cart .wc-block-cart-items__row .wc-block-cart-item__wrap > .wc-block-components-product-backorder-badge,
body.woocommerce-checkout .wc-block-components-order-summary-item__description > .wc-block-components-product-backorder-badge {
  order: 2;
}

body.woocommerce-cart .wc-block-cart-items__row .wc-block-cart-item__wrap > .wc-block-cart-item__prices,
body.woocommerce-checkout .wc-block-components-order-summary-item__description > .wc-block-cart-item__prices {
  order: 3;
  margin-top: 0.28rem;
}

body.woocommerce-cart .wc-block-cart-items__row .wc-block-cart-item__wrap > .wc-block-cart-item__quantity {
  order: 4;
}

body.woocommerce-cart .wc-block-cart-items__row .wc-block-cart-item__wrap > .wc-block-cart-item__save-for-later {
  order: 5;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__description {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

/* Emphasize only the final payable amount, not each intermediate subtotal or
 * shipping line. */
body.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
body.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-size: calc(var(--wp--preset--font-size--medium, 22px) + 3px) !important;
  font-weight: 700 !important;
}

/* Classic shortcode fallbacks use the same 25px/700 final-total hierarchy.
 * These do not affect the current Cart and Checkout Blocks markup. */
body.woocommerce-cart .cart_totals .order-total th,
body.woocommerce-cart .cart_totals .order-total td,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total td {
  font-size: calc(22px + 3px) !important;
  font-weight: 700 !important;
}

/* Blocks can move a sale pair into a cart-row or totals-value wrapper rather
 * than the usual product-price wrapper. Keep those variants on the same
 * compact original-price scale as well. */
.wc-block-cart-item__prices del,
.wc-block-components-totals-item__value del,
.wc-block-components-product-price__value del {
  font-size: 0.52em !important;
}

.wc-block-cart-item__prices del .woocommerce-Price-amount,
.wc-block-components-totals-item__value del .woocommerce-Price-amount,
.wc-block-components-product-price__value del .woocommerce-Price-amount,
.wc-block-cart-item__prices del .my-themes-price-currency,
.wc-block-cart-item__prices del .my-themes-price-fraction,
.wc-block-components-totals-item__value del .my-themes-price-currency,
.wc-block-components-totals-item__value del .my-themes-price-fraction,
.wc-block-components-product-price__value del .my-themes-price-currency,
.wc-block-components-product-price__value del .my-themes-price-fraction {
  font-size: 1em !important;
  vertical-align: baseline !important;
}

/* Cover every price renderer, including the theme fallback and mini-cart
 * markup that does not sit beneath a `.woocommerce .price` wrapper.  These
 * are the same compact, baseline-aligned parts used by the landing card. */
.woocommerce-Price-amount .woocommerce-Price-currencySymbol,
.msuie-price .woocommerce-Price-currencySymbol,
.my-themes-product-price .woocommerce-Price-currencySymbol,
.wc-block-components-product-price__value .woocommerce-Price-currencySymbol,
.wc-block-components-totals-item__value .woocommerce-Price-currencySymbol,
.my-themes-price-currency,
.my-themes-price-fraction {
  display: inline-block;
  font-family: inherit;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  vertical-align: baseline !important;
  font-size: 0.52em !important;
}

/* A struck original price is itself compact.  Keep its dollar sign and cents
 * at the compact amount's full size so they match the sale price's small
 * parts, while the line visibly spans the integer and both decimal digits. */
.woocommerce .price del .woocommerce-Price-amount .woocommerce-Price-currencySymbol,
.woocommerce .price del .my-themes-price-currency,
.woocommerce .price del .my-themes-price-fraction,
.wc-block-grid__product-price del .woocommerce-Price-currencySymbol,
.wc-block-grid__product-price del .my-themes-price-currency,
.wc-block-grid__product-price del .my-themes-price-fraction,
.wc-block-components-product-price del .woocommerce-Price-currencySymbol,
.wc-block-components-product-price del .my-themes-price-currency,
.wc-block-components-product-price del .my-themes-price-fraction,
.wc-block-cart-item__prices del .woocommerce-Price-currencySymbol,
.wc-block-cart-item__prices del .my-themes-price-currency,
.wc-block-cart-item__prices del .my-themes-price-fraction,
.wc-block-components-totals-item__value del .woocommerce-Price-currencySymbol,
.wc-block-components-totals-item__value del .my-themes-price-currency,
.wc-block-components-totals-item__value del .my-themes-price-fraction,
.wc-block-formatted-money-amount del .my-themes-price-currency,
.wc-block-formatted-money-amount del .my-themes-price-fraction,
.msuie-price del .woocommerce-Price-currencySymbol,
.msuie-price del .my-themes-price-currency,
.msuie-price del .my-themes-price-fraction,
.my-themes-product-price del .woocommerce-Price-currencySymbol,
.my-themes-product-price del .my-themes-price-currency,
.my-themes-product-price del .my-themes-price-fraction,
.msuie-shop-price del .woocommerce-Price-currencySymbol,
.msuie-shop-price del .my-themes-price-currency,
.msuie-shop-price del .my-themes-price-fraction,
.msuie-sticky-buy del .woocommerce-Price-currencySymbol,
.msuie-sticky-buy del .my-themes-price-currency,
.msuie-sticky-buy del .my-themes-price-fraction {
  font-size: 1em !important;
  font-weight: inherit;
  vertical-align: baseline !important;
}

.woocommerce .price del,
.woocommerce .price del *,
.wc-block-grid__product-price del,
.wc-block-grid__product-price del *,
.wc-block-components-product-price del,
.wc-block-components-product-price del *,
.wc-block-cart-item__prices del,
.wc-block-cart-item__prices del *,
.wc-block-components-totals-item__value del,
.wc-block-components-totals-item__value del *,
.wc-block-formatted-money-amount del,
.wc-block-formatted-money-amount del *,
.msuie-price del,
.msuie-price del *,
.my-themes-product-price del,
.my-themes-product-price del *,
.msuie-shop-price del,
.msuie-shop-price del *,
.msuie-sticky-buy del,
.msuie-sticky-buy del * {
  text-decoration-line: line-through !important;
  text-decoration-style: solid !important;
  text-decoration-color: currentColor !important;
  text-decoration-thickness: 0.08em !important;
  text-decoration-skip-ink: none !important;
}

/* Storewide price contract (1.5.20): the landing product card is the visual
 * reference for every currency sign and cents pair. Keep the compact parts on
 * the number baseline so they sit lower than the main integer, rather than
 * floating in the middle of the line. */
.my-themes-price-currency,
.my-themes-price-fraction,
.woocommerce .price .woocommerce-Price-currencySymbol,
.wc-block-grid__product-price .woocommerce-Price-currencySymbol,
.wc-block-components-product-price .woocommerce-Price-currencySymbol,
.wc-block-formatted-money-amount .woocommerce-Price-currencySymbol,
.wc-block-components-formatted-money-amount .woocommerce-Price-currencySymbol {
  display: inline-block;
  font-family: inherit;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  text-transform: none;
  vertical-align: baseline !important;
}

.my-themes-price-currency,
.my-themes-price-fraction,
.woocommerce .price .woocommerce-Price-currencySymbol,
.wc-block-grid__product-price .woocommerce-Price-currencySymbol,
.wc-block-components-product-price .woocommerce-Price-currencySymbol,
.wc-block-formatted-money-amount .woocommerce-Price-currencySymbol,
.wc-block-components-formatted-money-amount .woocommerce-Price-currencySymbol {
  font-size: 0.52em !important;
}

/* The original amount is already compact at the <del> level. Its symbol and
 * cents therefore stay at 1em of that compact amount, avoiding a second shrink
 * while matching the sale amount's compact parts. */
.woocommerce .price del .my-themes-price-currency,
.woocommerce .price del .my-themes-price-fraction,
.woocommerce .price del .woocommerce-Price-currencySymbol,
.wc-block-grid__product-price del .my-themes-price-currency,
.wc-block-grid__product-price del .my-themes-price-fraction,
.wc-block-grid__product-price del .woocommerce-Price-currencySymbol,
.wc-block-components-product-price del .my-themes-price-currency,
.wc-block-components-product-price del .my-themes-price-fraction,
.wc-block-components-product-price del .woocommerce-Price-currencySymbol,
.wc-block-formatted-money-amount del .my-themes-price-currency,
.wc-block-formatted-money-amount del .my-themes-price-fraction,
.msuie-main .msuie-shop-price del .my-themes-price-currency,
.msuie-main .msuie-shop-price del .my-themes-price-fraction,
.msuie-main .msuie-shop-price del .woocommerce-Price-currencySymbol {
  font-size: 1em !important;
  font-weight: inherit;
  vertical-align: baseline !important;
}

/* Woo and the landing plugin both set text-decoration:none on amount nodes.
 * Reassert the line on the complete old price, including the decimal pair. */
.woocommerce .price del,
.woocommerce .price del *,
.wc-block-grid__product-price del,
.wc-block-grid__product-price del *,
.wc-block-components-product-price del,
.wc-block-components-product-price del *,
.wc-block-formatted-money-amount del,
.wc-block-formatted-money-amount del *,
.msuie-price del,
.msuie-price del *,
.msuie-shop-price del,
.msuie-shop-price del *,
.msuie-sticky-buy del,
.msuie-sticky-buy del * {
  text-decoration-line: line-through !important;
  text-decoration-style: solid !important;
  text-decoration-color: currentColor !important;
  text-decoration-thickness: 0.08em !important;
  text-decoration-skip-ink: none !important;
}

/* Keep classic Shop prices centered as well as the Blocks product cards. */
body.woocommerce-page.woocommerce-shop ul.products li.product .price {
  justify-content: center !important;
  text-align: center !important;
}

/* Reassert the final amount scale after Woo Blocks' component variables. */
body.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
body.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
body.woocommerce-cart .cart_totals .order-total th,
body.woocommerce-cart .cart_totals .order-total td,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total td {
  font-size: calc(22px + 3px) !important;
  font-weight: 700 !important;
}

/* WooCommerce price placement and glyph refinements (1.5.21).
 * The landing card keeps its original right-side composition, while the
 * separate empty-cart recommendation remains centered beneath its image. */
.msuie-main .msuie-shop-price {
  left: auto !important;
  right: 2.6% !important;
  width: auto !important;
  max-width: none !important;
  justify-content: flex-end !important;
  text-align: right !important;
  transform: none !important;
}

.msuie-main .msuie-shop-price .price {
  left: auto !important;
  right: auto !important;
  width: auto !important;
  max-width: 100% !important;
  justify-content: flex-end !important;
  text-align: right !important;
  transform: none !important;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-price,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-price .price {
  width: 100%;
  margin-inline: auto;
  justify-content: center !important;
  text-align: center !important;
}

/* U+0024 takes its shape from the font. Poppins supplies the same single-stem
 * dollar glyph used by the landing product card without changing price text. */
.my-themes-price-currency,
.woocommerce-Price-currencySymbol,
.msuie-price .woocommerce-Price-currencySymbol,
.msuie-shop-price .woocommerce-Price-currencySymbol,
.msuie-sticky-buy .woocommerce-Price-currencySymbol {
  font-family: "Yarbelnn Currency", Arial, sans-serif !important;
  font-style: normal;
  font-weight: 500;
}

/* Keep the amount 3px larger, but return the word Total to its 22px scale. */
body.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
body.woocommerce-cart .cart_totals .order-total th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total th {
  font-size: 22px !important;
  font-weight: 700 !important;
}

/* Only dimensions are shared with Shop Now; the notice button keeps its
 * existing WooCommerce color, border and placement. */
.woocommerce .woocommerce-message > a.button.wc-forward,
.woocommerce .woocommerce-notices-wrapper .woocommerce-message > a.button.wc-forward {
  display: inline-flex;
  width: max-content;
  min-width: 5.75rem;
  min-height: 2.25rem;
  padding: 0.62rem 0.95rem;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-size: 0.6rem;
  line-height: 1;
  white-space: nowrap;
}

/* WooPayments and WooCommerce Blocks compatibility (1.5.22).
 * Keep Cart express wallets available and keep WooCommerce's single submit
 * container in normal flow even while core applies its mobile sticky class.
 * Its geometry therefore stays constant instead of resizing or snapping. */

body.woocommerce-cart .wc-block-cart__submit,
body.woocommerce-cart .wc-block-cart__submit-container {
  position: static !important;
  inset: auto !important;
  width: 100% !important;
  transform: none !important;
}

body.woocommerce-cart .wc-block-cart__submit-button,
body.woocommerce-cart .wc-block-cart__submit-button .wc-block-components-button__text {
  border-bottom: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

body.woocommerce-cart .wc-block-cart__submit-button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 44px !important;
  height: 44px !important;
  transform: none !important;
  transition: none !important;
}

body.woocommerce-cart .wc-block-cart__submit::before,
body.woocommerce-cart .wc-block-cart__submit::after,
body.woocommerce-cart .wc-block-cart__submit-container::before,
body.woocommerce-cart .wc-block-cart__submit-container::after {
  display: none !important;
  content: none !important;
}

/* WooPayments can append a currency code to the Cart footer. JavaScript
 * removes the exact trailing USD token; this rule keeps the remaining label
 * three pixels smaller without reducing the payable amount. */
body.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
body.woocommerce-cart .cart_totals .order-total th {
  font-size: 19px !important;
}

/* Start Checkout with the order details open, but keep only the chevron in
 * the compact summary trigger. The amount remains visible inside the opened
 * order summary itself. */
body.woocommerce-checkout .wc-block-components-checkout-order-summary__title-price {
  display: none !important;
}

/* Let the express frame follow the real number of wallets. WooPay is moved
 * to the final row by the scoped, idempotent checkout helper in theme.js. */
body.woocommerce-checkout [data-block-name="woocommerce/checkout-express-payment-block"],
body.woocommerce-checkout .wc-block-components-express-payment--checkout,
body.woocommerce-checkout .wc-block-components-express-payment__content,
body.woocommerce-checkout .wc-block-components-express-payment__event-buttons {
  height: auto !important;
  min-height: 0 !important;
}

body.woocommerce-checkout .wc-block-components-express-payment__content {
  align-content: start !important;
  padding: 0.75rem 1rem 1rem !important;
}

body.woocommerce-checkout .wc-block-components-express-payment__event-buttons {
  align-content: start !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

body.woocommerce-checkout #express-payment-method-woocommerce_payments_woopay_express_checkout {
  order: 99 !important;
}

/* WooCommerce hides gateway artwork at narrow container widths. Restore the
 * plugin-provided icons on mobile without creating or faking a payment logo. */
@media (max-width: 32.5rem) {
  body.woocommerce-checkout .wc-block-components-payment-method-label--with-icon > img,
  body.woocommerce-checkout .wc-block-components-payment-method-label--with-icon > svg,
  body.woocommerce-checkout #payment-method img.wcpay-payment-method-icon,
  body.woocommerce-checkout .wc-block-components-payment-method-icons,
  body.woocommerce-checkout .wc-block-components-payment-method-icon {
    opacity: 1 !important;
    visibility: visible !important;
  }

  body.woocommerce-checkout .wc-block-components-payment-method-label--with-icon > img,
  body.woocommerce-checkout .wc-block-components-payment-method-label--with-icon > svg,
  body.woocommerce-checkout #payment-method img.wcpay-payment-method-icon {
    display: block !important;
    width: auto !important;
    height: 1.5rem !important;
    max-width: 3.75rem;
    max-height: 1.5rem;
    object-fit: contain;
    flex: 0 0 auto;
  }

  body.woocommerce-checkout .wc-block-components-payment-method-label--with-icon {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }

  body.woocommerce-checkout .wc-block-components-payment-method-icons {
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.3rem;
  }

  body.woocommerce-checkout .wc-block-components-payment-method-icon {
    display: inline-block !important;
    width: auto !important;
    max-height: 1.5rem;
  }
}

/* A lightweight, local trust strip sits directly below the footer divider
 * and above the copyright. No payment scripts or remote artwork are loaded. */
.my-themes-footer-payments {
  border-top: 1px solid var(--my-themes-line);
  padding-block: 0.9rem 0.65rem;
}

.my-themes-footer-payments ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.my-themes-footer-payments li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.55rem;
  min-height: 1.55rem;
}

.my-themes-footer-payments img {
  display: block;
  width: auto;
  max-width: 3rem;
  height: 1.35rem;
  object-fit: contain;
}

.my-themes-footer-bottom {
  border-top: 0;
}

/* WooPayments express-flow refinements (1.5.23).
 * Keep every eligible wallet available, remove only a genuinely empty PPCP
 * placeholder, and give each real wallet one consistent twelve-pixel gap. */
body.woocommerce-cart .wc-block-cart__payment-options,
body.woocommerce-cart .wc-block-components-express-payment--cart,
body.woocommerce-cart .wc-block-components-express-payment--cart .wc-block-components-express-payment__content,
body.woocommerce-cart .wc-block-components-express-payment--cart .wc-block-components-express-payment__event-buttons,
body.woocommerce-checkout .wc-block-components-express-payment--checkout,
body.woocommerce-checkout .wc-block-components-express-payment--checkout .wc-block-components-express-payment__content,
body.woocommerce-checkout .wc-block-components-express-payment--checkout .wc-block-components-express-payment__event-buttons {
  height: auto !important;
  min-height: 0 !important;
}

body.woocommerce-cart .wc-block-components-express-payment--cart .wc-block-components-express-payment__content,
body.woocommerce-cart .wc-block-components-express-payment--cart .wc-block-components-express-payment__event-buttons,
body.woocommerce-checkout .wc-block-components-express-payment--checkout .wc-block-components-express-payment__event-buttons {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

body.woocommerce-cart .wc-block-components-express-payment--cart .wc-block-components-express-payment__event-buttons,
body.woocommerce-checkout .wc-block-components-express-payment--checkout .wc-block-components-express-payment__event-buttons {
  align-content: start !important;
  gap: 0.75rem !important;
  row-gap: 0.75rem !important;
}

body.woocommerce-cart .wc-block-components-express-payment__event-buttons > li,
body.woocommerce-cart .wc-block-components-express-payment__event-buttons > div,
body.woocommerce-checkout .wc-block-components-express-payment__event-buttons > li,
body.woocommerce-checkout .wc-block-components-express-payment__event-buttons > div {
  margin: 0 !important;
}

body.woocommerce-cart .wc-block-components-express-payment__event-buttons > .my-themes-express-placeholder-empty[hidden],
body.woocommerce-checkout .wc-block-components-express-payment__event-buttons > .my-themes-express-placeholder-empty[hidden] {
  display: none !important;
}

body.woocommerce-cart #express-payment-method-woocommerce_payments_woopay_express_checkout,
body.woocommerce-cart .wc-block-components-express-payment__event-buttons > [id*="woopay" i],
body.woocommerce-checkout #express-payment-method-woocommerce_payments_woopay_express_checkout,
body.woocommerce-checkout .wc-block-components-express-payment__event-buttons > [id*="woopay" i] {
  order: 99 !important;
}

body.woocommerce-cart .wc-block-components-express-payment-continue-rule--cart {
  margin-block: 0.75rem !important;
}

body.woocommerce-cart .wp-block-woocommerce-proceed-to-checkout-block,
body.woocommerce-cart .wc-block-cart__submit,
body.woocommerce-cart .wc-block-cart__submit-container {
  margin-top: 0 !important;
}

/* Long wallet wordmarks need a little more room than card-network marks. */
.my-themes-footer-payments img {
  max-width: 4.75rem;
}

/* WooPayments stability fixes (1.5.24).
 * Remove only the empty PayPal Google Pay mount, anchor the Card logo popover
 * to its own row, and supply the local PayPal mark only when the gateway has
 * not rendered one itself. */
body.woocommerce-cart #express-payment-method-ppcp-googlepay:has(> #ppc-button-googlepay-container:empty),
body.woocommerce-checkout #express-payment-method-ppcp-googlepay:has(> #ppc-button-googlepay-container:empty),
body.woocommerce-cart #express-payment-method-ppcp-googlepay.my-themes-express-placeholder-empty,
body.woocommerce-checkout #express-payment-method-ppcp-googlepay.my-themes-express-placeholder-empty {
  display: none !important;
}

body.woocommerce-checkout .wc-block-components-payment-method-label--with-icon {
  position: relative;
}

body.woocommerce-checkout
  .wc-block-components-payment-method-label--with-icon
  > #payment-methods-popover.payment-methods--logos-popover {
  position: absolute !important;
  inset: auto 0 calc(100% + 8px) auto !important;
}

body.woocommerce-checkout
  label[for$="-ppcp-gateway"]
  .wc-block-components-payment-method-icons:empty {
  display: flex !important;
  width: 2rem !important;
  height: 1.5rem !important;
  flex: 0 0 2rem !important;
  margin-inline-start: auto !important;
  background: url("../images/payment-methods/paypal.svg") center / contain no-repeat !important;
}

/* Express payment gap fix (1.5.25).
 * Hide any empty express payment placeholder (not just Google Pay) so the
 * container's gap property produces one uniform gap between visible wallets. */
body.woocommerce-cart .wc-block-components-express-payment__event-buttons > .my-themes-express-placeholder-empty[hidden],
body.woocommerce-checkout .wc-block-components-express-payment__event-buttons > .my-themes-express-placeholder-empty[hidden] {
  display: none !important;
}

body.woocommerce-cart .wc-block-components-express-payment__event-buttons > [id^="express-payment-method-"]:has(> :empty),
body.woocommerce-checkout .wc-block-components-express-payment__event-buttons > [id^="express-payment-method-"]:has(> :empty) {
  display: none !important;
}
