:root {
  --wsh-primary: #6d5dfc;
  --wsh-primary-dark: #5140e6;
  --wsh-primary-soft: #eeeaff;
  --wsh-accent: #24c8b0;
  --wsh-accent-soft: #dbf9f4;
  --wsh-ink: #111827;
  --wsh-ink-soft: #25304a;
  --wsh-muted: #667085;
  --wsh-line: #e7e9f2;
  --wsh-canvas: #f7f8fc;
  --wsh-surface: #ffffff;
  --wsh-dark: #101528;
  --wsh-dark-soft: #181e34;
  --wsh-radius-sm: 12px;
  --wsh-radius: 20px;
  --wsh-radius-lg: 30px;
  --wsh-shadow: 0 22px 70px rgba(37, 44, 73, .1);
  --wsh-container: 1240px;
  --wsh-content: 760px;
  --wsh-body-font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wsh-heading-font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wsh-logo-height: 50px;
  --wsh-product-radius: 20px;
  --wsh-shop-columns: 3;
  --wsh-gutter: clamp(18px, 4vw, 34px);
}

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

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

body {
  margin: 0;
  color: var(--wsh-ink);
  background: var(--wsh-surface);
  font-family: var(--wsh-body-font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .wsh-site-header {
  top: 32px;
}

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

a {
  color: var(--wsh-primary);
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--wsh-ink);
  font-family: var(--wsh-heading-font);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: -.035em;
}

p {
  margin-top: 0;
}

.wsh-container {
  width: min(100% - (var(--wsh-gutter) * 2), var(--wsh-container));
  margin-inline: auto;
}

.wsh-narrow {
  max-width: var(--wsh-content);
}

.wsh-skip-link {
  position: fixed;
  z-index: 99999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--wsh-dark);
  transform: translateY(-160%);
}

.wsh-skip-link:focus {
  transform: translateY(0);
}

.wsh-button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  min-height: 52px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--wsh-radius-sm);
  color: #fff !important;
  background: linear-gradient(135deg, var(--wsh-primary), var(--wsh-primary-dark)) !important;
  box-shadow: 0 14px 30px color-mix(in srgb, var(--wsh-primary) 26%, transparent);
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.wsh-button:hover,
.wsh-button:focus-visible,
.wp-element-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  color: #fff;
  filter: brightness(1.04);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px color-mix(in srgb, var(--wsh-primary) 34%, transparent);
}

.wsh-button-small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 12px;
}

.wsh-button-light {
  color: var(--wsh-dark) !important;
  background: #fff !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .14);
}

.wsh-button-light:hover,
.wsh-button-light:focus-visible {
  color: var(--wsh-dark);
}

.wsh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--wsh-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.wsh-eyebrow i {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--wsh-accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--wsh-accent) 15%, transparent);
}

/* Header */

.wsh-site-header {
  position: sticky;
  z-index: 999;
  top: 0;
  border-bottom: 1px solid rgba(231, 233, 242, .8);
  background: rgba(255, 255, 255, .86);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.wsh-header-inner {
  min-height: 80px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
}

.wsh-site-brand {
  min-width: 180px;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo {
  width: auto;
  max-height: var(--wsh-logo-height);
}

.wsh-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--wsh-ink);
}

.wsh-wordmark:hover {
  color: var(--wsh-ink);
}

.wsh-wordmark-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #8c80ff, var(--wsh-primary-dark));
  box-shadow: 0 11px 24px color-mix(in srgb, var(--wsh-primary) 30%, transparent);
  font-size: 20px;
  font-weight: 850;
}

.wsh-wordmark strong,
.wsh-wordmark small {
  display: block;
}

.wsh-wordmark strong {
  font-size: 18px;
  line-height: 1.15;
}

.wsh-wordmark small {
  max-width: 190px;
  margin-top: 2px;
  overflow: hidden;
  color: var(--wsh-muted);
  font-size: 10px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wsh-primary-nav {
  justify-self: center;
}

.wsh-menu,
.wsh-primary-nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.wsh-menu li {
  position: relative;
}

.wsh-menu a {
  padding: 10px 12px;
  display: block;
  border-radius: 9px;
  color: #47516a;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
  transition: color .2s ease, background .2s ease;
}

.wsh-menu a:hover,
.wsh-menu a:focus-visible,
.wsh-menu .current-menu-item > a:not([href*="#"]),
.wsh-menu .current_page_item > a:not([href*="#"]) {
  color: var(--wsh-primary);
  background: var(--wsh-primary-soft);
}

.wsh-menu .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 210px;
  padding: 10px;
  display: block;
  border: 1px solid var(--wsh-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--wsh-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}

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

.wsh-header-cta {
  justify-self: end;
}

.wsh-nav-toggle {
  width: 44px;
  height: 44px;
  padding: 11px;
  display: none;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--wsh-line);
  border-radius: 12px;
  color: var(--wsh-ink);
  background: #fff;
  cursor: pointer;
}

.wsh-nav-toggle span {
  width: 19px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition: .2s ease;
}

.wsh-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.wsh-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.wsh-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */

.wsh-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 9vw, 132px) 0 clamp(72px, 8vw, 116px);
  isolation: isolate;
  background:
    radial-gradient(circle at 8% 12%, rgba(109, 93, 252, .1), transparent 25%),
    radial-gradient(circle at 92% 5%, rgba(36, 200, 176, .11), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f8f8fe 100%);
}

.wsh-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(86, 76, 190, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 76, 190, .08) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 85%);
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.wsh-hero-glow {
  position: absolute;
  z-index: -1;
  top: 5%;
  right: 8%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(109, 93, 252, .13);
  filter: blur(80px);
}

.wsh-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(480px, 1.07fr);
  align-items: center;
  gap: clamp(50px, 7vw, 98px);
}

.wsh-hero-copy h1 {
  max-width: 720px;
  margin: 18px 0 22px;
  font-size: clamp(46px, 6vw, 80px);
  line-height: .99;
  letter-spacing: -.065em;
}

.wsh-hero-copy h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, var(--wsh-primary-dark), #8b77ff 60%, #5f9fe8);
  -webkit-background-clip: text;
  background-clip: text;
}

.wsh-hero-copy > p {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--wsh-muted);
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.7;
}

.wsh-hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.wsh-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--wsh-ink);
  font-size: 13px;
  font-weight: 750;
}

.wsh-play {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 1px solid var(--wsh-line);
  border-radius: 50%;
  color: var(--wsh-primary);
  background: #fff;
  box-shadow: 0 8px 20px rgba(31, 37, 61, .08);
}

.wsh-hero-checks {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  list-style: none;
}

.wsh-hero-checks li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #636c82;
  font-size: 11px;
  font-weight: 650;
}

.wsh-hero-checks span {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #138a76;
  background: var(--wsh-accent-soft);
  font-size: 10px;
  font-weight: 900;
}

.wsh-hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.wsh-orbit {
  position: absolute;
  border: 1px solid rgba(109, 93, 252, .14);
  border-radius: 50%;
}

.wsh-orbit::before,
.wsh-orbit::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--wsh-primary);
  box-shadow: 0 0 0 6px rgba(109, 93, 252, .09);
}

.wsh-orbit-one {
  width: 500px;
  height: 500px;
}

.wsh-orbit-one::before {
  top: 65px;
  left: 50px;
}

.wsh-orbit-one::after {
  right: 7px;
  bottom: 130px;
  background: var(--wsh-accent);
  box-shadow: 0 0 0 6px rgba(36, 200, 176, .1);
}

.wsh-orbit-two {
  width: 380px;
  height: 380px;
}

.wsh-orbit-two::before {
  right: 40px;
  top: 17px;
  width: 7px;
  height: 7px;
}

.wsh-orbit-two::after {
  left: 15px;
  bottom: 55px;
  width: 7px;
  height: 7px;
}

.wsh-dashboard-card {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 28px;
  background: rgba(255, 255, 255, .88);
  box-shadow:
    0 40px 90px rgba(43, 40, 105, .17),
    inset 0 0 0 1px rgba(255, 255, 255, .45);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transform: perspective(1100px) rotateY(-6deg) rotateX(2deg);
}

.wsh-dashboard-bar {
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid var(--wsh-line);
}

.wsh-mini-logo {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #887aff, var(--wsh-primary-dark));
  font-weight: 850;
}

.wsh-dashboard-bar strong,
.wsh-dashboard-bar small {
  display: block;
}

.wsh-dashboard-bar strong {
  font-size: 12px;
}

.wsh-dashboard-bar small {
  color: var(--wsh-muted);
  font-size: 9px;
}

.wsh-dashboard-bar i {
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--wsh-accent);
  box-shadow: 0 0 0 5px var(--wsh-accent-soft);
}

.wsh-dashboard-stats {
  margin: 18px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.wsh-dashboard-stats > div {
  position: relative;
  min-width: 0;
  padding: 15px;
  border: 1px solid var(--wsh-line);
  border-radius: 15px;
  background: #fafaff;
}

.wsh-dashboard-stats small,
.wsh-dashboard-stats strong {
  display: block;
}

.wsh-dashboard-stats small {
  color: var(--wsh-muted);
  font-size: 8px;
}

.wsh-dashboard-stats strong {
  margin-top: 2px;
  font-size: 20px;
  line-height: 1.1;
}

.wsh-dashboard-stats span {
  position: absolute;
  top: 11px;
  right: 11px;
  color: #16a085;
  font-size: 10px;
}

.wsh-dashboard-list > div {
  min-height: 57px;
  padding: 10px 2px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--wsh-line);
}

.wsh-dashboard-list i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
}

.tone-purple {
  color: var(--wsh-primary-dark);
  background: var(--wsh-primary-soft);
}

.tone-cyan {
  color: #148b79;
  background: var(--wsh-accent-soft);
}

.tone-orange {
  color: #c77820;
  background: #fff1dc;
}

.wsh-dashboard-list strong,
.wsh-dashboard-list small {
  display: block;
}

.wsh-dashboard-list strong {
  font-size: 10px;
}

.wsh-dashboard-list small {
  color: var(--wsh-muted);
  font-size: 8px;
}

.wsh-dashboard-list em {
  padding: 3px 7px;
  border-radius: 999px;
  color: #168b74;
  background: var(--wsh-accent-soft);
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.wsh-floating-card {
  position: absolute;
  z-index: 4;
  min-width: 210px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 15px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 22px 45px rgba(34, 39, 72, .15);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.wsh-floating-card > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #138a76;
  background: var(--wsh-accent-soft);
  font-size: 12px;
  font-weight: 850;
}

.wsh-floating-card strong,
.wsh-floating-card small {
  display: block;
}

.wsh-floating-card strong {
  font-size: 10px;
}

.wsh-floating-card small {
  color: var(--wsh-muted);
  font-size: 8px;
}

.wsh-floating-card.is-license {
  top: 32px;
  right: -28px;
}

.wsh-floating-card.is-update {
  bottom: 28px;
  left: -34px;
}

.wsh-floating-card.is-update > span {
  color: var(--wsh-primary-dark);
  background: var(--wsh-primary-soft);
}

/* Trust, sections, feature cards */

.wsh-trust-strip {
  border-block: 1px solid var(--wsh-line);
  background: #fff;
}

.wsh-trust-strip .wsh-container {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.wsh-trust-strip p {
  margin: 0;
  color: var(--wsh-muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.wsh-trust-strip .wsh-container > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 34px;
}

.wsh-trust-strip span {
  color: #727b90;
  font-size: 13px;
  font-weight: 750;
}

.wsh-section {
  padding: clamp(82px, 10vw, 140px) 0;
}

.wsh-section-head {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: end;
  gap: 50px;
}

.wsh-section-head h2 {
  max-width: 690px;
  margin: 12px 0 0;
  font-size: clamp(36px, 4.5vw, 58px);
}

.wsh-section-head > p {
  margin: 0 0 5px;
  color: var(--wsh-muted);
  font-size: 16px;
}

.wsh-section-head.is-centered {
  max-width: 760px;
  margin-inline: auto;
  display: block;
  text-align: center;
}

.wsh-section-head.is-centered h2 {
  margin-inline: auto;
}

.wsh-section-head.is-centered > p {
  max-width: 620px;
  margin: 16px auto 0;
}

.wsh-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.wsh-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding: 32px;
  border: 1px solid var(--wsh-line);
  border-radius: var(--wsh-radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(109, 93, 252, .08), transparent 34%),
    #fff;
  box-shadow: 0 12px 40px rgba(33, 40, 69, .055);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.wsh-feature-card:hover {
  border-color: color-mix(in srgb, var(--wsh-primary) 28%, var(--wsh-line));
  transform: translateY(-7px);
  box-shadow: var(--wsh-shadow);
}

.wsh-feature-card::after {
  content: "";
  position: absolute;
  right: -25px;
  bottom: -35px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(109, 93, 252, .12);
  border-radius: 50%;
}

.wsh-feature-card > small {
  position: absolute;
  top: 32px;
  right: 32px;
  color: #a1a7b6;
  font-size: 10px;
  font-weight: 800;
}

.wsh-feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--wsh-primary);
  background: var(--wsh-primary-soft);
  font-size: 20px;
  font-weight: 850;
}

.wsh-feature-card h3 {
  margin: 54px 0 12px;
  font-size: 24px;
}

.wsh-feature-card p {
  color: var(--wsh-muted);
  font-size: 14px;
}

.wsh-feature-card > a {
  position: absolute;
  z-index: 2;
  left: 32px;
  bottom: 28px;
  color: var(--wsh-ink);
  font-size: 12px;
  font-weight: 750;
}

.wsh-feature-card > a span {
  margin-left: 5px;
  color: var(--wsh-primary);
}

.wsh-feature-card.is-primary {
  border-color: transparent;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, .16), transparent 35%),
    linear-gradient(145deg, var(--wsh-primary-dark), #7667f5);
  box-shadow: 0 26px 55px color-mix(in srgb, var(--wsh-primary) 28%, transparent);
}

.wsh-feature-card.is-primary h3,
.wsh-feature-card.is-primary > a {
  color: #fff;
}

.wsh-feature-card.is-primary p {
  color: rgba(255, 255, 255, .72);
}

.wsh-feature-card.is-primary .wsh-feature-icon {
  color: #fff;
  background: rgba(255, 255, 255, .15);
}

.wsh-feature-card.is-primary > small {
  color: rgba(255, 255, 255, .55);
}

.wsh-feature-card.is-primary > a span {
  color: #fff;
}

/* Process */

.wsh-section-dark {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, .75);
  background:
    radial-gradient(circle at 15% 0%, rgba(109, 93, 252, .24), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(36, 200, 176, .13), transparent 25%),
    var(--wsh-dark);
}

.wsh-section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 72px 72px;
}

.wsh-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(70px, 9vw, 130px);
}

.wsh-section-dark .wsh-eyebrow {
  color: #a99fff;
}

.wsh-section-dark h2 {
  margin: 16px 0 20px;
  color: #fff;
  font-size: clamp(38px, 4.6vw, 60px);
}

.wsh-section-dark p {
  color: rgba(255, 255, 255, .62);
}

.wsh-section-dark .wsh-button {
  margin-top: 18px;
}

.wsh-process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wsh-process-list li {
  position: relative;
  min-height: 132px;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.wsh-process-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.wsh-process-list li > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 13px;
  color: #bcb4ff;
  background: rgba(255, 255, 255, .045);
  font-size: 10px;
  font-weight: 850;
}

.wsh-process-list strong {
  display: block;
  color: #fff;
  font-size: 18px;
}

.wsh-process-list p {
  margin: 5px 0 0;
  font-size: 13px;
}

/* Products and WooCommerce */

.wsh-products-section {
  background: var(--wsh-canvas);
}

.wsh-product-placeholder {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.wsh-product-placeholder article {
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--wsh-line);
  border-radius: var(--wsh-radius);
  background: #fff;
}

.wsh-product-placeholder article > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(135deg, var(--wsh-primary), var(--wsh-primary-dark));
  font-size: 20px;
  font-weight: 850;
  box-shadow: 0 14px 28px color-mix(in srgb, var(--wsh-primary) 25%, transparent);
}

.wsh-product-placeholder h3 {
  margin: 62px 0 8px;
  font-size: 23px;
}

.wsh-product-placeholder p {
  color: var(--wsh-muted);
  font-size: 14px;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(var(--wsh-shop-columns), minmax(0, 1fr));
  gap: 22px;
}

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  padding: 18px 18px 22px;
  float: none;
  border: 1px solid var(--wsh-line);
  border-radius: var(--wsh-product-radius);
  background: #fff;
  box-shadow: 0 12px 40px rgba(33, 40, 69, .05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--wsh-shadow);
}

.woocommerce ul.products li.product a img {
  border-radius: 14px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--wsh-ink);
  font-size: 18px;
}

.woocommerce ul.products li.product .price {
  color: var(--wsh-primary-dark);
  font-size: 15px;
  font-weight: 800;
}

.woocommerce span.onsale {
  min-width: auto;
  min-height: auto;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--wsh-primary);
  font-size: 10px;
  line-height: 1;
}

.woocommerce .quantity .qty,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .select2-container .select2-selection--single {
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--wsh-line);
  border-radius: 10px;
  background: #fff;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--wsh-primary);
  border-radius: 12px;
  background: var(--wsh-primary-soft);
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--wsh-primary);
}

/* WooCommerce account */

body.logged-in.woocommerce-account .wsh-entry-content.wsh-narrow {
  max-width: 1120px;
  padding: 0;
  overflow: hidden;
}

body.logged-in.woocommerce-account .wsh-entry-content > .woocommerce {
  min-height: 460px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

body.logged-in.woocommerce-account .wsh-entry-content > .woocommerce::before,
body.logged-in.woocommerce-account .wsh-entry-content > .woocommerce::after {
  display: none;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation {
  width: auto;
  min-width: 0;
  float: none;
  background:
    radial-gradient(circle at 10% 0%, rgba(109, 93, 252, .28), transparent 34%),
    linear-gradient(155deg, var(--wsh-dark), var(--wsh-dark-soft));
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 28px 18px;
  list-style: none;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 4px 0;
}

body.logged-in.woocommerce-account .wsh-entry-content .woocommerce-MyAccount-navigation a {
  min-height: 48px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation a::after {
  content: "→";
  margin-left: auto;
  color: #aaa2ff;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .2s ease, transform .2s ease;
}

body.logged-in.woocommerce-account .wsh-entry-content .woocommerce-MyAccount-navigation a:hover,
body.logged-in.woocommerce-account .wsh-entry-content .woocommerce-MyAccount-navigation a:focus-visible,
body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
  border-color: rgba(255, 255, 255, .09);
  color: #fff;
  background: rgba(255, 255, 255, .085);
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation a:hover::after,
body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation a:focus-visible::after,
body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation .is-active a::after {
  opacity: 1;
  transform: translateX(0);
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-content {
  width: auto;
  min-width: 0;
  padding: clamp(30px, 5vw, 52px);
  float: none;
  background:
    radial-gradient(circle at 100% 0%, rgba(109, 93, 252, .07), transparent 34%),
    #fff;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-content > *:first-child {
  margin-top: 0;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-content > *:last-child {
  margin-bottom: 0;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-content p {
  color: var(--wsh-muted);
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-content strong {
  color: var(--wsh-ink);
}

body.logged-in.woocommerce-account .wsh-entry-content .woocommerce-MyAccount-content a:not(.button) {
  color: var(--wsh-primary-dark);
  font-weight: 700;
  text-decoration-color: color-mix(in srgb, var(--wsh-primary) 35%, transparent);
}

.woocommerce-account .woocommerce table.shop_table {
  overflow: hidden;
  border: 1px solid var(--wsh-line);
  border-radius: 14px;
  border-collapse: separate;
  background: #fff;
}

.woocommerce-account .woocommerce table.shop_table th,
.woocommerce-account .woocommerce table.shop_table td {
  padding: 15px 16px;
  border-color: var(--wsh-line);
}

.woocommerce-account .woocommerce table.shop_table th {
  color: var(--wsh-ink);
  background: var(--wsh-canvas);
  font-size: 12px;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.woocommerce-account .woocommerce-Addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.woocommerce-account .woocommerce-Addresses::before,
.woocommerce-account .woocommerce-Addresses::after {
  display: none;
}

.woocommerce-account .woocommerce-Address {
  width: auto;
  padding: 22px;
  float: none;
  border: 1px solid var(--wsh-line);
  border-radius: 14px;
  background: #fff;
}

.woocommerce-account .woocommerce-Address-title h2 {
  font-size: 20px;
}

.woocommerce-account .woocommerce-Address address {
  color: var(--wsh-muted);
  font-style: normal;
}

.woocommerce-account .woocommerce form .form-row label {
  margin-bottom: 7px;
  display: block;
  color: var(--wsh-ink-soft);
  font-size: 13px;
  font-weight: 750;
}

.woocommerce-account .woocommerce form .form-row {
  margin-bottom: 16px;
}

.woocommerce-account .woocommerce form fieldset {
  margin: 24px 0;
  padding: 22px;
  border: 1px solid var(--wsh-line);
  border-radius: 14px;
}

.woocommerce-account .woocommerce form fieldset legend {
  padding: 0 8px;
  color: var(--wsh-ink);
  font-weight: 800;
}

.woocommerce-account .woocommerce-password-strength {
  margin-top: 8px;
  border-radius: 8px;
}

.woocommerce-account #customer_login {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.woocommerce-account #customer_login::before,
.woocommerce-account #customer_login::after {
  display: none;
}

.woocommerce-account #customer_login .u-column1,
.woocommerce-account #customer_login .u-column2 {
  width: auto;
  padding: clamp(24px, 4vw, 36px);
  float: none;
  border: 1px solid var(--wsh-line);
  border-radius: 16px;
  background: #fff;
}

.woocommerce-account #customer_login h2 {
  margin-bottom: 20px;
  font-size: 27px;
}

.woocommerce-account #customer_login form.login,
.woocommerce-account #customer_login form.register {
  margin: 0;
  padding: 0;
  border: 0;
}

/* Standard content */

.wsh-content-area {
  min-height: 65vh;
  padding: clamp(70px, 8vw, 110px) 0;
  background: var(--wsh-canvas);
}

.wsh-page-hero {
  margin: calc(clamp(70px, 8vw, 110px) * -1) 0 65px;
  padding: clamp(80px, 9vw, 125px) 0;
  text-align: center;
  background:
    radial-gradient(circle at 20% 0%, rgba(109, 93, 252, .12), transparent 25%),
    radial-gradient(circle at 80% 0%, rgba(36, 200, 176, .1), transparent 22%),
    #fff;
}

.wsh-page-hero h1,
.wsh-archive-header h1 {
  margin: 14px 0 0;
  font-size: clamp(40px, 6vw, 70px);
}

.wsh-entry-content {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--wsh-line);
  border-radius: var(--wsh-radius);
  background: #fff;
  box-shadow: 0 12px 40px rgba(33, 40, 69, .045);
}

.wsh-entry-content > *:first-child {
  margin-top: 0;
}

.wsh-entry-content > *:last-child {
  margin-bottom: 0;
}

.wsh-entry-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wsh-entry-content blockquote {
  margin-inline: 0;
  padding: 20px 24px;
  border-left: 4px solid var(--wsh-primary);
  border-radius: 0 12px 12px 0;
  background: var(--wsh-primary-soft);
}

.wsh-featured-image {
  margin: -110px auto 55px;
  position: relative;
}

.wsh-featured-image img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: var(--wsh-radius);
  box-shadow: var(--wsh-shadow);
}

.wsh-entry-meta {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: var(--wsh-muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.wsh-archive-header {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.wsh-archive-description {
  color: var(--wsh-muted);
}

.wsh-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.wsh-post-card {
  overflow: hidden;
  border: 1px solid var(--wsh-line);
  border-radius: var(--wsh-radius);
  background: #fff;
  box-shadow: 0 12px 38px rgba(33, 40, 69, .05);
}

.wsh-post-card-media {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .2), transparent 22%),
    linear-gradient(135deg, var(--wsh-primary-dark), #8b79ff);
}

.wsh-post-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.wsh-post-card:hover .wsh-post-card-media img {
  transform: scale(1.04);
}

.wsh-post-card-media > span {
  font-size: 52px;
  font-weight: 850;
}

.wsh-post-card-body {
  padding: 24px;
}

.wsh-post-card .wsh-entry-meta {
  justify-content: flex-start;
}

.wsh-post-card h2 {
  margin: 12px 0 8px;
  font-size: 22px;
}

.wsh-post-card h2 a {
  color: var(--wsh-ink);
}

.wsh-post-card p {
  color: var(--wsh-muted);
  font-size: 13px;
}

.wsh-card-link {
  color: var(--wsh-ink);
  font-size: 12px;
  font-weight: 750;
}

.wsh-card-link span {
  color: var(--wsh-primary);
}

.navigation.pagination {
  margin-top: 45px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.page-numbers {
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  display: grid;
  place-items: center;
  border: 1px solid var(--wsh-line);
  border-radius: 10px;
  color: var(--wsh-ink);
  background: #fff;
}

.page-numbers.current {
  color: #fff;
  border-color: var(--wsh-primary);
  background: var(--wsh-primary);
}

.wsh-empty-state,
.wsh-error-page {
  max-width: 740px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 80px);
  border: 1px solid var(--wsh-line);
  border-radius: var(--wsh-radius-lg);
  background: #fff;
  box-shadow: var(--wsh-shadow);
  text-align: center;
}

.wsh-error-page > span {
  display: block;
  color: var(--wsh-primary);
  font-size: clamp(70px, 11vw, 130px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -.08em;
}

.wsh-error-page h1 {
  margin: 20px 0 12px;
  font-size: clamp(30px, 4vw, 48px);
}

.wsh-error-page p,
.wsh-empty-state p {
  color: var(--wsh-muted);
}

.wsh-comments {
  width: min(100% - (var(--wsh-gutter) * 2), 840px);
  margin: 55px auto 0;
  padding: 35px;
  border: 1px solid var(--wsh-line);
  border-radius: var(--wsh-radius);
  background: #fff;
}

.comment-list {
  padding-left: 22px;
}

.wsh-page-builder-content:empty {
  display: none;
}

/* Footer */

.wsh-site-footer {
  position: relative;
  overflow: hidden;
  padding: 80px 0 25px;
  color: rgba(255, 255, 255, .64);
  background:
    radial-gradient(circle at 0% 100%, rgba(109, 93, 252, .22), transparent 28%),
    var(--wsh-dark);
}

.wsh-site-footer.is-brand {
  background:
    radial-gradient(circle at 0% 100%, rgba(36, 200, 176, .23), transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, .12), transparent 26%),
    linear-gradient(145deg, var(--wsh-primary-dark), var(--wsh-dark));
}

.wsh-site-header.is-dark {
  border-bottom-color: rgba(255, 255, 255, .08);
  background: color-mix(in srgb, var(--wsh-dark) 90%, transparent);
}

.wsh-site-header.is-dark .wsh-menu a {
  color: rgba(255, 255, 255, .66);
}

.wsh-site-header.is-dark .wsh-menu a:hover,
.wsh-site-header.is-dark .wsh-menu a:focus-visible,
.wsh-site-header.is-dark .wsh-menu .current-menu-item > a:not([href*="#"]),
.wsh-site-header.is-dark .wsh-menu .current_page_item > a:not([href*="#"]) {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.wsh-site-header.is-dark .wsh-nav-toggle {
  color: #fff;
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
}

.wsh-footer-cta {
  margin-bottom: 70px;
  padding: clamp(30px, 5vw, 50px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, .13), transparent 28%),
    linear-gradient(120deg, var(--wsh-primary-dark), #7564ee);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .2);
}

.wsh-footer-cta .wsh-eyebrow {
  color: rgba(255, 255, 255, .7);
}

.wsh-footer-cta h2 {
  max-width: 710px;
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(29px, 4vw, 45px);
}

.wsh-footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.55fr) repeat(3, 1fr);
  gap: 55px;
}

.wsh-wordmark.is-light {
  color: #fff;
}

.wsh-wordmark.is-light:hover {
  color: #fff;
}

.wsh-wordmark.is-light small {
  color: rgba(255, 255, 255, .48);
}

.wsh-footer-brand p {
  max-width: 360px;
  margin: 20px 0 0;
  font-size: 13px;
}

.wsh-footer-title {
  margin-bottom: 18px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0;
}

.wsh-footer-column ul,
.wsh-footer-widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wsh-footer-column li,
.wsh-footer-widget li {
  margin: 8px 0;
}

.wsh-footer-column a,
.wsh-footer-widget a {
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
}

.wsh-footer-column a:hover,
.wsh-footer-widget a:hover {
  color: #fff;
}

.wsh-footer-bottom {
  margin-top: 70px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.wsh-developer-credit {
  margin-left: 8px;
}

.wsh-developer-credit a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .28);
  text-underline-offset: 3px;
}

.wsh-footer-bottom p {
  margin: 0;
  font-size: 10px;
}

.wsh-footer-menu {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
  list-style: none;
}

.wsh-footer-menu a {
  color: rgba(255, 255, 255, .56);
  font-size: 10px;
}

/* Responsive */

@media (max-width: 1080px) {
  .wsh-header-inner {
    grid-template-columns: auto auto 1fr auto;
  }

  .wsh-nav-toggle {
    display: grid;
    justify-self: end;
  }

  .wsh-primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: var(--wsh-gutter);
    left: var(--wsh-gutter);
    padding: 14px;
    border: 1px solid var(--wsh-line);
    border-radius: 0 0 18px 18px;
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--wsh-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: .2s ease;
  }

  .wsh-site-header.is-dark .wsh-primary-nav {
    border-color: rgba(255, 255, 255, .1);
    background: color-mix(in srgb, var(--wsh-dark) 97%, transparent);
  }

  .wsh-primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .wsh-primary-nav .wsh-menu {
    display: block;
  }

  .wsh-primary-nav .wsh-menu a {
    padding: 12px;
  }

  .wsh-primary-nav .sub-menu {
    position: static;
    width: 100%;
    margin-left: 12px;
    padding-block: 0;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .wsh-hero-grid {
    grid-template-columns: 1fr;
  }

  .wsh-hero-copy {
    max-width: 780px;
    text-align: center;
    margin-inline: auto;
  }

  .wsh-hero-copy > p {
    margin-inline: auto;
  }

  .wsh-hero-actions,
  .wsh-hero-checks {
    justify-content: center;
  }

  .wsh-hero-visual {
    width: min(100%, 700px);
    margin-inline: auto;
  }

  .wsh-section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .wsh-feature-grid,
  .wsh-product-placeholder,
  .woocommerce ul.products,
  .wsh-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wsh-process-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .wsh-footer-grid {
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 32px;
  }
}

@media (max-width: 782px) {
  body.admin-bar .wsh-site-header {
    top: 46px;
  }

  .wsh-header-inner {
    min-height: 72px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
  }

  .wsh-site-brand {
    min-width: 0;
  }

  .wsh-header-cta {
    display: none;
  }

  .wsh-wordmark small {
    display: none;
  }

  .wsh-hero {
    padding-top: 72px;
  }

  .wsh-hero-copy h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .wsh-hero-visual {
    min-height: 460px;
    transform: scale(.93);
  }

  .wsh-floating-card.is-license {
    right: -8px;
  }

  .wsh-floating-card.is-update {
    left: -8px;
  }

  .wsh-trust-strip .wsh-container {
    padding-block: 27px;
    display: block;
    text-align: center;
  }

  .wsh-trust-strip .wsh-container > div {
    margin-top: 18px;
    justify-content: center;
  }

  .wsh-feature-grid,
  .wsh-product-placeholder,
  .woocommerce ul.products,
  .wsh-post-grid {
    grid-template-columns: 1fr;
  }

  .wsh-feature-card {
    min-height: 310px;
  }

  .wsh-footer-cta {
    display: block;
    text-align: center;
  }

  .wsh-footer-cta .wsh-button {
    margin-top: 24px;
  }

  .wsh-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wsh-footer-brand {
    grid-column: 1 / -1;
  }

  body.logged-in.woocommerce-account .wsh-entry-content > .woocommerce {
    grid-template-columns: minmax(0, 1fr);
  }

  body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul {
    padding: 12px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin: 0;
    flex: 0 0 auto;
  }

  body.logged-in.woocommerce-account .wsh-entry-content .woocommerce-MyAccount-navigation a {
    min-height: 42px;
    padding: 9px 12px;
    white-space: nowrap;
  }

  body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation a::after {
    display: none;
  }

  body.logged-in.woocommerce-account .woocommerce-MyAccount-content {
    padding: 30px 24px;
  }

  .woocommerce-account .woocommerce-Addresses,
  .woocommerce-account #customer_login {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .wsh-header-inner {
    gap: 7px;
  }

  .wsh-wordmark-icon {
    width: 38px;
    height: 38px;
  }

  .wsh-wordmark strong {
    font-size: 16px;
  }

  .wsh-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .wsh-text-link {
    justify-content: center;
  }

  .wsh-hero-checks {
    gap: 11px;
  }

  .wsh-hero-visual {
    min-height: 390px;
    margin-block: -20px;
    transform: scale(.84);
  }

  .wsh-dashboard-card {
    padding: 16px;
    transform: none;
  }

  .wsh-orbit-one {
    width: 410px;
    height: 410px;
  }

  .wsh-orbit-two {
    width: 310px;
    height: 310px;
  }

  .wsh-floating-card {
    min-width: 180px;
  }

  .wsh-floating-card.is-license {
    top: 5px;
    right: -22px;
  }

  .wsh-floating-card.is-update {
    bottom: 2px;
    left: -22px;
  }

  .wsh-section-head h2,
  .wsh-section-dark h2 {
    font-size: 36px;
  }

  .wsh-process-list li {
    padding-inline: 0;
  }

  .wsh-footer-grid {
    grid-template-columns: 1fr;
  }

  .wsh-footer-brand {
    grid-column: auto;
  }

  body.logged-in.woocommerce-account .wsh-entry-content.wsh-narrow {
    border-radius: 16px;
  }

  body.logged-in.woocommerce-account .woocommerce-MyAccount-content {
    padding: 24px 18px;
  }

  .woocommerce-account .woocommerce table.shop_table {
    border-radius: 11px;
  }

  .wsh-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ==========================================================
   v0.4 compact frontend rhythm
========================================================== */

body {
  line-height: 1.62;
}

.wsh-button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  min-height: 46px;
  padding: 11px 18px;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--wsh-primary) 22%, transparent);
}

.wsh-button-small {
  min-height: 40px;
  padding: 9px 14px;
}

.wsh-header-inner {
  min-height: 68px;
  gap: 22px;
}

.wsh-site-brand {
  min-width: 160px;
}

.wsh-wordmark-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  font-size: 18px;
}

.wsh-wordmark strong {
  font-size: 17px;
}

.wsh-menu a {
  padding: 8px 11px;
}

.wsh-header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wsh-hero {
  padding: clamp(62px, 6.4vw, 88px) 0 clamp(56px, 6vw, 82px);
}

.wsh-hero-grid {
  gap: clamp(42px, 5vw, 72px);
}

.wsh-hero-copy h1 {
  margin: 14px 0 18px;
  font-size: clamp(44px, 5.5vw, 70px);
}

.wsh-hero-copy > p {
  margin-bottom: 24px;
  line-height: 1.62;
}

.wsh-hero-checks {
  margin-top: 22px;
}

.wsh-hero-visual {
  min-height: 450px;
}

.wsh-orbit-one {
  width: 450px;
  height: 450px;
}

.wsh-orbit-two {
  width: 345px;
  height: 345px;
}

.wsh-dashboard-card {
  width: min(100%, 490px);
  padding: 19px;
}

.wsh-trust-strip .wsh-container {
  min-height: 84px;
}

.wsh-section {
  padding: clamp(62px, 6.6vw, 88px) 0;
}

.wsh-section-head {
  margin-bottom: 32px;
  gap: 34px;
}

.wsh-section-head h2 {
  margin-top: 9px;
  font-size: clamp(34px, 4vw, 52px);
}

.wsh-section-head.is-centered > p {
  margin-top: 12px;
}

.wsh-feature-card {
  min-height: 285px;
  padding: 26px;
}

.wsh-feature-card > small {
  top: 26px;
  right: 26px;
}

.wsh-feature-card h3 {
  margin: 40px 0 10px;
}

.wsh-feature-card > a {
  left: 26px;
  bottom: 23px;
}

.wsh-process-grid {
  gap: clamp(54px, 7vw, 94px);
}

.wsh-section-dark h2 {
  margin: 12px 0 16px;
  font-size: clamp(36px, 4.2vw, 54px);
}

.wsh-process-list li {
  min-height: 106px;
  padding: 20px 22px;
}

.wsh-product-placeholder article {
  min-height: 235px;
  padding: 25px;
}

.wsh-product-placeholder h3 {
  margin-top: 45px;
}

.wsh-content-area {
  padding: clamp(48px, 5.5vw, 72px) 0;
}

.wsh-page-hero {
  margin: calc(clamp(48px, 5.5vw, 72px) * -1) 0 36px;
  padding: clamp(52px, 6vw, 78px) 0;
}

.wsh-page-hero h1,
.wsh-archive-header h1 {
  margin-top: 10px;
  font-size: clamp(38px, 5vw, 60px);
}

.wsh-entry-content {
  padding: clamp(24px, 3.5vw, 40px);
}

.wsh-site-footer {
  padding: 54px 0 20px;
}

.wsh-footer-cta {
  margin-bottom: 42px;
  padding: clamp(26px, 3.5vw, 38px);
  border-radius: 22px;
}

.wsh-footer-cta h2 {
  font-size: clamp(27px, 3.4vw, 39px);
}

.wsh-footer-grid {
  gap: 36px;
}

.wsh-footer-brand p {
  margin-top: 14px;
}

.wsh-footer-title {
  margin-bottom: 14px;
}

.wsh-footer-column li,
.wsh-footer-widget li {
  margin: 6px 0;
}

.wsh-footer-bottom {
  margin-top: 40px;
  padding-top: 18px;
}

/* ==========================================================
   Header cart and off-canvas mini cart
========================================================== */

.wsh-cart-trigger {
  position: relative;
  min-height: 42px;
  padding: 5px 9px 5px 7px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--wsh-line);
  border-radius: 11px;
  color: var(--wsh-ink);
  background: #fff;
  box-shadow: 0 6px 18px rgba(31, 38, 67, .06);
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.wsh-cart-trigger:hover,
.wsh-cart-trigger:focus-visible,
.wsh-cart-trigger[aria-expanded="true"] {
  border-color: color-mix(in srgb, var(--wsh-primary) 32%, var(--wsh-line));
  box-shadow: 0 9px 22px rgba(31, 38, 67, .1);
  transform: translateY(-1px);
}

.wsh-cart-trigger-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 9px;
  color: var(--wsh-primary-dark);
  background: var(--wsh-primary-soft);
}

.wsh-cart-trigger-copy {
  min-width: 48px;
  text-align: left;
}

.wsh-cart-trigger-copy small,
.wsh-cart-trigger-copy strong {
  display: block;
}

.wsh-cart-trigger-copy small {
  color: var(--wsh-muted);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .06em;
  line-height: 1.1;
  text-transform: uppercase;
}

.wsh-cart-trigger-copy strong {
  margin-top: 2px;
  color: var(--wsh-ink);
  font-size: 11px;
  line-height: 1.1;
  white-space: nowrap;
}

.wsh-cart-trigger-count {
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--wsh-primary);
  font-size: 9px;
  font-weight: 800;
}

.wsh-site-header.is-dark .wsh-cart-trigger {
  border-color: rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .07);
}

.wsh-site-header.is-dark .wsh-cart-trigger-copy strong {
  color: #fff;
}

.wsh-site-header.is-dark .wsh-cart-trigger-copy small {
  color: rgba(255, 255, 255, .55);
}

.wsh-cart-drawer-overlay {
  position: fixed;
  z-index: 9997;
  inset: 0;
  padding: 0;
  border: 0;
  background: rgba(11, 16, 33, .55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: opacity .24s ease, visibility .24s ease;
}

.wsh-cart-drawer {
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100dvh;
  padding: 0;
  display: flex;
  flex-direction: column;
  color: var(--wsh-ink);
  background: #fff;
  box-shadow: -24px 0 70px rgba(13, 20, 42, .2);
  visibility: hidden;
  transform: translateX(102%);
  transition: transform .28s cubic-bezier(.22, .65, .32, 1), visibility .28s ease;
}

.wsh-cart-drawer.is-open {
  visibility: visible;
  transform: translateX(0);
}

body.wsh-cart-is-open {
  overflow: hidden;
}

body.wsh-cart-is-open .wsh-cart-drawer-overlay {
  opacity: 1;
  visibility: visible;
}

.wsh-cart-drawer-header {
  min-height: 78px;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--wsh-line);
}

.wsh-cart-drawer-header span {
  display: block;
  color: var(--wsh-primary);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.wsh-cart-drawer-header h2 {
  margin: 3px 0 0;
  font-size: 23px;
  letter-spacing: -.035em;
}

.wsh-cart-drawer-close {
  width: 39px;
  height: 39px;
  padding: 0;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--wsh-line);
  border-radius: 50%;
  color: var(--wsh-ink);
  background: var(--wsh-canvas);
  cursor: pointer;
}

.wsh-cart-drawer-close span {
  color: currentColor;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.wsh-cart-drawer-content {
  min-height: 0;
  padding: 18px 20px;
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.wsh-cart-drawer .woocommerce-mini-cart {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wsh-cart-drawer .woocommerce-mini-cart-item {
  position: relative;
  min-height: 80px;
  padding: 0 30px 15px 78px !important;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--wsh-line);
}

.wsh-cart-drawer .woocommerce-mini-cart-item > a:not(.remove) {
  display: block;
  color: var(--wsh-ink);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.wsh-cart-drawer .woocommerce-mini-cart-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 62px;
  height: 62px;
  margin: 0;
  border: 1px solid var(--wsh-line);
  border-radius: 10px;
  object-fit: cover;
}

.wsh-cart-drawer .woocommerce-mini-cart-item .remove {
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--wsh-muted) !important;
  background: var(--wsh-canvas);
  font-size: 17px;
  line-height: 1;
}

.wsh-cart-drawer .woocommerce-mini-cart-item .remove:hover {
  color: #fff !important;
  background: #d64545;
}

.wsh-cart-drawer .quantity {
  display: block;
  margin-top: 7px;
  color: var(--wsh-muted);
  font-size: 12px;
}

.wsh-cart-drawer .woocommerce-mini-cart__total {
  margin: 18px 0 12px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid var(--wsh-line);
  color: var(--wsh-muted);
  font-size: 13px;
}

.wsh-cart-drawer .woocommerce-mini-cart__total strong {
  color: var(--wsh-ink);
}

.wsh-cart-drawer .woocommerce-mini-cart__buttons {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 9px;
}

.wsh-cart-drawer .woocommerce-mini-cart__buttons .button {
  min-height: 46px;
  margin: 0 !important;
  padding: 11px 13px;
  font-size: 12px;
}

.wsh-cart-drawer .woocommerce-mini-cart__buttons .button:not(.checkout) {
  border-color: var(--wsh-line);
  color: var(--wsh-ink) !important;
  background: #fff !important;
  box-shadow: none;
}

.wsh-cart-drawer .woocommerce-mini-cart__empty-message {
  min-height: 270px;
  margin: 0;
  display: grid;
  place-items: center;
  color: var(--wsh-muted);
  text-align: center;
}

.wsh-cart-drawer-trust {
  padding: 14px 20px 18px;
  display: flex;
  justify-content: center;
  gap: 14px;
  border-top: 1px solid var(--wsh-line);
  color: var(--wsh-muted);
  background: var(--wsh-canvas);
  font-size: 9px;
  font-weight: 700;
}

.wsh-cart-drawer-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.wsh-cart-drawer-trust i {
  color: #15917d;
  font-style: normal;
}

/* ==========================================================
   Focused Shopify-style cart and checkout
========================================================== */

.wsh-site-header.is-checkout-flow .wsh-header-inner {
  grid-template-columns: auto 1fr;
}

.wsh-checkout-safe {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 9px;
}

.wsh-checkout-safe > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #147f6d;
  background: var(--wsh-accent-soft);
  font-size: 12px;
  font-weight: 850;
}

.wsh-checkout-safe strong,
.wsh-checkout-safe small {
  display: block;
}

.wsh-checkout-safe strong {
  color: var(--wsh-ink);
  font-size: 12px;
  line-height: 1.25;
}

.wsh-checkout-safe small {
  color: var(--wsh-muted);
  font-size: 9px;
  line-height: 1.25;
}

.woocommerce-cart .wsh-content-area,
.woocommerce-checkout .wsh-content-area {
  min-height: 62vh;
  padding: 0 0 48px;
}

.wsh-commerce-page .wsh-page-hero {
  margin: 0 0 28px;
  padding: 34px 0 28px;
  border-bottom: 1px solid var(--wsh-line);
  text-align: left;
}

.wsh-commerce-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.wsh-commerce-heading-row h1 {
  margin: 6px 0 7px;
  font-size: clamp(34px, 4vw, 49px);
}

.wsh-commerce-heading-row p {
  max-width: 600px;
  margin: 0;
  color: var(--wsh-muted);
  font-size: 14px;
}

.wsh-checkout-steps {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  list-style: none;
}

.wsh-checkout-steps li {
  position: relative;
  min-width: 86px;
  display: grid;
  justify-items: center;
  gap: 6px;
  color: #98a0b2;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.wsh-checkout-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14px;
  left: calc(50% + 18px);
  width: calc(100% - 36px);
  height: 1px;
  background: var(--wsh-line);
}

.wsh-checkout-steps span {
  position: relative;
  z-index: 2;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid var(--wsh-line);
  border-radius: 50%;
  color: #8991a2;
  background: #fff;
  font-size: 10px;
}

.wsh-checkout-steps .is-active,
.wsh-checkout-steps .is-complete {
  color: var(--wsh-ink);
}

.wsh-checkout-steps .is-active span {
  border-color: var(--wsh-primary);
  color: #fff;
  background: var(--wsh-primary);
  box-shadow: 0 0 0 5px var(--wsh-primary-soft);
}

.wsh-checkout-steps .is-complete span {
  border-color: var(--wsh-accent);
  color: #147f6d;
  background: var(--wsh-accent-soft);
}

.wsh-commerce-content {
  max-width: 1180px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.wsh-commerce-content a {
  text-decoration: none;
}

.wsh-commerce-content .wp-block-woocommerce-cart,
.wsh-commerce-content .wp-block-woocommerce-checkout {
  margin: 0;
}

/* WooCommerce Cart Block */

.wc-block-cart {
  gap: 0 !important;
}

.wc-block-cart .wc-block-cart__main {
  width: 66.666%;
  padding-right: 24px !important;
  flex: 0 0 66.666%;
}

.wc-block-cart .wc-block-cart__sidebar {
  width: 33.334%;
  padding-left: 0 !important;
  flex: 0 0 33.334%;
}

.wc-block-cart-items {
  overflow: hidden;
  border: 1px solid var(--wsh-line) !important;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(36, 43, 70, .055);
}

.wc-block-cart-items thead {
  background: var(--wsh-canvas);
}

.wc-block-cart-items th {
  padding: 12px 16px !important;
  color: var(--wsh-muted);
  font-size: 10px !important;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.wc-block-cart-items td {
  padding: 18px 16px !important;
  border-color: var(--wsh-line) !important;
}

.wc-block-cart-item__image img {
  border: 1px solid var(--wsh-line);
  border-radius: 11px;
}

.wc-block-cart-item__product .wc-block-components-product-name {
  color: var(--wsh-ink);
  font-size: 15px;
  font-weight: 750;
}

.wc-block-components-quantity-selector {
  min-height: 40px;
  border-color: var(--wsh-line) !important;
  border-radius: 9px !important;
}

.wc-block-cart__sidebar .wp-block-woocommerce-cart-order-summary-block,
.wc-block-cart__sidebar .wc-block-components-sidebar {
  overflow: hidden;
  border: 1px solid var(--wsh-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(36, 43, 70, .055);
}

.wc-block-cart__sidebar {
  position: sticky;
  top: 86px;
  align-self: flex-start;
}

.wc-block-components-totals-wrapper {
  padding: 15px 20px !important;
  border-color: var(--wsh-line) !important;
}

.wc-block-components-totals-item {
  font-size: 13px;
}

.wc-block-components-totals-footer-item {
  font-size: 17px;
}

.wc-block-cart__submit-container {
  padding: 0 20px 20px;
}

.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
  min-height: 52px;
  border: 0 !important;
  border-radius: var(--wsh-radius-sm) !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--wsh-primary), var(--wsh-primary-dark)) !important;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--wsh-primary) 25%, transparent);
  font-weight: 800;
}

.wp-block-woocommerce-empty-cart-block {
  max-width: 680px;
  min-height: 310px;
  margin: 0 auto;
  padding: 56px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--wsh-line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(109, 93, 252, .08), transparent 42%),
    #fff;
  box-shadow: 0 12px 38px rgba(36, 43, 70, .06);
  text-align: center;
}

.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title {
  margin: 0;
  color: var(--wsh-ink);
  font-size: clamp(25px, 4vw, 34px);
}

.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title.with-empty-cart-icon::before {
  width: 90px !important;
  height: 90px !important;
  margin: 0 auto 24px !important;
  background-size: contain;
  -webkit-mask-size: 90px !important;
  mask-size: 90px !important;
}

.wp-block-woocommerce-empty-cart-block > .wp-block-separator,
.wp-block-woocommerce-empty-cart-block > .wp-block-heading:not(.wc-block-cart__empty-cart__title),
.wp-block-woocommerce-empty-cart-block > .wp-block-woocommerce-product-new {
  display: none;
}

.wsh-empty-cart-action {
  margin-top: 5px;
}

/* WooCommerce Checkout Block */

.wc-block-checkout {
  gap: 0 !important;
}

.wc-block-checkout__main {
  width: 66.666%;
  padding-right: 28px !important;
  flex: 0 0 66.666%;
}

.wc-block-checkout__sidebar {
  width: 33.334%;
  padding-left: 0 !important;
  flex: 0 0 33.334%;
}

.wc-block-components-checkout-step {
  margin-bottom: 14px !important;
  padding: 22px !important;
  border: 1px solid var(--wsh-line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(36, 43, 70, .045);
}

.wc-block-components-checkout-step__heading {
  margin-bottom: 16px !important;
}

.wc-block-components-checkout-step__title {
  color: var(--wsh-ink);
  font-size: 19px !important;
  font-weight: 780 !important;
}

.wc-block-components-checkout-step__description {
  color: var(--wsh-muted);
  font-size: 12px;
}

.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input,
.wc-block-components-address-form select {
  min-height: 52px !important;
  border-color: #d9ddea !important;
  border-radius: 10px !important;
  background: #fff !important;
  box-shadow: none !important;
}

.wc-block-components-text-input input:focus,
.wc-block-components-combobox .wc-block-components-combobox-control input:focus {
  border-color: var(--wsh-primary) !important;
  box-shadow: 0 0 0 3px var(--wsh-primary-soft) !important;
}

.wc-block-checkout__sidebar {
  position: sticky !important;
  top: 86px;
  height: max-content;
  align-self: flex-start;
  overflow: hidden;
  border: 1px solid var(--wsh-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(36, 43, 70, .065);
}

.wc-block-components-order-summary .wc-block-components-order-summary-item {
  padding: 14px 20px !important;
  border-color: var(--wsh-line) !important;
}

.wc-block-components-order-summary-item__image img {
  border: 1px solid var(--wsh-line);
  border-radius: 9px;
}

.wc-block-components-checkout-place-order-button {
  width: 100%;
  margin-top: 10px;
}

.wc-block-components-payment-methods {
  overflow: hidden;
  border: 1px solid var(--wsh-line);
  border-radius: 11px;
}

.wc-block-components-radio-control__option {
  padding: 15px !important;
  border-bottom: 1px solid var(--wsh-line);
}

.wc-block-components-radio-control__option:last-child {
  border-bottom: 0;
}

/* Classic cart and checkout fallback */

.woocommerce-cart-form,
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review {
  overflow: hidden;
  border: 1px solid var(--wsh-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(36, 43, 70, .055);
}

.woocommerce-cart-form {
  padding: 0 20px 20px;
}

.woocommerce table.shop_table {
  border-color: var(--wsh-line);
  border-radius: 12px;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 14px 15px;
  border-color: var(--wsh-line);
}

.woocommerce .cart-collaterals .cart_totals {
  padding: 22px;
}

.woocommerce .cart-collaterals .cart_totals h2,
.woocommerce-checkout #order_review_heading {
  font-size: 23px;
}

.woocommerce-checkout #customer_details {
  padding: 22px;
}

.woocommerce-checkout #order_review {
  padding: 22px;
}

.woocommerce-checkout .woocommerce-billing-fields > h3,
.woocommerce-checkout .woocommerce-additional-fields > h3 {
  font-size: 22px;
}

.woocommerce form .form-row {
  margin-bottom: 12px;
}

.woocommerce form .form-row label {
  margin-bottom: 5px;
  color: var(--wsh-ink-soft);
  font-size: 12px;
  font-weight: 750;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout .woocommerce-form-login-toggle {
  margin-bottom: 14px;
}

.wsh-checkout-footer {
  padding: 20px 0;
  border-top: 1px solid var(--wsh-line);
  color: var(--wsh-muted);
  background: #fff;
}

.wsh-checkout-footer .wsh-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.wsh-checkout-footer p {
  margin: 0;
  font-size: 10px;
}

.wsh-checkout-footer a {
  color: var(--wsh-muted);
  font-size: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1080px) {
  .wsh-header-inner {
    grid-template-columns: auto auto 1fr auto;
  }

  .wsh-header-actions {
    grid-column: 4;
  }

  .wsh-header-cta {
    display: none;
  }

  .wsh-site-header.is-checkout-flow .wsh-header-inner {
    grid-template-columns: auto 1fr;
  }

  .wsh-commerce-heading-row {
    align-items: flex-start;
  }

  .wc-block-cart__sidebar,
  .wc-block-checkout__sidebar {
    top: 78px;
  }
}

@media (max-width: 782px) {
  .wsh-header-inner {
    min-height: 64px;
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .wsh-header-actions {
    grid-column: auto;
  }

  .wsh-cart-trigger-copy {
    display: none;
  }

  .wsh-cart-trigger {
    min-height: 42px;
    padding: 5px;
    gap: 0;
  }

  .wsh-cart-trigger-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
  }

  .wsh-hero {
    padding-top: 56px;
  }

  .wsh-hero-visual {
    min-height: 410px;
  }

  .wsh-section {
    padding-block: 58px;
  }

  .wsh-commerce-heading-row {
    display: block;
  }

  .wsh-checkout-steps {
    margin-top: 23px;
    justify-content: flex-start;
  }

  .wsh-commerce-page .wsh-page-hero {
    padding: 28px 0 24px;
  }

  .wc-block-cart__sidebar,
  .wc-block-checkout__sidebar {
    position: static !important;
  }

  .wc-block-cart .wc-block-cart__main,
  .wc-block-cart .wc-block-cart__sidebar,
  .wc-block-checkout__main,
  .wc-block-checkout__sidebar {
    width: 100%;
    padding-inline: 0 !important;
    flex: 0 0 100%;
  }

  .wc-block-components-checkout-step {
    padding: 18px !important;
  }

  .wsh-footer-cta {
    margin-bottom: 34px;
  }

  .wsh-footer-bottom {
    margin-top: 32px;
  }
}

@media (max-width: 560px) {
  .wsh-wordmark-icon {
    width: 36px;
    height: 36px;
  }

  .wsh-nav-toggle {
    width: 42px;
    height: 42px;
  }

  .wsh-checkout-safe small {
    display: none;
  }

  .wsh-checkout-safe > span {
    width: 29px;
    height: 29px;
  }

  .wsh-hero-visual {
    min-height: 360px;
  }

  .wsh-section {
    padding-block: 50px;
  }

  .wsh-feature-card {
    min-height: 270px;
    padding: 23px;
  }

  .wsh-site-footer {
    padding-top: 44px;
  }

  .wsh-footer-cta {
    padding: 25px 20px;
  }

  .wsh-cart-drawer {
    width: min(380px, 100%);
  }

  .wsh-cart-drawer-content {
    padding-inline: 16px;
  }

  .wsh-checkout-steps {
    width: 100%;
  }

  .wsh-checkout-steps li {
    min-width: 0;
    flex: 1;
  }

  .wsh-commerce-heading-row h1 {
    font-size: 34px;
  }

  .wp-block-woocommerce-empty-cart-block {
    min-height: 280px;
    padding: 42px 20px;
  }

  .wc-block-cart-items td {
    padding: 14px 11px !important;
  }

  .wsh-checkout-footer .wsh-container {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ==========================================================
   v0.4.4 responsive hardening
========================================================== */

html,
body {
  max-width: 100%;
}

.wsh-site-header,
.wsh-header-inner,
.wsh-content-area,
.wsh-entry-content,
.wsh-commerce-content,
.wsh-site-footer,
.wsh-footer-grid,
.wsh-cart-drawer,
.wc-block-cart,
.wc-block-checkout,
.wc-block-cart__main,
.wc-block-cart__sidebar,
.wc-block-checkout__main,
.wc-block-checkout__sidebar {
  min-width: 0;
}

.custom-logo-link {
  max-width: min(190px, 34vw);
}

.custom-logo {
  max-width: 100%;
  object-fit: contain;
}

.wsh-entry-content,
.wsh-commerce-content,
.wsh-cart-drawer,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  overflow-wrap: anywhere;
}

.wsh-footer-menu,
.wsh-cart-drawer-trust {
  flex-wrap: wrap;
}

.wsh-cart-drawer .woocommerce-mini-cart-item > a:not(.remove),
.wsh-dashboard-list span,
.wsh-dashboard-list strong,
.wsh-dashboard-list small {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 1080px) {
  .wsh-primary-nav {
    max-height: calc(100dvh - 92px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .wsh-primary-nav .sub-menu {
    width: auto;
    margin: 2px 0 0 10px;
  }
}

@media (max-width: 782px) {
  .custom-logo-link {
    max-width: min(150px, 38vw);
  }

  .wc-block-cart,
  .wc-block-checkout {
    flex-wrap: wrap !important;
  }

  .wc-block-cart .wc-block-cart__main,
  .wc-block-cart .wc-block-cart__sidebar,
  .wc-block-checkout__main,
  .wc-block-checkout__sidebar {
    max-width: 100%;
  }

  body.logged-in.woocommerce-account .woocommerce-MyAccount-content {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .woocommerce-account .woocommerce table.shop_table {
    min-width: 100%;
  }
}

@media (max-width: 560px) {
  .wsh-wordmark {
    min-width: 0;
  }

  .wsh-wordmark strong {
    max-width: 104px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .custom-logo-link {
    max-width: min(124px, 36vw);
  }

  .wsh-primary-nav {
    right: 12px;
    left: 12px;
    max-height: calc(100dvh - 78px);
  }

  .wsh-dashboard-stats > div {
    padding: 12px 9px;
  }

  .wsh-dashboard-stats span {
    top: 8px;
    right: 8px;
  }

  .wsh-cart-drawer-trust {
    gap: 7px 12px;
  }

  .wsh-checkout-steps li {
    font-size: 8px;
    letter-spacing: .02em;
  }

  .wsh-checkout-steps li:not(:last-child)::after {
    left: calc(50% + 16px);
    width: calc(100% - 32px);
  }

  .wsh-footer-menu {
    gap: 8px 14px;
  }

  .woocommerce table.shop_table th,
  .woocommerce table.shop_table td {
    overflow-wrap: anywhere;
  }
}

/* ==========================================================
   v0.4.6 minimal commerce refinement
========================================================== */

.wsh-cart-drawer {
  width: min(382px, 100%);
}

.wsh-cart-drawer-header {
  min-height: 64px;
  padding: 12px 16px;
}

.wsh-cart-drawer-header h2 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -.025em;
}

.wsh-cart-drawer-close {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff;
}

.wsh-cart-drawer-close span {
  font-size: 21px;
}

.wsh-cart-drawer-content {
  padding: 14px 16px;
}

.wsh-cart-drawer .woocommerce-mini-cart-item {
  min-height: 67px;
  padding: 0 27px 13px 64px !important;
  margin-bottom: 13px;
}

.wsh-cart-drawer .woocommerce-mini-cart-item > a:not(.remove) {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.wsh-cart-drawer .woocommerce-mini-cart-item img {
  width: 51px;
  height: 51px;
  border-radius: 9px;
}

.wsh-cart-drawer .woocommerce-mini-cart-item .remove {
  width: 22px;
  height: 22px;
  font-size: 15px;
}

.wsh-cart-drawer .quantity {
  margin-top: 4px;
  font-size: 10px;
}

.wsh-cart-drawer .woocommerce-mini-cart__total {
  margin: 13px 0 10px;
  padding-top: 13px;
  font-size: 12px;
}

.wsh-cart-drawer .woocommerce-mini-cart__buttons {
  grid-template-columns: .92fr 1.08fr;
  gap: 8px;
}

.wsh-cart-drawer .woocommerce-mini-cart__buttons .button {
  min-height: 42px;
  padding: 9px 11px;
  border-radius: 9px;
  font-size: 10px;
}

.wsh-cart-drawer .woocommerce-mini-cart__empty-message {
  min-height: 210px;
  font-size: 12px;
}

.wsh-cart-drawer-trust {
  padding: 10px 16px 12px;
  gap: 8px 12px;
  font-size: 8px;
}

.wsh-commerce-page .wsh-page-hero {
  margin-bottom: 22px;
  padding: 28px 0 22px;
}

.wsh-commerce-heading-row {
  gap: 26px;
}

.wsh-commerce-heading-row h1 {
  margin: 4px 0 5px;
  font-size: clamp(30px, 3.5vw, 42px);
}

.wsh-commerce-heading-row p {
  font-size: 12px;
  line-height: 1.55;
}

.wsh-checkout-steps li {
  min-width: 80px;
  gap: 5px;
  font-size: 8px;
}

.wsh-checkout-steps span {
  width: 27px;
  height: 27px;
  font-size: 9px;
}

.woocommerce-cart .wsh-entry-content,
.woocommerce-checkout .wsh-entry-content,
.wc-block-cart,
.wc-block-checkout {
  color: var(--wsh-ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.wc-block-cart .wc-block-cart__main,
.wc-block-checkout__main {
  padding-right: 22px !important;
}

.wc-block-cart-items,
.wc-block-cart__sidebar .wp-block-woocommerce-cart-order-summary-block,
.wc-block-cart__sidebar .wc-block-components-sidebar,
.wc-block-checkout__sidebar,
.woocommerce-cart-form,
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review {
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(36, 43, 70, .045);
}

.wc-block-cart-items th {
  padding: 10px 14px !important;
  font-size: 9px !important;
}

.wc-block-cart-items td {
  padding: 14px !important;
}

.wc-block-cart-item__product .wc-block-components-product-name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.wc-block-components-quantity-selector {
  min-height: 36px;
  border-radius: 8px !important;
}

.wc-block-components-totals-wrapper {
  padding: 12px 16px !important;
}

.wc-block-components-totals-item {
  font-size: 12px;
}

.wc-block-components-totals-footer-item {
  font-size: 15px;
}

.wc-block-cart__submit-container {
  padding: 0 16px 16px;
}

.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
  min-height: 48px;
  font-size: 12px;
}

.wc-block-components-checkout-step {
  margin-bottom: 10px !important;
  padding: 18px !important;
  border-radius: 13px;
  box-shadow: 0 6px 20px rgba(36, 43, 70, .035);
}

.wc-block-components-checkout-step__heading {
  margin-bottom: 12px !important;
}

.wc-block-components-checkout-step__title {
  font-size: 17px !important;
  font-weight: 750 !important;
}

.wc-block-components-checkout-step__description {
  font-size: 11px;
  line-height: 1.5;
}

.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input,
.wc-block-components-address-form select {
  min-height: 48px !important;
  border-radius: 9px !important;
  font-size: 13px !important;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item {
  padding: 12px 16px !important;
}

.wc-block-components-payment-methods {
  border-radius: 10px;
}

.wc-block-components-radio-control__option {
  padding: 12px !important;
  font-size: 12px;
}

.woocommerce-cart-form {
  padding: 0 16px 16px;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 11px 12px;
  font-size: 12px;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review {
  padding: 18px;
}

.woocommerce .cart-collaterals .cart_totals h2,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout .woocommerce-billing-fields > h3,
.woocommerce-checkout .woocommerce-additional-fields > h3 {
  margin-bottom: 12px;
  font-size: 19px;
}

.woocommerce form .form-row {
  margin-bottom: 9px;
}

.woocommerce form .form-row label {
  margin-bottom: 4px;
  font-size: 11px;
}

.woocommerce form .input-text,
.woocommerce form select,
.woocommerce-checkout .select2-selection {
  min-height: 46px;
  font-size: 13px;
}

.winsho-manual-checkout,
.winsho-manual-block-checkout {
  margin-top: 10px;
  padding: 13px;
  border: 1px solid var(--wsh-line);
  border-radius: 10px;
  background: var(--wsh-canvas);
}

.winsho-manual-checkout .form-row {
  margin: 0 0 9px !important;
}

.winsho-manual-checkout select,
.winsho-manual-checkout input[type="text"],
.winsho-manual-block-checkout select,
.winsho-manual-block-checkout input {
  width: 100%;
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid #d9ddea;
  border-radius: 8px;
  background: #fff;
}

.winsho-manual-instructions,
.winsho-manual-block-instructions {
  margin: 9px 0;
  padding: 10px 11px;
  border-radius: 8px;
  color: var(--wsh-ink-soft);
  background: #fff;
  font-size: 11px;
  line-height: 1.55;
}

@media (max-width: 782px) {
  .wsh-commerce-page .wsh-page-hero {
    padding: 24px 0 19px;
  }

  .wc-block-cart .wc-block-cart__main,
  .wc-block-checkout__main {
    padding-right: 0 !important;
  }

  .wc-block-components-checkout-step {
    padding: 15px !important;
  }
}

@media (max-width: 560px) {
  .wsh-cart-drawer-header {
    min-height: 58px;
    padding-inline: 14px;
  }

  .wsh-cart-drawer-content {
    padding: 12px 14px;
  }

  .wsh-commerce-heading-row h1 {
    font-size: 30px;
  }

  .wc-block-cart-items td {
    padding: 12px 9px !important;
  }
}

/* ==========================================================
   v0.4.7 responsive commerce hardening
========================================================== */

.woocommerce-cart .wsh-entry-content *,
.woocommerce-checkout .wsh-entry-content *,
.wc-block-cart *,
.wc-block-checkout * {
  min-width: 0;
}

.wc-block-components-notice-banner,
.wc-block-components-validation-error,
.wc-block-components-payment-method-label,
.wc-block-components-order-summary-item__description,
.wc-block-components-order-summary-item__individual-prices,
.wc-block-cart-item__product,
.wc-block-cart-item__prices,
.wc-block-cart-item__total {
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (max-width: 782px) {
  .woocommerce-cart .wsh-content-area,
  .woocommerce-checkout .wsh-content-area {
    padding-inline: 18px;
  }

  .wsh-commerce-heading-row {
    align-items: flex-start;
    gap: 18px;
  }

  .wsh-checkout-steps {
    width: min(280px, 100%);
    margin-inline: auto;
  }

  .wc-block-cart,
  .wc-block-checkout,
  .wc-block-cart__main,
  .wc-block-cart__sidebar,
  .wc-block-checkout__main,
  .wc-block-checkout__sidebar {
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
  }

  .wc-block-cart,
  .wc-block-checkout {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
  }

  .wc-block-cart__sidebar,
  .wc-block-checkout__sidebar {
    position: static !important;
    margin: 0 !important;
  }

  .wc-block-cart-items,
  .wc-block-cart__sidebar .wp-block-woocommerce-cart-order-summary-block,
  .wc-block-checkout__sidebar,
  .woocommerce-cart-form,
  .woocommerce .cart-collaterals .cart_totals,
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review {
    border-radius: 12px;
  }

  .wc-block-components-checkout-step {
    margin-bottom: 8px !important;
    padding: 14px !important;
  }

  .wc-block-components-checkout-step__title {
    font-size: 16px !important;
  }

  .wc-block-components-order-summary .wc-block-components-order-summary-item {
    padding: 11px 13px !important;
  }

  .wc-block-components-checkout-place-order-button,
  .wc-block-cart__submit-button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .woocommerce-cart .wsh-content-area,
  .woocommerce-checkout .wsh-content-area {
    padding-inline: 12px;
  }

  .wsh-commerce-page .wsh-page-hero {
    margin-bottom: 14px;
    padding: 19px 0 16px;
  }

  .wsh-commerce-heading-row {
    display: block;
  }

  .wsh-commerce-heading-row h1 {
    margin-top: 2px;
    font-size: 27px;
  }

  .wsh-commerce-heading-row p {
    max-width: 34em;
    font-size: 11px;
  }

  .wsh-checkout-steps {
    margin-top: 15px;
  }

  .wsh-checkout-steps li {
    min-width: 0;
    font-size: 7px;
  }

  .wsh-checkout-steps span {
    width: 25px;
    height: 25px;
  }

  .wc-block-cart,
  .wc-block-checkout {
    gap: 12px !important;
    font-size: 12px;
  }

  .wc-block-cart-items thead {
    display: none;
  }

  .wc-block-cart-items .wc-block-cart-items__row {
    display: grid !important;
    grid-template-columns: 64px minmax(0, 1fr) !important;
    gap: 0 10px;
    padding: 12px !important;
  }

  .wc-block-cart-items .wc-block-cart-item__image {
    grid-column: 1;
    width: 64px !important;
    padding: 0 !important;
  }

  .wc-block-cart-items .wc-block-cart-item__product {
    grid-column: 2;
    padding: 0 !important;
  }

  .wc-block-cart-items .wc-block-cart-item__total {
    grid-column: 2;
    width: auto !important;
    padding: 7px 0 0 !important;
    text-align: left !important;
  }

  .wc-block-cart-item__product .wc-block-components-product-name {
    font-size: 12px;
  }

  .wc-block-cart-item__image img,
  .wc-block-components-order-summary-item__image img {
    border-radius: 8px;
  }

  .wc-block-components-quantity-selector {
    min-height: 34px;
  }

  .wc-block-components-totals-wrapper,
  .wc-block-cart__submit-container {
    padding: 11px 13px !important;
  }

  .wc-block-components-totals-footer-item {
    font-size: 14px;
  }

  .wc-block-components-checkout-step {
    padding: 12px !important;
  }

  .wc-block-components-checkout-step__heading {
    margin-bottom: 9px !important;
  }

  .wc-block-components-checkout-step__description {
    font-size: 10px;
  }

  .wc-block-components-text-input input,
  .wc-block-components-combobox .wc-block-components-combobox-control input,
  .wc-block-components-address-form select {
    min-height: 45px !important;
    font-size: 12px !important;
  }

  .wc-block-components-radio-control__option,
  .wc-block-components-notice-banner {
    padding: 10px !important;
    font-size: 11px;
  }

  .wc-block-components-checkout-place-order-button,
  .wc-block-cart__submit-button {
    min-height: 46px;
  }

  .woocommerce .cart-collaterals .cart_totals,
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review {
    padding: 14px;
  }

  .woocommerce table.shop_table_responsive tr td,
  .woocommerce-page table.shop_table_responsive tr td {
    padding: 9px 10px;
  }

  .winsho-manual-checkout,
  .winsho-manual-block-checkout {
    padding: 11px;
  }
}
/* ==========================================================
   WinSho v0.5.0 — Cart & Checkout UX hardening
========================================================== */

.woocommerce-cart .wsh-content-area,
.woocommerce-checkout .wsh-content-area {
  padding-bottom: 64px;
}

.wsh-commerce-page .wsh-page-hero {
  margin-bottom: 34px;
  padding: 38px 0 32px;
}

.wsh-commerce-heading-row h1 {
  margin: 7px 0 9px;
  font-size: clamp(36px, 4vw, 50px);
  letter-spacing: -.035em;
  line-height: 1.04;
}

.wsh-commerce-heading-row p {
  font-size: 15px;
  line-height: 1.6;
}

.woocommerce-cart .wsh-entry-content,
.woocommerce-checkout .wsh-entry-content,
.wc-block-cart,
.wc-block-checkout {
  color: var(--wsh-ink-soft);
  font-family: var(--wsh-body-font);
  font-size: 15px;
  line-height: 1.55;
}

.wc-block-cart,
.wc-block-checkout.wc-block-components-sidebar-layout {
  align-items: flex-start;
  gap: 28px !important;
}

.wc-block-checkout {
  padding-top: 0 !important;
}

.wc-block-cart .wc-block-cart__main,
.wc-block-checkout__main {
  width: calc(65% - 14px) !important;
  padding-right: 0 !important;
  flex: 1 1 calc(65% - 14px) !important;
}

.wc-block-cart .wc-block-cart__sidebar,
.wc-block-checkout__sidebar {
  width: calc(35% - 14px) !important;
  padding-left: 0 !important;
  flex: 0 0 calc(35% - 14px) !important;
}

.wc-block-cart-items {
  overflow: hidden;
  border: 1px solid var(--wsh-line) !important;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(36, 43, 70, .06);
}

.wc-block-cart-items th {
  padding: 15px 20px !important;
  color: var(--wsh-muted);
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: .07em;
}

.wc-block-cart-items td {
  padding: 24px 20px !important;
  border-color: var(--wsh-line) !important;
  vertical-align: top;
}

.wc-block-cart-item__image {
  width: 108px;
}

.wc-block-cart-item__image img {
  width: 76px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--wsh-line);
  border-radius: 12px;
}

.wc-block-cart-item__product .wc-block-components-product-name {
  color: var(--wsh-ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.wc-block-cart-item__prices {
  margin-top: 5px;
  color: var(--wsh-ink-soft);
  font-size: 14px;
}

.wc-block-cart-item__product .wc-block-components-product-metadata {
  max-width: 500px;
  margin-top: 8px;
  color: var(--wsh-muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.wc-block-cart-item__quantity {
  margin-top: 14px;
}

.wc-block-cart-item__total {
  width: 132px;
  color: var(--wsh-ink);
  font-size: 16px;
  font-weight: 800;
  text-align: right;
}

.wc-block-components-quantity-selector {
  min-height: 42px;
  border-color: var(--wsh-line) !important;
  border-radius: 10px !important;
}

.wc-block-cart .wc-block-cart__sidebar {
  position: sticky;
  top: 86px;
  align-self: flex-start;
  overflow: hidden;
  border: 1px solid var(--wsh-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(36, 43, 70, .065);
}

.wc-block-cart__sidebar .wp-block-woocommerce-cart-order-summary-block,
.wc-block-cart__sidebar .wc-block-components-sidebar {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.wc-block-cart__totals-title {
  margin: 0 !important;
  padding: 20px 22px !important;
  border-bottom: 1px solid var(--wsh-line);
  color: var(--wsh-ink);
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.3;
}

.wc-block-components-totals-wrapper {
  padding: 17px 22px !important;
  border-color: var(--wsh-line) !important;
}

.wc-block-components-totals-item {
  font-size: 14.5px;
}

.wc-block-components-totals-footer-item {
  color: var(--wsh-ink);
  font-size: 18px;
  font-weight: 750;
}

.wc-block-cart__submit-container {
  padding: 20px 22px 22px !important;
  border-top: 1px solid var(--wsh-line);
}

.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
  min-height: 54px;
  font-size: 14px;
}

.wc-block-components-checkout-step {
  margin-bottom: 18px !important;
  padding: 26px !important;
  border: 1px solid var(--wsh-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(36, 43, 70, .05);
}

.wc-block-components-checkout-step__heading {
  margin-bottom: 18px !important;
}

.wc-block-components-checkout-step__title {
  color: var(--wsh-ink);
  font-size: 20px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
}

.wc-block-components-checkout-step__description {
  color: var(--wsh-muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input,
.wc-block-components-address-form select,
.wc-blocks-components-select__select {
  min-height: 54px !important;
  border-color: #d9ddea !important;
  border-radius: 10px !important;
  font-family: var(--wsh-body-font) !important;
  font-size: 15px !important;
}

.wc-block-checkout__sidebar {
  position: sticky !important;
  top: 86px;
  height: max-content;
  align-self: flex-start;
  overflow: hidden;
  border: 1px solid var(--wsh-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(36, 43, 70, .065);
}

.wc-block-components-checkout-order-summary__title {
  min-height: 62px;
  padding: 18px 20px !important;
  border-bottom: 1px solid var(--wsh-line);
  color: var(--wsh-ink);
  font-size: 18px;
  font-weight: 800;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item {
  padding: 18px 20px !important;
  border-color: var(--wsh-line) !important;
}

.wc-block-components-order-summary-item__description .wc-block-components-product-name {
  color: var(--wsh-ink);
  font-size: 15px;
  font-weight: 780;
  line-height: 1.35;
}

.wc-block-components-order-summary-item__description .wc-block-components-product-metadata {
  margin-top: 6px;
  color: var(--wsh-muted);
  font-size: 12.5px;
  line-height: 1.5;
}

.wc-block-components-address-card {
  position: relative;
  min-height: 74px;
  padding: 17px 70px 17px 18px !important;
  border-color: #d9ddea !important;
  border-radius: 11px !important;
  color: var(--wsh-ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.wc-block-components-address-card__edit {
  position: absolute;
  top: 17px;
  right: 18px;
  min-width: 40px;
  color: var(--wsh-primary);
  font-weight: 750;
  text-align: right;
  white-space: nowrap;
  word-break: normal;
}

.wc-block-components-radio-control__option {
  padding: 17px !important;
  font-size: 14px;
}

.wc-block-components-notice-banner {
  border-radius: 11px !important;
  font-size: 13.5px !important;
  line-height: 1.55 !important;
}

.wc-block-checkout__terms {
  margin: 2px 0 0 !important;
  padding: 18px 0 !important;
  color: var(--wsh-muted);
  font-size: 13.5px;
  line-height: 1.6;
}

.wc-block-checkout__actions {
  margin-bottom: 0 !important;
}

@media (max-width: 782px) {
  .wsh-commerce-page .wsh-page-hero {
    margin-bottom: 22px;
    padding: 28px 0 26px;
  }

  .wc-block-cart,
  .wc-block-checkout.wc-block-components-sidebar-layout {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    font-size: 15px;
  }

  .wc-block-cart .wc-block-cart__main,
  .wc-block-cart .wc-block-cart__sidebar,
  .wc-block-checkout__main,
  .wc-block-checkout__sidebar {
    width: 100% !important;
    margin: 0 !important;
    padding-inline: 0 !important;
    flex: 0 0 100% !important;
  }

  .wc-block-cart .wc-block-cart__sidebar,
  .wc-block-checkout__sidebar {
    position: static !important;
  }

  .wc-block-checkout__sidebar {
    order: -1;
  }

  .wc-block-cart-items {
    overflow: visible;
    border: 0 !important;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .wc-block-cart-items thead {
    display: none;
  }

  .wc-block-cart-items tbody {
    display: block;
  }

  .wc-block-cart-items .wc-block-cart-items__row {
    margin-bottom: 14px;
    padding: 18px !important;
    display: grid !important;
    grid-template-columns: 78px minmax(0, 1fr) !important;
    grid-template-areas:
      "image product"
      "total total";
    column-gap: 16px;
    row-gap: 0;
    overflow: hidden;
    border: 1px solid var(--wsh-line);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(36, 43, 70, .055);
  }

  .wc-block-cart-items .wc-block-cart-item__image {
    grid-area: image;
    width: auto !important;
    padding: 0 !important;
  }

  .wc-block-cart-items .wc-block-cart-item__image img {
    width: 78px;
    max-width: 100%;
  }

  .wc-block-cart-items .wc-block-cart-item__product {
    grid-area: product;
    min-width: 0;
    padding: 0 !important;
  }

  .wc-block-cart-items .wc-block-cart-item__total {
    grid-area: total;
    width: auto !important;
    margin-top: 17px;
    padding: 14px 0 0 !important;
    display: flex !important;
    justify-content: flex-end;
    border-top: 1px solid var(--wsh-line) !important;
    font-size: 15px;
    text-align: right !important;
  }

  .wc-block-cart-item__product .wc-block-components-product-metadata__description {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .wc-block-components-checkout-step {
    margin-bottom: 16px !important;
    padding: 20px !important;
  }

  .wc-block-components-checkout-order-summary__title {
    min-height: 58px;
    padding: 16px 18px !important;
  }
}

@media (max-width: 560px) {
  .woocommerce-cart .wsh-commerce-content,
  .woocommerce-checkout .wsh-commerce-content {
    padding-inline: 16px;
  }

  .wsh-commerce-heading-row h1 {
    font-size: 32px;
  }

  .wsh-commerce-heading-row p {
    font-size: 14px;
  }

  .wsh-checkout-steps {
    margin-top: 22px;
  }

  .wsh-checkout-steps li {
    font-size: 8px;
  }

  .wc-block-cart-items .wc-block-cart-items__row {
    padding: 15px !important;
    grid-template-columns: 68px minmax(0, 1fr) !important;
    column-gap: 13px;
  }

  .wc-block-cart-items .wc-block-cart-item__image img {
    width: 68px;
  }

  .wc-block-cart-item__product .wc-block-components-product-name {
    font-size: 15px;
  }

  .wc-block-cart-item__product .wc-block-components-product-metadata {
    margin-top: 6px;
    font-size: 12.5px;
  }

  .wc-block-cart-item__quantity {
    margin-top: 11px;
  }

  .wc-block-components-quantity-selector {
    min-height: 40px;
  }

  .wc-block-cart__submit-container {
    padding: 18px 20px 20px !important;
  }

  .wc-block-components-totals-wrapper {
    padding: 15px 18px !important;
  }

  .wc-block-components-checkout-step {
    padding: 17px !important;
    border-radius: 15px;
  }

  .wc-block-components-checkout-step__heading {
    margin-bottom: 14px !important;
  }

  .wc-block-components-checkout-step__title {
    font-size: 18px !important;
  }

  .wc-block-components-address-card {
    padding: 15px 60px 15px 15px !important;
    font-size: 13.5px;
/* v0.5.0 mobile cart placement fix */
.wc-block-cart-item__product .wc-block-components-product-name {
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}
@media (max-width: 782px) {
  .wc-block-cart-items .wc-block-cart-items__row {
    grid-template-columns: 68px minmax(0, 1fr) !important;
    grid-template-rows: auto auto !important;
    grid-template-areas: none !important;
  }
  .wc-block-cart-items .wc-block-cart-item__image {
    grid-area: auto !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 68px !important;
    height: auto !important;
  }
  .wc-block-cart-items .wc-block-cart-item__product {
    grid-area: auto !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
  }
  .wc-block-cart-items .wc-block-cart-item__total {
    grid-area: auto !important;
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
  }
  .wc-block-cart-items .wc-block-cart-item__total-price-and-sale-badge-wrapper {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    align-items: center !important;
    justify-content: flex-end !important;
  }
}
@media (max-width: 560px) {
  .wc-block-cart-item__product .wc-block-components-product-name {
    font-size: 15px !important;
  }
}

  }

  .wc-block-components-address-card__edit {
    top: 15px;
    right: 15px;
    min-width: 36px;
  }

  .wc-block-components-notice-banner {
    padding: 13px !important;
    font-size: 12.5px !important;
  }

  .wc-block-components-order-summary .wc-block-components-order-summary-item {
    padding: 16px !important;
  }

  .wc-block-checkout__terms {
    padding: 15px 0 !important;
    font-size: 12.5px;
  }
}
/* v0.5.0 final mobile cart placement */
.wc-block-cart-item__product .wc-block-components-product-name {
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}
@media (max-width: 782px) {
  .wc-block-cart-items .wc-block-cart-items__row {
    grid-template-columns: 68px minmax(0, 1fr) !important;
    grid-template-rows: auto auto !important;
    grid-template-areas: none !important;
  }
  .wc-block-cart-items .wc-block-cart-item__image {
    grid-area: auto !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 68px !important;
    height: auto !important;
  }
  .wc-block-cart-items .wc-block-cart-item__product {
    grid-area: auto !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
  }
  .wc-block-cart-items .wc-block-cart-item__total {
    grid-area: auto !important;
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
  }
  .wc-block-cart-items .wc-block-cart-item__total-price-and-sale-badge-wrapper {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    align-items: center !important;
    justify-content: flex-end !important;
  }
}
@media (max-width: 560px) {
  .wc-block-cart-item__product .wc-block-components-product-name {
    font-size: 15px !important;
  }
}
