:root {
  --swx-bg: #0b0714;
  --swx-bg-soft: #120c20;
  --swx-surface: #171024;
  --swx-surface-2: #1d1530;
  --swx-border: rgba(255, 255, 255, 0.1);
  --swx-border-strong: rgba(255, 255, 255, 0.18);
  --swx-text: #f8f5ff;
  --swx-muted: #aaa3b9;
  --swx-purple: #805dff;
  --swx-pink: #ff5ea8;
  --swx-cyan: #67ddff;
  --swx-green: #70e4a2;
  --swx-gradient: linear-gradient(120deg, var(--swx-pink) 0%, var(--swx-cyan) 54%, var(--swx-purple) 100%);
  --swx-radius-sm: 14px;
  --swx-radius: 22px;
  --swx-radius-lg: 34px;
  --swx-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
  --swx-container: 1180px;
  --swx-font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--swx-bg);
  color: var(--swx-text);
  font-family: var(--swx-font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: rgba(128, 93, 255, 0.55);
  color: #fff;
}

.swx-container {
  width: min(calc(100% - 40px), var(--swx-container));
  margin-inline: auto;
}

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

.screen-reader-text:focus,
.skip-link:focus {
  z-index: 99999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 16px;
  border-radius: 10px;
  background: #fff;
  color: #111;
}

:focus-visible {
  outline: 3px solid var(--swx-cyan);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 82px;
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled,
.admin-bar .site-header.is-scrolled {
  border-color: var(--swx-border);
  background: rgba(11, 7, 20, 0.84);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

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

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  gap: 38px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  gap: 11px;
  color: #fff;
}

.brand__mark,
.brand__fallback {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(128, 93, 255, 0.24);
}

.brand__fallback {
  display: grid;
  place-items: center;
  background: var(--swx-gradient);
  color: #130b22;
  font-size: 21px;
  font-weight: 900;
}

.brand__text {
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.brand__text strong {
  background: var(--swx-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.7vw, 38px);
}

.site-nav a {
  position: relative;
  color: #c3bdce;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--swx-gradient);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-header__cart {
  display: flex;
  justify-content: flex-end;
}

.swx-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 10px 8px 14px;
  border: 1px solid var(--swx-border-strong);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.swx-cart:hover {
  border-color: rgba(128, 93, 255, 0.5);
  background: rgba(128, 93, 255, 0.12);
  transform: translateY(-1px);
}

.swx-cart__count {
  display: grid;
  place-items: center;
  min-width: 23px;
  height: 23px;
  padding-inline: 5px;
  border-radius: 8px;
  background: var(--swx-gradient);
  color: #120b20;
  font-size: 11px;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--swx-border-strong);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 174px 0 105px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(128, 93, 255, 0.09), transparent 36%),
    linear-gradient(180deg, #0d0817 0%, var(--swx-bg) 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 70px 70px;
  content: "";
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 82%);
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(115px);
  opacity: 0.12;
  pointer-events: none;
}

.hero__glow--one {
  top: 10%;
  right: -180px;
  background: var(--swx-purple);
}

.hero__glow--two {
  bottom: -260px;
  left: -170px;
  background: var(--swx-pink);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(450px, 0.86fr);
  align-items: center;
  gap: clamp(58px, 7vw, 104px);
}

.hero__grid > *,
.hero__content {
  min-width: 0;
}

.hero__content {
  max-width: 650px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 21px;
  color: #bdb6ca;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--swx-gradient);
}

.hero h1,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(48px, 6.15vw, 82px);
  font-weight: 780;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 span,
.section-heading h2 span,
.final-cta h2 span {
  background: var(--swx-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--swx-muted);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 36px;
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wp-element-button,
.wc-block-components-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  gap: 15px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.button span[aria-hidden="true"] {
  font-size: 20px;
  line-height: 0;
  transition: transform 0.2s ease;
}

.button:hover span[aria-hidden="true"] {
  transform: translateX(3px);
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.wc-block-components-button:hover {
  transform: translateY(-2px);
}

.button--primary,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.wc-block-components-button:not(.is-link) {
  background: linear-gradient(105deg, #ff5ea8 -15%, #8a64ff 48%, #5bdcff 120%) !important;
  color: #fff !important;
  box-shadow: 0 14px 34px rgba(128, 93, 255, 0.24);
}

.button--primary:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  box-shadow: 0 18px 42px rgba(128, 93, 255, 0.34);
}

.button--ghost {
  border-color: var(--swx-border-strong);
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
}

.button--ghost:hover {
  border-color: rgba(128, 93, 255, 0.55);
  background: rgba(128, 93, 255, 0.1);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
  margin: 29px 0 0;
  color: #a9a2b7;
  font-size: 13px;
  font-weight: 600;
  list-style: none;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__trust span {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border: 1px solid rgba(103, 221, 255, 0.28);
  border-radius: 50%;
  background: rgba(103, 221, 255, 0.09);
  color: var(--swx-cyan);
  font-size: 10px;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  isolation: isolate;
}

.hero-visual__orb {
  position: absolute;
  z-index: -2;
  top: 35px;
  left: 50%;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: conic-gradient(from 200deg, rgba(255, 94, 168, 0.75), rgba(128, 93, 255, 0.35), rgba(103, 221, 255, 0.7), rgba(255, 94, 168, 0.75));
  filter: blur(3px);
  opacity: 0.34;
  transform: translateX(-50%);
}

.hero-visual__orb::before {
  position: absolute;
  inset: 25px;
  border-radius: 50%;
  background: var(--swx-bg);
  content: "";
}

.player-card {
  position: absolute;
  z-index: 2;
  top: 42px;
  right: 2px;
  width: min(100%, 470px);
  min-height: 370px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(33, 23, 51, 0.95), rgba(15, 10, 27, 0.96));
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: perspective(1200px) rotateY(-7deg) rotateX(2deg);
}

.player-card__top {
  display: flex;
  align-items: center;
  height: 20px;
  gap: 6px;
}

.player-card__top > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.player-card__top > span:first-child { background: var(--swx-pink); }
.player-card__top > span:nth-child(2) { background: #ffc368; }
.player-card__top > span:nth-child(3) { background: var(--swx-green); }

.player-card__top small {
  margin-left: auto;
  color: #8f879e;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.player-card__screen {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background:
    radial-gradient(circle at 75% 20%, rgba(128, 93, 255, 0.34), transparent 34%),
    radial-gradient(circle at 22% 85%, rgba(255, 94, 168, 0.2), transparent 32%),
    #110b20;
}

.player-card__screen::before,
.player-card__screen::after {
  position: absolute;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.player-card__screen::before { top: -125px; right: -30px; }
.player-card__screen::after { bottom: -140px; left: -15px; }

.play-mark {
  position: absolute;
  top: 37px;
  width: 112px;
  filter: drop-shadow(0 13px 34px rgba(128, 93, 255, 0.3));
}

.player-card__screen p {
  align-self: end;
  margin: 0 0 31px;
  color: #c2bbcc;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.player-card__screen p strong {
  color: #fff;
  font-size: 18px;
}

.player-card__timeline {
  position: relative;
  height: 3px;
  margin: 17px 4px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.player-card__timeline span {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: var(--swx-gradient);
}

.player-card__timeline span::after {
  position: absolute;
  top: 50%;
  left: 62%;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--swx-purple);
  content: "";
  transform: translate(-50%, -50%);
}

.player-card__controls {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 4px;
}

.player-card__controls i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.26);
}

.player-card__controls b {
  margin-left: auto;
  color: #aaa2b9;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  min-width: 180px;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  background: rgba(24, 16, 39, 0.88);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.floating-card > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(128, 93, 255, 0.17);
  color: var(--swx-cyan);
  font-size: 16px;
  font-weight: 900;
}

.floating-card strong,
.floating-card small {
  display: block;
  line-height: 1.35;
}

.floating-card strong { font-size: 13px; }
.floating-card small { color: #958da3; font-size: 10px; }
.floating-card--one { top: 12px; left: -18px; }
.floating-card--two { right: -27px; bottom: 28px; }
.floating-card--two > span { background: rgba(255, 94, 168, 0.14); color: var(--swx-pink); }

.proof-strip {
  position: relative;
  border-block: 1px solid var(--swx-border);
  background: rgba(255, 255, 255, 0.02);
}

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

.proof-strip__grid > div {
  display: flex;
  align-items: center;
  min-height: 106px;
  gap: 14px;
  padding: 22px 28px;
  border-right: 1px solid var(--swx-border);
}

.proof-strip__grid > div:first-child { border-left: 1px solid var(--swx-border); }

.proof-strip__grid > div > span {
  background: var(--swx-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 13px;
  font-weight: 900;
}

.proof-strip__grid p { margin: 0; color: #8f899b; font-size: 11px; line-height: 1.45; }
.proof-strip__grid strong { display: block; color: #fff; font-size: 14px; }

.section {
  position: relative;
  padding: 124px 0;
}

.section-heading h2,
.final-cta h2 {
  font-size: clamp(38px, 4.7vw, 62px);
  line-height: 1.06;
}

.section-heading > p:not(.eyebrow) {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--swx-muted);
  line-height: 1.75;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 70px;
}

.section-heading--split > p {
  margin-bottom: 6px !important;
}

.section-heading--center {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center > p:not(.eyebrow) {
  margin-inline: auto;
}

.benefits {
  background: linear-gradient(180deg, var(--swx-bg) 0%, #0d0917 100%);
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 18px;
  margin-top: 62px;
}

.benefit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--swx-border);
  border-radius: var(--swx-radius);
  background: linear-gradient(145deg, rgba(29, 21, 48, 0.86), rgba(17, 12, 29, 0.94));
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.benefit-card:hover {
  border-color: rgba(128, 93, 255, 0.4);
  transform: translateY(-4px);
}

.benefit-card--large {
  background:
    radial-gradient(circle at 90% 10%, rgba(128, 93, 255, 0.2), transparent 38%),
    linear-gradient(145deg, rgba(29, 21, 48, 0.92), rgba(17, 12, 29, 0.98));
}

.benefit-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(128, 93, 255, 0.25);
  border-radius: 15px;
  background: rgba(128, 93, 255, 0.12);
}

.benefit-card__icon svg {
  width: 23px;
  fill: none;
  stroke: var(--swx-cyan);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card > div:nth-child(2) > span {
  color: #736d7e;
  font-size: 11px;
  font-weight: 800;
}

.benefit-card h3 {
  margin: 8px 0 10px;
  font-size: 23px;
  letter-spacing: -0.035em;
}

.benefit-card p {
  margin: 0;
  color: #9e97aa;
  font-size: 14px;
  line-height: 1.7;
}

.benefit-card--large > div:nth-child(2) {
  max-width: 300px;
}

.mini-player {
  position: absolute;
  top: 98px;
  right: -28px;
  width: 180px;
  height: 120px;
  padding: 16px;
  border: 1px solid var(--swx-border-strong);
  border-radius: 20px;
  background: #100a1d;
  box-shadow: var(--swx-shadow);
  transform: rotate(-6deg);
}

.mini-player > i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.mini-player > i:first-child { background: var(--swx-pink); }

.mini-player > div {
  display: grid;
  place-items: center;
  height: 65px;
  margin-top: 7px;
  border-radius: 12px;
  background: radial-gradient(circle at 60% 30%, rgba(128, 93, 255, 0.4), transparent 45%), #171027;
}

.mini-player > div span {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--swx-cyan);
  filter: drop-shadow(0 3px 8px rgba(103, 221, 255, 0.35));
}

.pricing {
  overflow: hidden;
  background: #100a1b;
}

.pricing::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.065) 0.7px, transparent 0.7px);
  background-size: 22px 22px;
  content: "";
  opacity: 0.25;
  pointer-events: none;
}

.pricing__glow {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 850px;
  height: 430px;
  border-radius: 50%;
  background: rgba(128, 93, 255, 0.12);
  filter: blur(130px);
  transform: translate(-50%, -50%);
}

.pricing .swx-container { position: relative; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
  margin-top: 62px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 34px;
  border: 1px solid var(--swx-border);
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(30, 21, 47, 0.98), rgba(17, 12, 29, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.price-card:hover {
  border-color: rgba(128, 93, 255, 0.45);
  transform: translateY(-5px);
}

.price-card--featured {
  border-color: rgba(128, 93, 255, 0.58);
  background:
    radial-gradient(circle at 80% 0%, rgba(128, 93, 255, 0.2), transparent 32%),
    linear-gradient(160deg, rgba(34, 24, 55, 0.99), rgba(18, 12, 31, 0.99));
  box-shadow: 0 28px 75px rgba(61, 39, 112, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.price-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 10px;
  border: 1px solid rgba(128, 93, 255, 0.3);
  border-radius: 999px;
  background: rgba(128, 93, 255, 0.13);
  color: #c2b5ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.price-card__eyebrow {
  margin: 0 0 19px;
  color: #91899e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card__duration {
  display: flex;
  align-items: center;
  gap: 13px;
}

.price-card__duration > strong {
  background: var(--swx-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 67px;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.85;
}

.price-card__duration > span {
  color: #fff;
  font-size: 23px;
  font-weight: 750;
  line-height: 1;
}

.price-card__duration small {
  display: block;
  margin-top: 4px;
  color: #8e879a;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card__price {
  min-height: 47px;
  padding: 24px 0 20px;
  border-bottom: 1px solid var(--swx-border);
  color: #fff;
  font-size: 27px;
  font-weight: 780;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-card__price del {
  margin-right: 7px;
  color: #746d80;
  font-size: 16px;
  font-weight: 500;
}

.price-card__price ins { text-decoration: none; }

.price-card ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 25px 0 30px;
  color: #bbb4c6;
  font-size: 13px;
  list-style: none;
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.price-card li span {
  display: grid;
  place-items: center;
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(112, 228, 162, 0.1);
  color: var(--swx-green);
  font-size: 9px;
}

.button--full {
  width: 100%;
  margin-top: auto;
}

.button--card {
  border-color: var(--swx-border-strong);
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}

.button--card:hover {
  border-color: rgba(128, 93, 255, 0.55);
  background: rgba(128, 93, 255, 0.12);
}

.button--disabled {
  background: rgba(255, 255, 255, 0.05);
  color: #77717f;
  cursor: not-allowed;
}

.pricing__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 30px 0 0;
  color: #938c9f;
  font-size: 12px;
  text-align: center;
}

.pricing__note svg {
  width: 19px;
  fill: none;
  stroke: var(--swx-cyan);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process {
  background: var(--swx-bg);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 64px;
}

.process-grid::before {
  position: absolute;
  z-index: 0;
  top: 52px;
  right: 16%;
  left: 16%;
  border-top: 1px dashed rgba(128, 93, 255, 0.3);
  content: "";
}

.process-grid article {
  position: relative;
  z-index: 1;
  padding: 0 32px;
  text-align: center;
}

.process-grid article > span {
  position: absolute;
  top: 1px;
  right: 28px;
  color: #fff;
  font-size: 43px;
  font-weight: 900;
  line-height: 1;
  opacity: 0.82;
  text-shadow: 0 0 24px rgba(128, 93, 255, 0.42);
}

.process-grid__icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 19px auto 26px;
  border: 1px solid rgba(128, 93, 255, 0.35);
  border-radius: 20px;
  background: #171026;
  color: var(--swx-cyan);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  font-size: 22px;
}

.process-grid h3 {
  margin: 0 0 9px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.process-grid p {
  margin: 0;
  color: #9790a3;
  font-size: 13px;
  line-height: 1.75;
}

.faq {
  border-top: 1px solid var(--swx-border);
  background: #0e0918;
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.faq-list {
  border-top: 1px solid var(--swx-border);
}

.faq-list details {
  border-bottom: 1px solid var(--swx-border);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 83px;
  gap: 20px;
  color: #eeeaf5;
  font-size: 15px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary span {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--swx-border-strong);
  border-radius: 9px;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: #c8c0d5;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-list summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details[open] summary span::after { transform: translate(-50%, -50%) rotate(0); }

.faq-list details p {
  max-width: 660px;
  padding: 0 50px 26px 0;
  margin: -7px 0 0;
  color: #9992a5;
  font-size: 14px;
  line-height: 1.75;
}

.final-cta {
  padding: 0 0 90px;
  background: #0e0918;
}

.final-cta__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 300px;
  gap: 45px;
  padding: 62px 66px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--swx-radius-lg);
  background:
    radial-gradient(circle at 85% 20%, rgba(103, 221, 255, 0.16), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(255, 94, 168, 0.14), transparent 32%),
    linear-gradient(125deg, #21143c, #171029 60%, #16172f);
  box-shadow: var(--swx-shadow);
}

.final-cta__inner > * { position: relative; z-index: 1; }
.final-cta h2 { max-width: 660px; }

.final-cta__rings {
  position: absolute;
  z-index: 0;
  right: -120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.final-cta__rings::before,
.final-cta__rings::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.final-cta__rings::before { inset: 55px; }
.final-cta__rings::after { inset: 110px; }

.button--light {
  min-width: 172px;
  background: #fff;
  color: #160e26;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.site-footer {
  border-top: 1px solid var(--swx-border);
  background: #090611;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 50px;
  padding-block: 63px 48px;
}

.site-footer__brand p {
  max-width: 390px;
  margin: 16px 0 0;
  color: #8e8799;
  font-size: 13px;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 17px 30px;
  max-width: 500px;
  padding-top: 13px;
}

.site-footer__nav a {
  color: #aaa3b6;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-footer__nav a:hover { color: #fff; }

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 22px;
  border-top: 1px solid var(--swx-border);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
}

.site-footer__bottom p { margin: 0; }

/* Native support widget */
.swx-support {
  position: fixed;
  z-index: 1200;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 12px;
  font-family: var(--swx-font);
}

.swx-support__panel[hidden] {
  display: none !important;
}

.swx-support__panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: min(350px, calc(100vw - 30px));
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(103, 221, 255, 0.12), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(255, 94, 168, 0.09), transparent 32%),
    rgba(19, 13, 32, 0.97);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.48), inset 0 1px rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transform-origin: right bottom;
  animation: swx-support-in 0.2s ease-out both;
}

.swx-support__panel::before {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 1px;
  background: var(--swx-gradient);
  content: "";
  opacity: 0.72;
}

@keyframes swx-support-in {
  from { opacity: 0; transform: translateY(9px) scale(0.97); }
  to { opacity: 1; transform: none; }
}

.swx-support__panel-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
}

.swx-support__status {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(112, 228, 162, 0.22);
  border-radius: 13px;
  background: rgba(112, 228, 162, 0.08);
}

.swx-support__status span {
  width: 9px;
  height: 9px;
  border: 2px solid rgba(112, 228, 162, 0.23);
  border-radius: 50%;
  background: var(--swx-green);
  box-shadow: 0 0 13px rgba(112, 228, 162, 0.72);
}

.swx-support__panel-head p,
.swx-support__panel-head h2 {
  margin: 0;
}

.swx-support__panel-head p {
  color: var(--swx-green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.swx-support__panel-head h2 {
  margin-top: 3px;
  color: #fff;
  font-size: 16px;
  font-weight: 780;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.swx-support__close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--swx-border);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  color: #aaa2b6;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.swx-support__close svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.swx-support__close:hover {
  border-color: rgba(255, 94, 168, 0.35);
  background: rgba(255, 94, 168, 0.09);
  color: #fff;
}

.swx-support__intro {
  margin: 17px 0 15px;
  color: #9e97aa;
  font-size: 12px;
  line-height: 1.6;
}

.swx-support__links {
  display: grid;
  gap: 8px;
}

.swx-support__link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  min-height: 62px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
  color: #fff;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.swx-support__link:hover {
  border-color: rgba(128, 93, 255, 0.36);
  background: rgba(128, 93, 255, 0.08);
  color: #fff;
  transform: translateX(-2px);
}

.swx-support__link-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
}

.swx-support__link-icon svg,
.swx-support__arrow {
  width: 20px;
  height: 20px;
}

.swx-support__link-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.swx-support__link--mail .swx-support__link-icon {
  background: rgba(255, 94, 168, 0.11);
  color: #ff83bb;
}

.swx-support__link--telegram .swx-support__link-icon {
  background: rgba(42, 171, 238, 0.12);
  color: #5fc8ff;
}

.swx-support__link--telegram .swx-support__link-icon svg {
  fill: currentColor;
  stroke: none;
}

.swx-support__link--instagram .swx-support__link-icon {
  background: linear-gradient(145deg, rgba(255, 94, 168, 0.15), rgba(128, 93, 255, 0.13));
  color: #df8cff;
}

.swx-support__link--instagram .swx-support__icon-dot {
  fill: currentColor;
  stroke: none;
}

.swx-support__link strong,
.swx-support__link small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.swx-support__link strong {
  color: #f6f2fb;
  font-size: 12px;
  line-height: 1.35;
}

.swx-support__link small {
  margin-top: 2px;
  color: #8f879b;
  font-size: 10px;
  line-height: 1.4;
}

.swx-support__arrow {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #726b7e;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s ease, transform 0.2s ease;
}

.swx-support__link:hover .swx-support__arrow {
  stroke: var(--swx-cyan);
  transform: translateX(2px);
}

.swx-support__note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 15px 0 0;
  color: #fff;
  font-size: 9px;
  line-height: 1.4;
}

.swx-support__note span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--swx-green);
}

.swx-support__trigger {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  gap: 10px;
  padding: 6px 7px 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(18, 12, 31, 0.94);
  color: #fff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35), inset 0 1px rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.swx-support__trigger:hover,
.swx-support.is-open .swx-support__trigger {
  border-color: rgba(128, 93, 255, 0.5);
  box-shadow: 0 18px 43px rgba(37, 24, 71, 0.44), inset 0 1px rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.swx-support__trigger-label {
  font-size: 12px;
  font-weight: 800;
}

.swx-support__trigger-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #d755bd, #7963f3 54%, #54c7f3);
  color: #fff;
  box-shadow: 0 8px 21px rgba(128, 93, 255, 0.32);
}

.swx-support__trigger-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.swx-support__trigger-icon i {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border: 2px solid #171023;
  border-radius: 50%;
  background: var(--swx-green);
  box-shadow: 0 0 10px rgba(112, 228, 162, 0.62);
}

@media (max-width: 680px) {
  .swx-support {
    right: 15px;
    bottom: 15px;
  }

  .swx-support__panel {
    right: 0;
    bottom: 64px;
    padding: 19px;
    border-radius: 21px;
  }

  .swx-support__trigger {
    min-height: 50px;
    padding: 5px 6px 5px 13px;
    border-radius: 16px;
  }

  .swx-support__trigger-icon {
    width: 39px;
    height: 39px;
    border-radius: 12px;
  }
}

.store-notices {
  position: relative;
  z-index: 10;
  padding-top: 100px;
}

.store-notices:empty { display: none; }

/* Standard pages and WooCommerce */
.content-shell {
  min-height: 70vh;
  padding: 138px 0 90px;
  background:
    radial-gradient(circle at 50% 0, rgba(128, 93, 255, 0.11), transparent 30%),
    var(--swx-bg);
}

.content-shell__inner { max-width: 1040px; }

.content-card {
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid var(--swx-border);
  border-radius: var(--swx-radius);
  background: rgba(23, 16, 36, 0.92);
  box-shadow: var(--swx-shadow);
}

.content-card h1 {
  margin: 0 0 28px;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.content-card h2,
.content-card h3 { letter-spacing: -0.03em; }
.content-card p,
.content-card li { color: #b3acbe; }
.content-card a:not(.button):not(.wp-element-button) { color: var(--swx-cyan); }

.woocommerce .woocommerce-breadcrumb,
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering { color: #9d96a8; }

.woocommerce span.onsale {
  min-width: auto;
  min-height: auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--swx-purple);
  line-height: 1.2;
}

.woocommerce ul.products li.product {
  padding: 16px;
  border: 1px solid var(--swx-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.woocommerce ul.products li.product a img { border-radius: 13px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { color: #fff; }
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: var(--swx-cyan); }

.woocommerce div.product div.images img { border-radius: 18px; }

.woocommerce table.shop_table,
.wc-block-cart-items,
.wc-block-components-sidebar-layout .wc-block-components-main,
.wc-block-components-sidebar {
  border-color: var(--swx-border) !important;
  color: var(--swx-text);
}

.woocommerce table.shop_table {
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td { border-color: var(--swx-border); }

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single,
.wc-block-components-text-input input,
.wc-blocks-components-select .wc-blocks-components-select__select,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
  min-height: 50px;
  border: 1px solid var(--swx-border-strong) !important;
  border-radius: 12px !important;
  background: #100b1c !important;
  color: #fff !important;
}

.woocommerce form .form-row textarea { min-height: 120px; padding: 14px; }
.woocommerce form .form-row label,
.wc-block-components-text-input label { color: #bcb5c8 !important; }

.select2-dropdown {
  border-color: var(--swx-border-strong);
  background: #151022;
  color: #fff;
}

.select2-container--default .select2-results__option[aria-selected="true"] { background: #24193b; }
.select2-container--default .select2-results__option--highlighted[aria-selected] { background: var(--swx-purple); }

.woocommerce-checkout #payment {
  border: 1px solid var(--swx-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.woocommerce-checkout #payment div.payment_box { background: #241a36; color: #cbc4d5; }
.woocommerce-checkout #payment div.payment_box::before { border-bottom-color: #241a36; }

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row {
  float: none;
  width: auto;
  padding: 0;
  margin: 0;
}

.woocommerce-checkout #billing_email_field {
  grid-column: 1 / -1;
}

.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce-checkout .woocommerce-shipping-fields {
  display: none;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper label {
  color: #e3ddec;
  font-size: 13px;
  font-weight: 700;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper label .required {
  color: var(--swx-pink);
}

/* Premium checkout */
.woocommerce-checkout .content-shell {
  background:
    radial-gradient(circle at 13% 7%, rgba(255, 94, 168, 0.075), transparent 25%),
    radial-gradient(circle at 88% 5%, rgba(103, 221, 255, 0.07), transparent 27%),
    var(--swx-bg);
}

.woocommerce-checkout .content-shell__inner {
  max-width: 1180px;
}

.woocommerce-checkout .content-card {
  padding: clamp(25px, 4vw, 46px);
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(23, 16, 36, 0.97), rgba(15, 10, 27, 0.985));
}

.checkout-page-heading {
  padding-bottom: 29px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--swx-border);
}

.checkout-page-heading__top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 17px;
}

.checkout-page-heading__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(128, 93, 255, 0.35);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(255, 94, 168, 0.13), rgba(103, 221, 255, 0.1));
  color: var(--swx-cyan);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 13px 30px rgba(0, 0, 0, 0.2);
}

.checkout-page-heading__icon svg {
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checkout-page-heading__copy p,
.checkout-page-heading__copy h1 {
  margin: 0;
}

.checkout-page-heading__copy p {
  background: var(--swx-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.checkout-page-heading__copy h1 {
  margin-top: 2px;
  color: #fff;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 790;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.checkout-page-heading__copy > span {
  display: block;
  margin-top: 4px;
  color: #9f98ac;
  font-size: 12px;
}

.checkout-page-heading__secure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(112, 228, 162, 0.2);
  border-radius: 12px;
  background: rgba(112, 228, 162, 0.07);
  color: #acefc8;
  font-size: 11px;
  font-weight: 750;
  white-space: nowrap;
}

.checkout-page-heading__secure svg {
  stroke: var(--swx-green);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checkout-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, 640px);
  padding: 3px 28px 0;
  margin: 28px auto 0;
  list-style: none;
}

.checkout-steps::before {
  position: absolute;
  z-index: 0;
  top: 15px;
  right: 15%;
  left: 15%;
  height: 1px;
  background: rgba(255, 255, 255, 0.11);
  content: "";
}

.checkout-steps li {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  color: #756e80;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.checkout-steps li span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid var(--swx-border-strong);
  border-radius: 10px;
  background: #151020;
  color: #857e90;
  font-size: 10px;
}

.checkout-steps li.is-complete,
.checkout-steps li.is-active {
  color: #c9c2d3;
}

.checkout-steps li.is-complete span {
  border-color: rgba(112, 228, 162, 0.3);
  background: rgba(112, 228, 162, 0.09);
  color: var(--swx-green);
}

.checkout-steps li.is-active span {
  border-color: rgba(128, 93, 255, 0.5);
  background: linear-gradient(145deg, rgba(255, 94, 168, 0.25), rgba(128, 93, 255, 0.25));
  color: #fff;
  box-shadow: 0 8px 20px rgba(128, 93, 255, 0.18);
}

.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  grid-template-areas:
    "express express"
    "separator separator"
    "customer review-heading"
    "customer review";
  align-items: start;
  gap: 0 24px;
}

.woocommerce-checkout form.checkout > wc-order-attribution-inputs {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.woocommerce-checkout #wc-stripe-express-checkout-element {
  grid-area: express;
  padding: 13px;
  margin: 0 0 8px !important;
  border: 1px solid rgba(112, 228, 162, 0.12);
  border-radius: 16px;
  background: rgba(112, 228, 162, 0.025);
}

.woocommerce-checkout #wc-stripe-express-checkout-button-separator {
  grid-area: separator;
  margin: 10px 0 25px !important;
  color: #867f91;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.woocommerce-checkout #customer_details {
  grid-area: customer;
  width: 100%;
}

.woocommerce-checkout #customer_details .col-1 {
  float: none;
  width: 100%;
}

.woocommerce-checkout #customer_details .col-2 {
  display: none;
}

.woocommerce-checkout .woocommerce-billing-fields {
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(128, 93, 255, 0.11), transparent 34%),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.13);
}

.woocommerce-checkout .woocommerce-billing-fields > h3,
.woocommerce-checkout #order_review_heading {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-size: 19px;
  font-weight: 780;
  letter-spacing: -0.03em;
}

.woocommerce-checkout .woocommerce-billing-fields > h3 {
  margin: 0 0 23px;
}

.woocommerce-checkout .woocommerce-billing-fields > h3::before,
.woocommerce-checkout #order_review_heading::before {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 4px;
  background: var(--swx-gradient);
  box-shadow: 0 0 17px rgba(128, 93, 255, 0.48);
  content: "";
}

.woocommerce-checkout #order_review_heading {
  grid-area: review-heading;
  padding: 0 4px;
  margin: 0 0 14px;
}

.woocommerce-checkout #order_review {
  grid-area: review;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(103, 221, 255, 0.075), transparent 33%),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.13);
}

.woocommerce-checkout #order_review .blockUI.blockOverlay {
  border-radius: 20px !important;
  background: #120c20 !important;
  opacity: 0.58 !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table {
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid var(--swx-border);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 15px;
  background: rgba(9, 6, 17, 0.3);
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table th,
.woocommerce-checkout table.woocommerce-checkout-review-order-table td {
  padding: 14px 15px;
  border-color: var(--swx-border);
  color: #d9d3e2;
  font-size: 12px;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table thead {
  background: linear-gradient(90deg, rgba(128, 93, 255, 0.09), rgba(103, 221, 255, 0.025));
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table thead th {
  color: #eee9f4;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table td:last-child,
.woocommerce-checkout table.woocommerce-checkout-review-order-table th:last-child {
  text-align: right;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table .product-quantity {
  color: #8f879b;
  font-weight: 700;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table .order-total th {
  color: #fff;
  font-size: 14px;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table .order-total td strong {
  background: var(--swx-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 19px;
}

.woocommerce-checkout #payment {
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(9, 6, 17, 0.35);
}

.woocommerce-checkout #payment ul.payment_methods {
  padding: 19px;
  border-bottom-color: var(--swx-border);
}

.woocommerce-checkout #payment ul.payment_methods li > label {
  color: #fff;
  font-size: 13px;
  font-weight: 750;
}

.woocommerce-checkout #payment ul.payment_methods li > label img {
  max-height: 22px;
  margin-left: 8px;
}

.woocommerce-checkout #payment div.payment_box {
  padding: 15px;
  margin: 14px 0 0;
  border: 1px solid var(--swx-border);
  border-radius: 13px;
  background: #100a1c;
}

.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: #100a1c;
}

.woocommerce-checkout #payment .form-row.place-order {
  padding: 18px;
}

.woocommerce-checkout #place_order {
  float: none;
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(105deg, #d654bd, #8063f4 52%, #5bcdf6) !important;
  color: #fff !important;
  font-size: 15px;
  font-weight: 850;
  box-shadow: 0 14px 34px rgba(128, 93, 255, 0.24);
}

.woocommerce-checkout #place_order:hover {
  box-shadow: 0 18px 42px rgba(128, 93, 255, 0.36);
  transform: translateY(-2px);
}

@media (max-width: 920px) {
  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "express"
      "separator"
      "customer"
      "review-heading"
      "review";
    gap: 0;
  }

  .woocommerce-checkout #order_review_heading {
    margin-top: 25px;
  }
}

@media (max-width: 520px) {
  .woocommerce-checkout .content-card,
  .woocommerce-checkout form.checkout,
  .woocommerce-checkout form.checkout > *,
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review,
  .woocommerce-checkout #payment {
    min-width: 0;
    max-width: 100%;
  }

  .woocommerce-checkout form.checkout {
    grid-template-columns: minmax(0, 1fr);
  }

  .checkout-page-heading__top {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 13px;
  }

  .checkout-page-heading__secure {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 4px;
  }

  .checkout-page-heading__icon {
    width: 47px;
    height: 47px;
    border-radius: 14px;
  }

  .checkout-page-heading__copy h1 {
    font-size: 27px;
  }

  .checkout-page-heading__copy > span {
    font-size: 11px;
    line-height: 1.5;
  }

  .checkout-steps {
    width: 100%;
    padding: 0;
    margin: 25px 0 0;
  }

  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .woocommerce-checkout #billing_email_field {
    grid-column: auto;
  }

  .woocommerce-checkout .woocommerce-billing-fields,
  .woocommerce-checkout #order_review {
    width: 100%;
    padding: 19px 15px;
    border-radius: 17px;
  }

  .woocommerce-checkout #payment div.payment_box,
  .woocommerce-checkout #payment .payment_method_stripe,
  .woocommerce-checkout #payment .wc-stripe-elements-field {
    min-width: 0;
    max-width: 100%;
  }
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  border-top-color: var(--swx-purple);
  border-radius: 12px;
  background: #1b132b;
  color: #eeeaf5;
}

.woocommerce-message::before,
.woocommerce-info::before { color: var(--swx-cyan); }
.woocommerce-error::before { color: var(--swx-pink); }

.wc-block-components-product-name,
.wc-block-components-totals-item__label,
.wc-block-components-totals-item__value { color: #fff !important; }
.wc-block-components-order-summary .wc-block-components-order-summary-item__description p,
.wc-block-components-product-metadata { color: #9d96aa !important; }

/* Premium cart */
.woocommerce-cart .content-shell {
  background:
    radial-gradient(circle at 80% 6%, rgba(103, 221, 255, 0.07), transparent 27%),
    radial-gradient(circle at 18% 15%, rgba(128, 93, 255, 0.12), transparent 30%),
    var(--swx-bg);
}

.woocommerce-cart .content-shell__inner {
  max-width: 1120px;
}

.woocommerce-cart .content-card {
  padding: clamp(24px, 4.2vw, 46px);
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(23, 16, 36, 0.97), rgba(15, 10, 27, 0.98));
}

.cart-page-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 0 0 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--swx-border);
}

.cart-page-heading__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(128, 93, 255, 0.34);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(255, 94, 168, 0.14), rgba(103, 221, 255, 0.1));
  color: var(--swx-cyan);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 13px 30px rgba(0, 0, 0, 0.2);
}

.cart-page-heading__copy p {
  margin: 0 0 2px;
  background: var(--swx-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.cart-page-heading__copy h1 {
  margin: 0 0 3px;
  color: #fff;
  font-size: clamp(27px, 3vw, 37px);
  font-weight: 790;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.cart-page-heading__copy > span {
  display: block;
  color: #9f98ac;
  font-size: 12px;
}

.cart-page-heading__secure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(112, 228, 162, 0.18);
  border-radius: 12px;
  background: rgba(112, 228, 162, 0.07);
  color: #acefc8;
  font-size: 11px;
  font-weight: 750;
  white-space: nowrap;
}

.cart-page-heading__secure svg {
  stroke: var(--swx-green);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.woocommerce-cart .woocommerce-notices-wrapper {
  margin: 0 0 26px;
}

.woocommerce-cart .woocommerce-message {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 17px 18px 17px 65px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(103, 221, 255, 0.25);
  border-top: 1px solid rgba(103, 221, 255, 0.25);
  border-radius: 18px;
  background:
    radial-gradient(circle at 8% 0%, rgba(103, 221, 255, 0.1), transparent 30%),
    linear-gradient(110deg, rgba(24, 20, 43, 0.96), rgba(18, 13, 31, 0.96));
  color: #eee9f4;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
  box-shadow: inset 3px 0 var(--swx-cyan), inset 0 1px rgba(255, 255, 255, 0.05), 0 16px 38px rgba(0, 0, 0, 0.16);
}

.woocommerce-cart .woocommerce-message:focus,
.woocommerce-cart .woocommerce-message:focus-visible {
  outline: 2px solid rgba(103, 221, 255, 0.34);
  outline-offset: 3px;
}

.woocommerce-cart .woocommerce-message::before {
  top: 50%;
  left: 20px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(112, 228, 162, 0.25);
  border-radius: 11px;
  background: rgba(112, 228, 162, 0.09);
  color: var(--swx-green);
  font-size: 13px;
  line-height: 1;
  transform: translateY(-50%);
}

.woocommerce-cart .woocommerce-message .button.wc-forward {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  float: none;
  min-height: 44px;
  padding: 10px 17px;
  margin: 0 0 0 auto;
  border: 1px solid rgba(128, 93, 255, 0.35);
  border-radius: 12px;
  background: linear-gradient(105deg, rgba(214, 84, 189, 0.16), rgba(91, 205, 246, 0.12)) !important;
  color: #fff !important;
  font-size: 12px;
  font-weight: 800;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.woocommerce-cart .woocommerce-message .button.wc-forward:hover {
  border-color: rgba(103, 221, 255, 0.5);
  background: linear-gradient(105deg, rgba(214, 84, 189, 0.27), rgba(91, 205, 246, 0.22)) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.woocommerce-cart .swx-empty-cart {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 390px;
  padding: 52px 28px 46px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 4%, rgba(128, 93, 255, 0.16), transparent 39%),
    linear-gradient(145deg, rgba(34, 24, 52, 0.82), rgba(14, 9, 25, 0.92));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.045), 0 24px 60px rgba(0, 0, 0, 0.18);
  text-align: center;
}

.woocommerce-cart .swx-empty-cart::before,
.woocommerce-cart .swx-empty-cart::after {
  position: absolute;
  border: 1px solid rgba(128, 93, 255, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.woocommerce-cart .swx-empty-cart::before {
  top: -210px;
  left: 50%;
  width: 440px;
  height: 440px;
  transform: translateX(-50%);
}

.woocommerce-cart .swx-empty-cart::after {
  top: -142px;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translateX(-50%);
}

.swx-empty-cart__glow {
  position: absolute;
  top: 22px;
  left: 50%;
  width: 160px;
  height: 100px;
  border-radius: 50%;
  background: rgba(103, 221, 255, 0.13);
  filter: blur(44px);
  pointer-events: none;
  transform: translateX(-50%);
}

.swx-empty-cart__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(128, 93, 255, 0.38);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(255, 94, 168, 0.16), rgba(103, 221, 255, 0.1));
  color: var(--swx-cyan);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.09), 0 18px 42px rgba(0, 0, 0, 0.25);
}

.swx-empty-cart__icon svg {
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.woocommerce-cart .swx-empty-cart__eyebrow {
  position: relative;
  z-index: 1;
  margin: 20px 0 5px;
  background: var(--swx-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.woocommerce-cart .swx-empty-cart h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.woocommerce-cart .swx-empty-cart__description {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 12px auto 0;
  color: #aaa2b6;
  font-size: 14px;
  line-height: 1.7;
}

.woocommerce-cart .woocommerce .swx-empty-cart__button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 230px;
  min-height: 57px;
  padding: 14px 25px;
  margin-top: 24px;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(105deg, #d654bd, #8063f4 52%, #5bcdf6) !important;
  color: #fff !important;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 15px 36px rgba(128, 93, 255, 0.28);
}

.woocommerce-cart .woocommerce .swx-empty-cart__button:hover {
  color: #fff !important;
  box-shadow: 0 20px 44px rgba(128, 93, 255, 0.4);
  transform: translateY(-2px);
}

.swx-empty-cart__benefits {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.content-card .swx-empty-cart__benefits li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #8f879b;
  font-size: 11px;
  font-weight: 700;
}

.swx-empty-cart__benefits li span {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border: 1px solid rgba(112, 228, 162, 0.25);
  border-radius: 7px;
  background: rgba(112, 228, 162, 0.08);
  color: var(--swx-green);
  font-size: 10px;
}

.woocommerce-cart .woocommerce-cart-form {
  position: relative;
}

.woocommerce-cart .woocommerce-cart-form::before {
  position: absolute;
  z-index: 2;
  top: -1px;
  right: 24px;
  left: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(128, 93, 255, 0.48), transparent);
  content: "";
  pointer-events: none;
}

.woocommerce-cart .woocommerce table.shop_table.cart {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.018);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.13);
}

.woocommerce-cart .woocommerce table.shop_table.cart thead {
  background: linear-gradient(90deg, rgba(128, 93, 255, 0.1), rgba(103, 221, 255, 0.035));
}

.woocommerce-cart .woocommerce table.shop_table.cart thead th {
  padding: 18px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #d9d3e3;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.woocommerce-cart .woocommerce table.shop_table.cart tbody td {
  padding: 17px 14px;
  border-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  color: #f5f1fb;
  vertical-align: middle;
}

.woocommerce-cart .woocommerce table.shop_table.cart .product-thumbnail {
  width: 78px;
}

.woocommerce-cart .woocommerce table.shop_table.cart .product-thumbnail img {
  width: 56px;
  min-width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.25);
}

.woocommerce-cart .woocommerce table.shop_table.cart .product-name a {
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.woocommerce-cart .woocommerce table.shop_table.cart .product-name a:hover {
  color: var(--swx-cyan);
}

.woocommerce-cart .woocommerce table.shop_table.cart .product-price,
.woocommerce-cart .woocommerce table.shop_table.cart .product-subtotal {
  color: #fff;
  font-size: 14px;
  font-weight: 750;
}

.woocommerce-cart .woocommerce table.shop_table.cart .product-subtotal {
  color: #aeefff;
}

.woocommerce-cart .woocommerce table.shop_table.cart td.product-remove {
  width: 58px;
  padding-left: 18px;
}

.woocommerce-cart .woocommerce a.remove {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 94, 168, 0.2);
  border-radius: 10px;
  background: rgba(255, 94, 168, 0.07);
  color: #ff7db8 !important;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.woocommerce-cart .woocommerce a.remove:hover {
  border-color: rgba(255, 94, 168, 0.52);
  background: rgba(255, 94, 168, 0.16);
  color: #fff !important;
  transform: scale(1.05);
}

.woocommerce-cart .woocommerce .quantity .qty {
  width: 68px;
  min-height: 42px;
  padding: 8px;
  border: 1px solid var(--swx-border-strong);
  border-radius: 11px;
  background: #100a1c;
  color: #fff;
  text-align: center;
}

.woocommerce-cart .woocommerce table.shop_table.cart td.actions {
  padding: 16px 18px !important;
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.025);
}

.woocommerce-cart .woocommerce table.shop_table.cart td.actions .button[name="update_cart"] {
  min-width: 166px;
  min-height: 48px;
  border: 1px solid rgba(128, 93, 255, 0.52) !important;
  border-radius: 13px;
  background: linear-gradient(105deg, #d053ba, #7466df 58%, #55b7e5) !important;
  color: #fff !important;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.01em;
  opacity: 1 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
  box-shadow: 0 10px 26px rgba(128, 93, 255, 0.2);
}

.woocommerce-cart .woocommerce table.shop_table.cart td.actions .button[name="update_cart"]:disabled,
.woocommerce-cart .woocommerce table.shop_table.cart td.actions .button[name="update_cart"].disabled {
  border-color: rgba(180, 167, 213, 0.3) !important;
  background: linear-gradient(145deg, #3c344d, #302a40) !important;
  color: #e8e3f1 !important;
  opacity: 1 !important;
  cursor: not-allowed;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 8px 20px rgba(0, 0, 0, 0.16);
}

.woocommerce-cart .woocommerce table.shop_table.cart td.actions .button[name="update_cart"]:not(:disabled):hover {
  border-color: rgba(103, 221, 255, 0.64) !important;
  box-shadow: 0 14px 32px rgba(128, 93, 255, 0.3);
}

.woocommerce-cart .cart-collaterals {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}

.woocommerce-cart .cart-collaterals .cart_totals {
  float: none;
  width: min(100%, 510px);
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(128, 93, 255, 0.13), transparent 36%),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.woocommerce-cart .cart-collaterals .cart_totals h2 {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  color: #fff;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.woocommerce-cart .cart-collaterals .cart_totals h2::before {
  width: 10px;
  height: 10px;
  border-radius: 4px;
  background: var(--swx-gradient);
  box-shadow: 0 0 18px rgba(128, 93, 255, 0.5);
  content: "";
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table {
  margin: 0 0 19px;
  overflow: hidden;
  border: 1px solid var(--swx-border);
  border-radius: 14px;
  background: rgba(9, 6, 17, 0.26);
}

.woocommerce-cart .cart-collaterals .cart_totals table th,
.woocommerce-cart .cart-collaterals .cart_totals table td {
  padding: 15px 16px;
  border-color: var(--swx-border);
  color: #d8d2e1;
  font-size: 13px;
}

.woocommerce-cart .cart-collaterals .cart_totals table td {
  color: #fff;
  text-align: right;
}

.woocommerce-cart .cart-collaterals .order-total th,
.woocommerce-cart .cart-collaterals .order-total td {
  color: #fff;
  font-size: 15px;
}

.woocommerce-cart .cart-collaterals .order-total td strong {
  background: var(--swx-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 19px;
}

.woocommerce-cart .wc-proceed-to-checkout {
  padding: 0;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  width: 100%;
  min-height: 60px;
  margin: 0;
  border-radius: 15px;
  font-size: 15px;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 34px rgba(128, 93, 255, 0.25);
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button::after {
  margin-left: 11px;
  content: "→";
  font-size: 19px;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  box-shadow: 0 18px 42px rgba(128, 93, 255, 0.36);
}

@media (max-width: 768px) {
  .cart-page-heading {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .cart-page-heading__secure {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 3px;
  }

  .woocommerce-cart .woocommerce table.shop_table.cart {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .woocommerce-cart .woocommerce table.shop_table.cart tbody {
    display: grid;
    gap: 14px;
  }

  .woocommerce-cart .woocommerce table.shop_table.cart tr.cart_item {
    display: grid;
    grid-template-columns: 40px 70px minmax(0, 1fr);
    align-items: center;
    gap: 2px 10px;
    padding: 14px;
    border: 1px solid var(--swx-border);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.025);
  }

  .woocommerce-cart .woocommerce table.shop_table.cart tr.cart_item td {
    width: auto;
    padding: 5px 0;
    border: 0;
    text-align: left !important;
  }

  .woocommerce-cart .woocommerce table.shop_table.cart tr.cart_item td::before {
    display: none;
  }

  .woocommerce-cart .woocommerce table.shop_table.cart td.product-remove {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .woocommerce-cart .woocommerce table.shop_table.cart td.product-thumbnail {
    display: block;
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .woocommerce-cart .woocommerce table.shop_table.cart td.product-name {
    grid-column: 3;
    grid-row: 1;
  }

  .woocommerce-cart .woocommerce table.shop_table.cart td.product-price {
    grid-column: 3;
    grid-row: 2;
    color: #b8b1c3;
    font-size: 12px;
  }

  .woocommerce-cart .woocommerce table.shop_table.cart td.product-price::before {
    display: inline;
    float: none;
    margin-right: 5px;
    color: #817a8d;
    content: attr(data-title) ":";
  }

  .woocommerce-cart .woocommerce table.shop_table.cart td.product-quantity {
    grid-column: 2 / 4;
    grid-row: 3;
  }

  .woocommerce-cart .woocommerce table.shop_table.cart td.product-quantity:has(input[type="hidden"]) {
    display: none;
  }

  .woocommerce-cart .woocommerce table.shop_table.cart td.product-subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-column: 1 / -1;
    grid-row: 4;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px solid var(--swx-border);
  }

  .woocommerce-cart .woocommerce table.shop_table.cart td.product-subtotal::before {
    display: inline;
    float: none;
    color: #9d96a8;
    content: attr(data-title);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .woocommerce-cart .woocommerce table.shop_table.cart tr:last-child {
    display: block;
  }

  .woocommerce-cart .woocommerce table.shop_table.cart td.actions {
    display: block;
    padding: 0 !important;
    background: transparent;
  }

  .woocommerce-cart .woocommerce table.shop_table.cart td.actions .button[name="update_cart"] {
    width: 100%;
    margin-top: 2px;
  }

  .woocommerce-cart .cart-collaterals,
  .woocommerce-cart .cart-collaterals .cart_totals {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .woocommerce-cart .content-card {
    padding: 19px 14px;
  }

  .cart-page-heading {
    gap: 13px;
    padding-bottom: 22px;
    margin-bottom: 22px;
  }

  .cart-page-heading__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .cart-page-heading__copy h1 {
    font-size: 27px;
  }

  .cart-page-heading__copy > span {
    font-size: 11px;
    line-height: 1.5;
  }

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

  .woocommerce-cart .woocommerce-message {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding: 58px 17px 17px;
    border-radius: 16px;
    font-size: 13px;
  }

  .woocommerce-cart .woocommerce-message::before {
    top: 16px;
    left: 17px;
    transform: none;
  }

  .woocommerce-cart .woocommerce-message .button.wc-forward {
    width: 100%;
    margin: 0;
  }

  .woocommerce-cart .swx-empty-cart {
    min-height: 370px;
    padding: 42px 18px 36px;
    border-radius: 19px;
  }

  .swx-empty-cart__icon {
    width: 72px;
    height: 72px;
    border-radius: 21px;
  }

  .woocommerce-cart .swx-empty-cart h2 {
    font-size: 28px;
  }

  .woocommerce-cart .woocommerce .swx-empty-cart__button {
    width: 100%;
    min-width: 0;
  }

  .swx-empty-cart__benefits {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(390px, 0.8fr); gap: 48px; }
  .player-card { right: 0; }
  .floating-card--one { left: -4px; }
  .floating-card--two { right: -5px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-card--large { grid-column: span 2; }
  .price-card { padding: 28px; }
}

@media (max-width: 900px) {
  .admin-bar .site-header { top: 46px; }
  .site-header__inner { grid-template-columns: 1fr auto auto; gap: 12px; }
  .menu-toggle { display: block; order: 2; }
  .site-header__cart { order: 3; }
  .site-nav {
    position: fixed;
    z-index: 999;
    top: 82px;
    right: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 18px 20px 25px;
    border-bottom: 1px solid var(--swx-border);
    background: rgba(11, 7, 20, 0.97);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .admin-bar .site-nav { top: 128px; }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav a { padding: 13px 10px; border-bottom: 1px solid var(--swx-border); font-size: 15px; }
  .site-nav a::after { display: none; }
  .menu-toggle[aria-expanded="true"] span:not(.screen-reader-text):first-of-type { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:not(.screen-reader-text):nth-of-type(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:not(.screen-reader-text):last-of-type { transform: translateY(-6px) rotate(-45deg); }
  .hero { padding-top: 145px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { max-width: 720px; }
  .hero-visual { width: min(100%, 590px); margin: 5px auto 0; }
  .proof-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .proof-strip__grid > div:nth-child(2) { border-right: 0; }
  .proof-strip__grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--swx-border); }
  .section-heading--split { grid-template-columns: 1fr; gap: 20px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .price-card { padding: 35px; }
  .faq__grid { grid-template-columns: 1fr; gap: 50px; }
  .final-cta__inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  .swx-container { width: min(calc(100% - 30px), var(--swx-container)); }
  .site-header { height: 72px; }
  .brand__mark,
  .brand__fallback { width: 37px; height: 37px; border-radius: 10px; }
  .brand__text { font-size: 16px; }
  .swx-cart { min-height: 42px; padding: 8px 9px; }
  .swx-cart__label { display: none; }
  .site-nav { top: 72px; }
  .admin-bar .site-nav { top: 118px; }
  .hero { min-height: auto; padding: 125px 0 80px; }
  .hero h1 { font-size: clamp(46px, 14vw, 66px); }
  .hero__lead { margin-top: 22px; font-size: 16px; }
  .hero__actions { margin-top: 29px; }
  .hero__actions .button { flex: 1 1 auto; }
  .hero__trust { gap: 14px; }
  .hero-visual { min-height: 420px; margin-top: -5px; }
  .hero-visual__orb { top: 50px; width: 320px; height: 320px; }
  .player-card { top: 55px; left: 50%; width: 92%; min-height: 310px; padding: 13px; transform: translateX(-50%) perspective(1200px) rotateY(-4deg); }
  .player-card__screen { min-height: 210px; }
  .play-mark { top: 28px; width: 85px; }
  .player-card__screen p { margin-bottom: 23px; }
  .floating-card { min-width: 155px; padding: 10px 12px; }
  .floating-card > span { width: 32px; height: 32px; }
  .floating-card--one { top: 27px; left: -2px; }
  .floating-card--two { right: -1px; bottom: 5px; }
  .proof-strip__grid > div { min-height: 90px; padding: 18px; }
  .section { padding: 88px 0; }
  .section-heading h2,
  .final-cta h2 { font-size: 40px; }
  .benefit-grid { grid-template-columns: 1fr; margin-top: 42px; }
  .benefit-card--large { grid-column: auto; }
  .benefit-card { min-height: 320px; padding: 25px; }
  .benefit-card--large { min-height: 365px; }
  .mini-player { top: 92px; right: -45px; }
  .pricing-grid { margin-top: 44px; }
  .price-card { padding: 27px; }
  .process-grid { grid-template-columns: 1fr; gap: 42px; margin-top: 45px; }
  .process-grid::before { top: 40px; bottom: 40px; left: 50%; width: 1px; height: auto; border-top: 0; border-left: 1px dashed rgba(128, 93, 255, 0.28); }
  .process-grid article { padding: 0 22px; background: var(--swx-bg); }
  .faq-list summary { min-height: 75px; font-size: 14px; }
  .faq-list details p { padding-right: 20px; }
  .final-cta { padding-bottom: 60px; }
  .final-cta__inner { min-height: 360px; padding: 42px 28px; border-radius: 26px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 25px; padding-block: 50px 35px; }
  .site-footer__nav { justify-content: flex-start; padding-top: 0; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .content-shell { padding-top: 110px; }
  .content-card { padding: 24px 18px; }
}

@media (max-width: 420px) {
  .brand { gap: 8px; }
  .brand__text { font-size: 14px; white-space: nowrap; }
  .brand__text strong { display: inline; }
  .site-header__inner { grid-template-columns: minmax(0, 1fr) auto auto; gap: 7px; }
  .hero h1 { font-size: clamp(43px, 12.5vw, 50px); }
  .hero__actions { display: grid; grid-template-columns: 1fr; }
  .hero__actions .button { width: 100%; }
  .proof-strip__grid { grid-template-columns: 1fr; }
  .proof-strip__grid > div,
  .proof-strip__grid > div:first-child { border-right: 0; border-left: 0; border-bottom: 1px solid var(--swx-border); }
  .proof-strip__grid > div:last-child { border-bottom: 0; }
  .hero__actions { flex-direction: column; }
  .hero__trust { flex-direction: column; }
  .floating-card--two { display: none; }
  .price-card__badge { top: 16px; right: 16px; }
}

/* Digital Premium order confirmation */
.woocommerce-order-received .content-shell {
  padding-top: 118px;
  background:
    radial-gradient(circle at 18% 6%, rgba(211, 87, 190, 0.12), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(90, 199, 255, 0.1), transparent 30%),
    var(--swx-bg);
}

.woocommerce-order-received .content-shell__inner { max-width: 1180px; }

.woocommerce-order-received .content-card {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.swx-thankyou {
  display: grid;
  gap: 24px;
  color: var(--swx-text);
}

.swx-thankyou__hero {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(123, 105, 159, 0.34);
  border-radius: 28px;
  background:
    linear-gradient(118deg, rgba(41, 25, 59, 0.98), rgba(19, 15, 34, 0.98)),
    var(--swx-bg-soft);
  box-shadow: 0 25px 70px rgba(4, 2, 12, 0.32);
}

.swx-thankyou__hero-glow {
  position: absolute;
  top: -90px;
  right: -50px;
  width: 330px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 211, 255, 0.2), rgba(122, 91, 255, 0.1) 44%, transparent 70%);
  filter: blur(4px);
  pointer-events: none;
}

.swx-thankyou__success-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(100, 238, 190, 0.36);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(41, 221, 159, 0.18), rgba(90, 205, 255, 0.11));
  color: #6cf0bd;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 18px 38px rgba(18, 9, 35, 0.34);
}

.swx-thankyou__success-icon svg,
.swx-thankyou__section-icon svg,
.swx-thankyou__item-icon svg,
.swx-thankyou__email svg,
.swx-thankyou__time svg {
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.swx-thankyou__hero-copy { position: relative; z-index: 1; }

.content-card .swx-thankyou__eyebrow {
  margin: 0 0 7px;
  color: #ee7fc5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.content-card .swx-thankyou__hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.content-card .swx-thankyou__hero-copy > p:last-child {
  max-width: 640px;
  margin: 11px 0 0;
  color: #b9b1c5;
  font-size: 15px;
  line-height: 1.65;
}

.swx-thankyou__status {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(112, 218, 180, 0.28);
  border-radius: 999px;
  background: rgba(24, 56, 48, 0.52);
  color: #85f1c8;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.swx-thankyou__status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(108, 240, 189, 0.1);
}

.swx-thankyou__status.is-checking {
  border-color: rgba(108, 209, 255, 0.28);
  background: rgba(24, 43, 64, 0.55);
  color: #7ad8ff;
}

.swx-thankyou__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: start;
  gap: 24px;
}

.swx-thankyou__panel {
  padding: clamp(24px, 3.5vw, 34px);
  border: 1px solid rgba(111, 94, 143, 0.32);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(28, 21, 43, 0.97), rgba(17, 13, 29, 0.98));
  box-shadow: 0 22px 55px rgba(4, 2, 12, 0.22);
}

.swx-thankyou__section-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 25px;
}

.swx-thankyou__section-icon {
  display: grid;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(103, 209, 255, 0.24);
  border-radius: 14px;
  background: rgba(77, 166, 211, 0.1);
  color: #73d8ff;
}

.swx-thankyou__section-icon--access {
  border-color: rgba(223, 102, 193, 0.24);
  background: rgba(195, 74, 163, 0.1);
  color: #f17bca;
}

.swx-thankyou__section-heading span {
  display: block;
  margin-bottom: 3px;
  color: #91889d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.content-card .swx-thankyou__section-heading h2 {
  margin: 0;
  color: #fff;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.swx-thankyou__meta {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1.3fr;
  gap: 10px;
  margin-bottom: 22px;
}

.swx-thankyou__meta > div {
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid rgba(112, 96, 139, 0.24);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
}

.swx-thankyou__meta span,
.swx-thankyou__email span {
  display: block;
  margin-bottom: 5px;
  color: #91899c;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.swx-thankyou__meta strong {
  display: block;
  overflow: hidden;
  color: #f4f0f8;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.swx-thankyou__items {
  overflow: hidden;
  border: 1px solid rgba(112, 96, 139, 0.25);
  border-radius: 16px;
}

.swx-thankyou__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.018);
}

.swx-thankyou__item + .swx-thankyou__item { border-top: 1px solid rgba(112, 96, 139, 0.22); }

.swx-thankyou__item-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(219, 84, 184, 0.16), rgba(83, 192, 246, 0.13));
  color: #8ddfff;
}

.swx-thankyou__item-copy strong,
.swx-thankyou__item-copy span { display: block; }

.swx-thankyou__item-copy strong { color: #fff; font-size: 14px; }
.swx-thankyou__item-copy span { margin-top: 3px; color: #8f879a; font-size: 11px; }
.swx-thankyou__item-price { color: #fff; font-size: 14px; white-space: nowrap; }

.swx-thankyou__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 17px;
  padding-top: 17px;
  border-top: 1px solid rgba(112, 96, 139, 0.24);
}

.swx-thankyou__total span { color: #9f96a8; font-size: 13px; font-weight: 700; }
.swx-thankyou__total strong { color: #fff; font-size: 22px; letter-spacing: -0.03em; }

.content-card .swx-thankyou__access-copy {
  margin: -5px 0 20px;
  color: #c1b9ca;
  font-size: 14px;
  line-height: 1.65;
}

.swx-thankyou__email {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  margin-bottom: 22px;
  padding: 14px 15px;
  border: 1px solid rgba(111, 205, 244, 0.22);
  border-radius: 14px;
  background: rgba(61, 148, 187, 0.075);
  color: #70d7ff;
}

.swx-thankyou__email div { min-width: 0; }
.swx-thankyou__email span { margin-bottom: 3px; }
.swx-thankyou__email strong { display: block; overflow: hidden; color: #fff; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }

.swx-thankyou__steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.swx-thankyou__steps li {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  min-height: 67px;
}

.swx-thankyou__steps li:not(:last-child)::after {
  position: absolute;
  top: 34px;
  bottom: 0;
  left: 16px;
  width: 1px;
  background: rgba(125, 108, 153, 0.34);
  content: "";
}

.swx-thankyou__steps li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(121, 104, 151, 0.42);
  border-radius: 11px;
  background: #171122;
  color: #8f879a;
  font-size: 11px;
  font-weight: 850;
}

.swx-thankyou__steps li.is-complete > span,
.swx-thankyou__steps li.is-active > span {
  border-color: rgba(99, 218, 176, 0.35);
  background: rgba(45, 182, 133, 0.13);
  color: #6de9bc;
}

.swx-thankyou__steps li.is-complete > span::before { content: "✓"; }
.swx-thankyou__steps li.is-complete > span { font-size: 0; }
.swx-thankyou__steps li.is-complete > span::before { font-size: 13px; }

.swx-thankyou__steps li div { padding: 1px 0 16px; }
.swx-thankyou__steps strong,
.swx-thankyou__steps small { display: block; }
.swx-thankyou__steps strong { color: #f0ebf4; font-size: 13px; }
.swx-thankyou__steps small { margin-top: 4px; color: #8f879a; font-size: 11px; line-height: 1.5; }

.content-card .swx-thankyou__time {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 6px 0 0;
  padding: 12px 13px;
  border: 1px solid rgba(223, 113, 190, 0.19);
  border-radius: 13px;
  background: rgba(189, 75, 156, 0.07);
  color: #baafc1;
  font-size: 11px;
  line-height: 1.5;
}

.swx-thankyou__time svg { flex: 0 0 auto; color: #ef75c7; }

.swx-thankyou__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 4px 0 10px;
}

.swx-thankyou__actions .button { min-width: 190px; }

.swx-thankyou__extensions:empty { display: none; }
.swx-thankyou__extensions:not(:empty) { padding: 18px 22px; border: 1px solid var(--swx-border); border-radius: 18px; background: rgba(20, 15, 32, 0.82); }

.swx-thankyou__hero--failed {
  grid-template-columns: auto minmax(0, 1fr);
  border-color: rgba(239, 93, 146, 0.28);
}

.swx-thankyou__hero--failed .swx-thankyou__success-icon {
  border-color: rgba(244, 92, 145, 0.35);
  background: rgba(198, 56, 106, 0.13);
  color: #ff76a7;
}

@media (max-width: 920px) {
  .swx-thankyou__layout { grid-template-columns: 1fr; }
  .swx-thankyou__access { order: -1; }
}

@media (max-width: 700px) {
  .woocommerce-order-received .content-shell { padding-top: 95px; }
  .swx-thankyou { gap: 16px; }
  .swx-thankyou__hero { grid-template-columns: auto minmax(0, 1fr); gap: 16px; border-radius: 21px; }
  .swx-thankyou__success-icon { width: 58px; height: 58px; border-radius: 18px; }
  .swx-thankyou__success-icon svg { width: 28px; height: 28px; }
  .swx-thankyou__status { grid-column: 1 / -1; justify-self: start; }
  .swx-thankyou__panel { border-radius: 20px; }
  .swx-thankyou__meta { grid-template-columns: 1fr 1fr; }
  .swx-thankyou__meta > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .swx-thankyou__hero { grid-template-columns: 1fr; }
  .content-card .swx-thankyou__hero h1 { font-size: 31px; }
  .swx-thankyou__meta { grid-template-columns: 1fr; }
  .swx-thankyou__meta > div:last-child { grid-column: auto; }
  .swx-thankyou__item { grid-template-columns: auto minmax(0, 1fr); }
  .swx-thankyou__item-price { grid-column: 2; }
  .swx-thankyou__actions { align-items: stretch; flex-direction: column; }
  .swx-thankyou__actions .button { width: 100%; min-width: 0; }
}

/* Mobile Stripe checkout: give the secure Payment Element room to breathe. */
@media (max-width: 520px) {
  .woocommerce-checkout .content-shell__inner {
    width: min(calc(100% - 16px), var(--swx-container));
  }

  .woocommerce-checkout .content-card {
    padding-right: 8px;
    padding-left: 8px;
    border-radius: 20px;
  }

  .woocommerce-checkout #order_review {
    padding: 16px 7px;
    border-radius: 18px;
  }

  .woocommerce-checkout #payment {
    width: 100%;
    border: 1px solid rgba(128, 99, 174, 0.28);
    border-radius: 16px;
    background:
      radial-gradient(circle at 100% 0%, rgba(103, 221, 255, 0.065), transparent 38%),
      rgba(10, 7, 18, 0.52);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  }

  .woocommerce-checkout #payment ul.payment_methods {
    width: 100%;
    padding: 12px 6px 8px;
  }

  .woocommerce-checkout #payment ul.payment_methods > li,
  .woocommerce-checkout #payment .payment_method_stripe,
  .woocommerce-checkout #payment #wc-stripe-upe-form,
  .woocommerce-checkout #payment .wc-stripe-upe-element {
    width: 100%;
    min-width: 0;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }

  .woocommerce-checkout #payment #wc-stripe-upe-form {
    min-inline-size: 0;
    padding: 0;
    border: 0;
  }

  .woocommerce-checkout #payment div.payment_box.payment_method_stripe {
    width: 100%;
    padding: 0;
    margin: 8px 0 0;
    border: 0;
    border-radius: 14px;
    background: transparent;
    box-shadow: none;
  }

  .woocommerce-checkout #payment div.payment_box.payment_method_stripe::before {
    display: none;
  }

  .woocommerce-checkout #payment .wc-stripe-upe-element iframe {
    display: block;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  .woocommerce-checkout #payment .form-row.place-order {
    padding: 16px 8px;
  }
}

@media (max-width: 380px) {
  .woocommerce-checkout .content-shell__inner {
    width: calc(100% - 10px);
  }

  .woocommerce-checkout .content-card,
  .woocommerce-checkout #order_review {
    padding-right: 4px;
    padding-left: 4px;
  }

  .woocommerce-checkout #payment ul.payment_methods {
    padding-right: 2px;
    padding-left: 2px;
  }
}

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