:root {
  --color-background: #06070B;
  --color-card: #0E1220;
  --color-text: #FFFFFF;
  --color-muted: #A8AFBF;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-glow: rgba(92, 92, 255, 0.35);
  --gradient-primary: linear-gradient(135deg, #5B5CFF 0%, #7A5CFF 100%);

  --font-main: 'Inter', sans-serif;
  --container-width: 1180px;
  --section-spacing: 96px;
  --radius-card: 24px;
  --radius-pill: 999px;
  --transition-base: 200ms ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(91, 92, 255, 0.16), transparent 34rem),
    radial-gradient(circle at 80% 10%, rgba(122, 92, 255, 0.12), transparent 28rem),
    var(--color-background);
  color: var(--color-text);
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  overflow-x: clip;
}

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

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.site-header,
.site-footer,
main > section {
  width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(14, 18, 32, 0.78), rgba(6, 7, 11, 0.62)),
    rgba(6, 7, 11, 0.76);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24), 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

body.is-scrolled .site-header {
  border-bottom-color: rgba(122, 92, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(10, 13, 24, 0.94), rgba(6, 7, 11, 0.88)),
    rgba(6, 7, 11, 0.92);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38), 0 0 34px rgba(91, 92, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  transition: min-height 0.25s ease;
}

body.is-scrolled .header-inner {
  min-height: 74px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

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

.custom-logo {
  display: block;
  width: auto;
  max-height: 48px;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 1.3rem),
    var(--gradient-primary);
  box-shadow: 0 16px 34px rgba(91, 92, 255, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.logo-text {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 15.5px;
  font-weight: 760;
}

.primary-menu,
.footer-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a,
.header-button,
.button {
  transition: color var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}

.main-nav a {
  position: relative;
  color: var(--color-muted);
  padding: 10px 0;
  line-height: 1.2;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--gradient-primary);
  box-shadow: 0 0 18px var(--color-glow);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.main-nav a:hover {
  color: var(--color-text);
}

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.screen-reader-text {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  word-wrap: normal;
}

.header-actions {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
}

.header-search {
  position: relative;
}

.header-icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.14), transparent 1.2rem),
    rgba(255, 255, 255, 0.045);
  color: var(--color-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.header-icon-button:hover,
.header-icon-button.is-active {
  border-color: rgba(122, 92, 255, 0.48);
  background: rgba(91, 92, 255, 0.14);
  box-shadow: 0 12px 28px rgba(91, 92, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.header-search-icon,
.header-cart-icon {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
}

.header-search-icon {
  border: 1.8px solid currentColor;
  border-radius: 50%;
}

.header-search-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 7px;
  height: 1.8px;
  border-radius: var(--radius-pill);
  background: currentColor;
  transform: rotate(45deg);
}

.header-cart-icon {
  border: 1.8px solid currentColor;
  border-top: 0;
  border-radius: 4px 4px 6px 6px;
}

.header-cart-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  top: -6px;
  width: 7px;
  height: 7px;
  border: 1.8px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.header-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 17px;
  height: 17px;
  padding: 0 5px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-pill);
  background: var(--gradient-primary);
  color: var(--color-text);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(91, 92, 255, 0.32);
}

.header-cart-count.is-empty {
  display: none;
}

.header-search-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 30;
  display: grid;
  gap: 12px;
  width: min(430px, calc(100vw - 32px));
  padding: 12px 50px 12px 12px;
  border: 1px solid rgba(122, 92, 255, 0.24);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.18), transparent 10rem),
    rgba(14, 18, 32, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46), 0 0 36px rgba(91, 92, 255, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-search-panel[hidden] {
  display: none;
}

.header-search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
}

.header-search-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--color-text);
  padding: 0 14px;
  outline: 0;
}

.header-search-form input::placeholder {
  color: rgba(168, 175, 191, 0.82);
}

.header-search-form input:focus {
  border-color: rgba(122, 92, 255, 0.52);
  box-shadow: 0 0 0 4px rgba(91, 92, 255, 0.12);
}

.header-search-form button,
.header-search-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--color-text);
  font-weight: 900;
  cursor: pointer;
}

.header-search-form button {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  background: var(--gradient-primary);
  box-shadow: 0 12px 28px rgba(91, 92, 255, 0.24);
}

.header-search-close {
  position: absolute;
  top: 17px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  font-size: 18px;
  line-height: 1;
}

.header-search-results {
  display: grid;
  gap: 9px;
  max-height: min(430px, 62vh);
  overflow-y: auto;
  padding-right: 2px;
}

.header-search-result-card,
.search-result-card {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 13px;
  width: 100%;
  min-width: 0;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--color-text);
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.header-search-result-card:hover,
.header-search-result-card.is-active,
.search-result-card:hover {
  border-color: rgba(122, 92, 255, 0.48);
  background: rgba(91, 92, 255, 0.1);
  box-shadow: 0 16px 42px rgba(91, 92, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-2px) scale(1.01);
}

.search-result-thumb {
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background:
    radial-gradient(circle at 70% 20%, rgba(122, 92, 255, 0.3), transparent 4rem),
    rgba(255, 255, 255, 0.05);
}

.search-result-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-thumb-fallback {
  color: #DDE0FF;
  font-size: 18px;
  font-weight: 900;
}

.search-result-content {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.search-result-type {
  width: fit-content;
  padding: 3px 8px;
  border: 1px solid rgba(122, 92, 255, 0.28);
  border-radius: var(--radius-pill);
  background: rgba(91, 92, 255, 0.1);
  color: #DDE0FF;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.search-result-content strong {
  overflow: hidden;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result-content small,
.search-result-content span:not(.search-result-type) {
  overflow: hidden;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result-content em {
  color: #FFFFFF;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.header-search-status,
.search-empty-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  text-align: center;
}

.header-search-status strong,
.search-empty-card h2 {
  display: block;
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.2;
}

.header-search-status span,
.search-empty-card p {
  display: block;
  margin-top: 7px;
  color: var(--color-muted);
  font-size: 13px;
}

.header-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  color: var(--color-text);
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.header-button:hover {
  border-color: rgba(122, 92, 255, 0.46);
  background: rgba(91, 92, 255, 0.14);
  box-shadow: 0 14px 34px rgba(91, 92, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.button:hover {
  transform: translateY(-2px);
}

.mobile-menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text);
  cursor: pointer;
}

.mobile-menu-button span {
  width: 18px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--color-text);
  box-shadow: 0 0 14px rgba(91, 92, 255, 0.34);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.mobile-menu-button.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-open {
  overflow: hidden;
  touch-action: none;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  width: 100vw;
  min-height: 100dvh;
  padding: 0;
  background: rgba(4, 6, 12, 0.22);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 260ms ease,
    visibility 0s linear 260ms,
    background 260ms ease,
    backdrop-filter 260ms ease,
    -webkit-backdrop-filter 260ms ease;
}

.mobile-menu-overlay[hidden] {
  display: none;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background:
    radial-gradient(circle at 82% 8%, rgba(122, 92, 255, 0.2), transparent 34%),
    radial-gradient(circle at 12% 80%, rgba(20, 184, 166, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(3, 5, 11, 0.58), rgba(3, 4, 9, 0.78));
  backdrop-filter: blur(12px) saturate(135%);
  -webkit-backdrop-filter: blur(12px) saturate(135%);
  transition-delay: 0s;
}

.mobile-menu-panel {
  width: min(88vw, 380px);
  height: 100dvh;
  max-height: 100dvh;
  overflow-y: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px 0 0 32px;
  background:
    radial-gradient(circle at 16% 0%, rgba(122, 92, 255, 0.3), transparent 34%),
    radial-gradient(circle at 100% 16%, rgba(20, 184, 166, 0.12), transparent 30%),
    linear-gradient(162deg, rgba(22, 27, 47, 0.99), rgba(6, 8, 15, 0.99));
  box-shadow:
    -42px 0 130px rgba(0, 0, 0, 0.7),
    -10px 0 36px rgba(122, 92, 255, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  padding: 34px 20px 22px;
  transform: translate3d(105%, 0, 0) scale(0.965);
  opacity: 0;
  transition:
    transform 440ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 300ms ease;
  will-change: transform, opacity;
}

.mobile-menu-overlay.is-open .mobile-menu-panel {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  padding: 0 2px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-menu-kicker {
  color: rgba(240, 242, 255, 0.92);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow:
    0 0 26px rgba(122, 92, 255, 0.36),
    0 1px 0 rgba(255, 255, 255, 0.1);
}

.mobile-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03));
  color: var(--color-text);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
  transition:
    transform 180ms ease,
    border-color var(--transition-base),
    background var(--transition-base),
    box-shadow var(--transition-base);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 52px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.024);
  color: var(--color-text);
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.28;
  padding: 0 16px 0 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 11px 28px rgba(0, 0, 0, 0.16);
  appearance: none;
  -webkit-appearance: none;
  outline: 0;
  overflow: hidden;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
  transform: translateZ(0);
  transition:
    transform 180ms ease,
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    background var(--transition-base),
    color var(--transition-base);
}

.mobile-nav a::after {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible,
.mobile-nav a:active,
.mobile-menu-close:hover,
.mobile-menu-close:focus-visible,
.mobile-menu-button.is-active {
  border-color: rgba(122, 92, 255, 0.58);
  background:
    linear-gradient(145deg, rgba(122, 92, 255, 0.22), rgba(20, 184, 166, 0.08)),
    rgba(255, 255, 255, 0.05);
  box-shadow:
    0 16px 38px rgba(91, 92, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.mobile-menu-close:hover,
.mobile-menu-close:focus-visible {
  transform: translateY(-1px);
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  transform: translateY(-1px);
}

.mobile-nav a:active,
.mobile-menu-close:active {
  transform: scale(0.98);
}

.mobile-nav a:focus-visible,
.mobile-menu-close:focus-visible {
  outline: 0;
  box-shadow:
    0 0 0 2px rgba(122, 92, 255, 0.44),
    0 16px 38px rgba(91, 92, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.mobile-nav a:hover::after,
.mobile-nav a:focus-visible::after,
.mobile-nav a:active::after {
  border-color: rgba(255, 255, 255, 0.82);
  transform: translateX(2px) rotate(45deg);
}

.mobile-nav a.active {
  border-color: rgba(122, 92, 255, 0.72);
  background:
    linear-gradient(132deg, rgba(122, 92, 255, 0.78), rgba(91, 92, 255, 0.84) 52%, rgba(20, 184, 166, 0.62)),
    rgba(122, 92, 255, 0.24);
  color: #ffffff;
  box-shadow:
    0 18px 42px rgba(91, 92, 255, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 0 22px rgba(122, 92, 255, 0.42);
  font-weight: 900;
}

.mobile-nav a.active::after {
  border-color: rgba(255, 255, 255, 0.92);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 132px 0 96px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 16% auto auto 52%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: var(--color-glow);
  filter: blur(140px);
  opacity: 0.5;
  transform: translateX(-8%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(360px, 520px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(72px, 7vw, 116px);
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 40px rgba(91, 92, 255, 0.16);
  color: #DDE0FF;
  font-size: 14px;
  font-weight: 700;
}

.hero-content h1 {
  margin-top: 28px;
  max-width: 560px;
  font-size: clamp(46px, 4.05vw, 58px);
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: 0.2px;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-description {
  margin-top: 26px;
  max-width: 520px;
  color: var(--color-muted);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 800;
}

.button-primary {
  background: var(--gradient-primary);
  box-shadow: 0 18px 44px rgba(91, 92, 255, 0.32);
  color: var(--color-text);
}

.button-secondary {
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text);
}

.hero-actions .button,
.cta-actions .button,
.footer-cta-bar .button {
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.hero-actions .button-primary:hover,
.cta-actions .button-primary:hover,
.footer-cta-bar .button-primary:hover {
  box-shadow: 0 24px 58px rgba(91, 92, 255, 0.46), 0 0 34px rgba(122, 92, 255, 0.28);
  transform: translateY(-3px);
}

.hero-actions .button-secondary:hover,
.cta-actions .button-secondary:hover {
  border-color: rgba(122, 92, 255, 0.46);
  background: rgba(91, 92, 255, 0.13);
  box-shadow: 0 16px 38px rgba(91, 92, 255, 0.2);
  transform: translateY(-3px);
}

.mini-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.mini-features li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.mini-features li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 18px var(--color-glow);
}

.hero-visual {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(100%, 520px);
  min-height: 560px;
}

.visual-glow {
  position: absolute;
  inset: 50% auto auto 52%;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(91, 92, 255, 0.5), rgba(122, 92, 255, 0.22) 48%, transparent 72%);
  filter: blur(96px);
  transform: translate(-50%, -50%);
}

.browser-card,
.floating-card {
  border: 1px solid var(--color-border);
  background: linear-gradient(145deg, rgba(14, 18, 32, 0.88), rgba(14, 18, 32, 0.58));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.main-preview {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: 22px;
  border-radius: var(--radius-card);
}

.browser-top {
  display: flex;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid var(--color-border);
}

.browser-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.preview-body {
  padding: 26px;
}

.preview-hero {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 22px;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background:
    radial-gradient(circle at 80% 20%, rgba(122, 92, 255, 0.28), transparent 12rem),
    rgba(255, 255, 255, 0.04);
}

.preview-pill,
.preview-title,
.preview-text,
.preview-button,
.preview-cards span {
  display: block;
  border-radius: var(--radius-pill);
}

.preview-pill {
  width: 92px;
  height: 16px;
  background: rgba(168, 175, 191, 0.34);
}

.preview-title {
  width: 86%;
  height: 34px;
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.9);
}

.preview-text {
  width: 68%;
  height: 14px;
  margin-top: 16px;
  background: rgba(168, 175, 191, 0.38);
}

.preview-button {
  align-self: end;
  width: 110px;
  height: 44px;
  background: var(--gradient-primary);
  box-shadow: 0 18px 34px rgba(91, 92, 255, 0.28);
}

.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.preview-cards span {
  height: 96px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--color-card);
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 210px;
  padding: 16px;
  border-radius: 20px;
}

.floating-card-top {
  top: 0;
  right: -18px;
}

.floating-card-bottom {
  left: -28px;
  bottom: 42px;
}

.floating-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--gradient-primary);
  box-shadow: 0 14px 30px rgba(91, 92, 255, 0.34);
}

.floating-card strong {
  display: block;
  font-size: 15px;
}

.floating-card small {
  display: block;
  margin-top: 2px;
  color: var(--color-muted);
  font-size: 12px;
}

.stats-section {
  position: relative;
  z-index: 2;
  padding: 12px 0 88px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  position: relative;
  overflow: hidden;
  min-height: 148px;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at top right, rgba(91, 92, 255, 0.22), transparent 9rem),
    linear-gradient(145deg, rgba(14, 18, 32, 0.86), rgba(14, 18, 32, 0.56));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 92, 255, 0.7), transparent);
}

.stat-card strong {
  display: block;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.stat-card span {
  display: block;
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 700;
}

.popular-themes-section {
  position: relative;
  overflow: hidden;
  padding: 24px 0 104px;
}

.popular-themes-section::before {
  content: "";
  position: absolute;
  top: 160px;
  left: 50%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(91, 92, 255, 0.14);
  filter: blur(120px);
  transform: translateX(-50%);
  pointer-events: none;
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.section-heading p {
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 18px;
}

.theme-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.theme-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background:
    linear-gradient(145deg, rgba(14, 18, 32, 0.94), rgba(14, 18, 32, 0.68)),
    var(--color-card);
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.theme-card:hover {
  border-color: rgba(122, 92, 255, 0.52);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.44), 0 0 46px rgba(91, 92, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-10px);
}

.theme-preview {
  position: relative;
  overflow: hidden;
  min-height: 238px;
  padding: 24px 22px 28px;
  border-bottom: 1px solid var(--color-border);
}

.theme-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 38%),
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.18), transparent 8rem);
  pointer-events: none;
}

.theme-preview-product-image {
  min-height: auto;
  padding: 8px;
  background:
    radial-gradient(circle at 72% 18%, rgba(122, 92, 255, 0.26), transparent 9rem),
    linear-gradient(145deg, rgba(91, 92, 255, 0.14), rgba(14, 18, 32, 0.96));
}

.theme-product-image {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(6, 7, 11, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.theme-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.theme-card:hover .theme-product-image img {
  filter: brightness(1.08);
  transform: scale(1.035);
}

.theme-preview-purple {
  background: linear-gradient(145deg, rgba(91, 92, 255, 0.34), rgba(14, 18, 32, 0.9));
}

.theme-preview-blue {
  background: linear-gradient(145deg, rgba(63, 116, 255, 0.32), rgba(14, 18, 32, 0.9));
}

.theme-preview-violet {
  background: linear-gradient(145deg, rgba(122, 92, 255, 0.34), rgba(14, 18, 32, 0.9));
}

.theme-status-badge {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  background: rgba(6, 7, 11, 0.52);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28), 0 0 22px rgba(91, 92, 255, 0.2);
  color: var(--color-text);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.03em;
  backdrop-filter: blur(14px);
}

.theme-laptop {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  min-height: 184px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(6, 7, 11, 0.78), rgba(14, 18, 32, 0.54));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38), 0 16px 34px rgba(91, 92, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: perspective(900px) rotateX(0deg);
  transition: transform var(--transition-base), box-shadow var(--transition-base), filter var(--transition-base);
}

.theme-card:hover .theme-laptop {
  filter: brightness(1.08);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.44), 0 20px 42px rgba(91, 92, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: scale(1.025);
}

.theme-browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 30px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
}

.theme-browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.theme-screen {
  position: relative;
  overflow: hidden;
  min-height: 154px;
  padding: 18px;
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.11), transparent 7rem),
    rgba(255, 255, 255, 0.025);
}

.preview-nav,
.preview-line,
.preview-panel {
  position: relative;
  z-index: 1;
  display: block;
  border-radius: var(--radius-pill);
}

.preview-nav {
  width: 74%;
  height: 14px;
  background: rgba(255, 255, 255, 0.14);
}

.preview-line.large {
  width: 68%;
  height: 24px;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.86);
}

.preview-line.medium {
  width: 52%;
  height: 10px;
  margin-top: 11px;
  background: rgba(168, 175, 191, 0.5);
}

.preview-panel {
  width: 42%;
  height: 48px;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.preview-products {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 46%;
}

.preview-products span {
  display: block;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.theme-preview::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.theme-preview .preview-nav,
.theme-preview .preview-line,
.theme-preview .preview-panel,
.theme-preview .preview-products span {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.preview-belleza {
  background:
    radial-gradient(circle at 76% 28%, rgba(255, 190, 224, 0.34), transparent 7rem),
    linear-gradient(145deg, #2A1430, #101422 72%);
}

.preview-belleza::after {
  right: 28px;
  bottom: 24px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255, 210, 232, 0.28);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 232, 0.28), rgba(122, 92, 255, 0.1) 58%, transparent 60%);
}

.preview-belleza .preview-nav {
  width: 58%;
}

.preview-belleza .preview-panel {
  width: 56%;
  background: linear-gradient(135deg, rgba(255, 210, 232, 0.22), rgba(255, 255, 255, 0.06));
}

.preview-belleza .preview-products span {
  background: linear-gradient(180deg, rgba(255, 210, 232, 0.2), rgba(255, 255, 255, 0.04));
}

.preview-furnixo {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(145deg, #192235, #0B0F19 74%);
  background-size: 34px 34px, auto;
}

.preview-furnixo::after {
  right: 24px;
  bottom: 22px;
  width: 118px;
  height: 78px;
  border-radius: 22px 22px 12px 12px;
  background:
    linear-gradient(90deg, transparent 16%, rgba(255, 255, 255, 0.08) 16% 20%, transparent 20% 80%, rgba(255, 255, 255, 0.08) 80% 84%, transparent 84%),
    linear-gradient(135deg, rgba(101, 129, 255, 0.34), rgba(255, 255, 255, 0.08));
}

.preview-furnixo .preview-line.large {
  width: 54%;
}

.preview-furnixo .preview-panel {
  width: 42%;
  height: 74px;
}

.preview-furnixo .preview-products span {
  min-height: 46px;
  background: linear-gradient(180deg, rgba(176, 138, 90, 0.18), rgba(255, 255, 255, 0.04));
}

.preview-cafenova {
  background:
    radial-gradient(circle at 78% 72%, rgba(245, 147, 83, 0.26), transparent 7rem),
    linear-gradient(145deg, #2A1B16, #101422 70%);
}

.preview-cafenova::after {
  right: 30px;
  top: 58px;
  width: 72px;
  height: 72px;
  border: 10px solid rgba(255, 188, 120, 0.22);
  border-radius: 50%;
  box-shadow: 44px 26px 0 -22px rgba(255, 255, 255, 0.14);
}

.preview-cafenova .preview-nav {
  width: 74%;
}

.preview-cafenova .preview-panel {
  width: 70%;
  height: 48px;
  border-radius: 14px;
}

.preview-cafenova .preview-products {
  width: 42%;
}

.preview-cafenova .preview-products span {
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 188, 120, 0.24), rgba(255, 255, 255, 0.04));
}

.preview-agencyflow {
  background:
    radial-gradient(circle at 18% 22%, rgba(91, 92, 255, 0.34), transparent 8rem),
    linear-gradient(145deg, #171C3E, #0A0D16 72%);
}

.preview-agencyflow::after {
  right: 24px;
  bottom: 24px;
  width: 136px;
  height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 0 28%, transparent 28% 36%, rgba(122, 92, 255, 0.24) 36% 100%),
    rgba(255, 255, 255, 0.04);
}

.preview-agencyflow .preview-panel {
  width: 36%;
  height: 76px;
  border-radius: 22px;
}

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

.preview-agencyflow .preview-products span {
  background: linear-gradient(135deg, rgba(91, 92, 255, 0.22), rgba(255, 255, 255, 0.04));
}

.preview-fitcore {
  background:
    linear-gradient(124deg, transparent 0 46%, rgba(92, 255, 175, 0.16) 46% 58%, transparent 58%),
    linear-gradient(145deg, #10231D, #0B1018 72%);
}

.preview-fitcore::after {
  right: 30px;
  top: 52px;
  width: 112px;
  height: 112px;
  border-radius: 32px;
  background:
    linear-gradient(90deg, transparent 43%, rgba(255, 255, 255, 0.18) 43% 57%, transparent 57%),
    linear-gradient(0deg, transparent 43%, rgba(255, 255, 255, 0.18) 43% 57%, transparent 57%),
    rgba(92, 255, 175, 0.14);
  transform: rotate(-12deg);
}

.preview-fitcore .preview-line.large {
  width: 64%;
}

.preview-fitcore .preview-panel {
  width: 46%;
  background: rgba(92, 255, 175, 0.12);
}

.preview-fitcore .preview-products span {
  background: linear-gradient(180deg, rgba(92, 255, 175, 0.18), rgba(255, 255, 255, 0.035));
}

.preview-newsgrid {
  background:
    linear-gradient(145deg, #111827, #080B12 76%);
}

.preview-newsgrid::after {
  right: 22px;
  bottom: 22px;
  width: 132px;
  height: 112px;
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.11) 0 0) 0 0 / 100% 18px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 48%, transparent 48% 54%, rgba(255, 255, 255, 0.08) 54%) 0 34px / 100% 74px no-repeat;
}

.preview-newsgrid .preview-nav {
  height: 16px;
}

.preview-newsgrid .preview-panel {
  width: 62%;
  height: 76px;
  border-radius: 12px;
}

.preview-newsgrid .preview-products {
  grid-template-columns: 1fr;
  width: 36%;
}

.preview-newsgrid .preview-products span {
  min-height: 18px;
}

.preview-modalux {
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 230, 245, 0.22), transparent 7rem),
    linear-gradient(145deg, #241A30, #0D1019 74%);
}

.preview-modalux::after {
  right: 28px;
  bottom: 20px;
  width: 92px;
  height: 132px;
  border-radius: 48px 48px 22px 22px;
  background:
    linear-gradient(90deg, transparent 42%, rgba(255, 255, 255, 0.18) 42% 58%, transparent 58%),
    linear-gradient(145deg, rgba(255, 218, 239, 0.32), rgba(122, 92, 255, 0.16));
}

.preview-modalux .preview-panel {
  width: 42%;
  height: 88px;
}

.preview-modalux .preview-products span {
  min-height: 52px;
  background: linear-gradient(180deg, rgba(255, 218, 239, 0.2), rgba(255, 255, 255, 0.04));
}

.preview-electrox {
  background:
    radial-gradient(circle at 82% 28%, rgba(76, 201, 255, 0.28), transparent 7rem),
    linear-gradient(145deg, #101C34, #090D17 72%);
}

.preview-electrox::after {
  right: 22px;
  bottom: 24px;
  width: 128px;
  height: 84px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 0 22%, transparent 22% 29%, rgba(91, 92, 255, 0.22) 29% 100%),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 0 -8px rgba(76, 201, 255, 0.14);
}

.preview-electrox .preview-nav {
  width: 88%;
}

.preview-electrox .preview-panel {
  width: 52%;
  height: 54px;
}

.preview-electrox .preview-products span {
  background: linear-gradient(180deg, rgba(76, 201, 255, 0.2), rgba(255, 255, 255, 0.04));
}

.preview-jewelia {
  background:
    radial-gradient(circle at 76% 34%, rgba(245, 211, 126, 0.25), transparent 7rem),
    linear-gradient(145deg, #241D12, #0D1019 72%);
}

.preview-jewelia::after {
  right: 34px;
  bottom: 26px;
  width: 104px;
  height: 104px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, transparent 0 36%, rgba(245, 211, 126, 0.28) 36% 64%, transparent 64%),
    rgba(255, 255, 255, 0.06);
  transform: rotate(45deg);
}

.preview-jewelia .preview-line.large {
  width: 60%;
}

.preview-jewelia .preview-panel {
  width: 44%;
  border-color: rgba(245, 211, 126, 0.2);
}

.preview-jewelia .preview-products span {
  border-color: rgba(245, 211, 126, 0.18);
  background: linear-gradient(180deg, rgba(245, 211, 126, 0.18), rgba(255, 255, 255, 0.035));
}

.preview-petiva {
  background:
    radial-gradient(circle at 74% 28%, rgba(111, 232, 174, 0.24), transparent 7rem),
    linear-gradient(145deg, #14251D, #0A0F18 74%);
}

.preview-petiva::after {
  right: 24px;
  bottom: 26px;
  width: 116px;
  height: 92px;
  border-radius: 44px 44px 22px 22px;
  background:
    radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.18) 0 8px, transparent 9px),
    radial-gradient(circle at 66% 34%, rgba(255, 255, 255, 0.18) 0 8px, transparent 9px),
    linear-gradient(145deg, rgba(111, 232, 174, 0.28), rgba(255, 255, 255, 0.06));
}

.preview-petiva .preview-panel {
  width: 50%;
  height: 70px;
}

.preview-petiva .preview-products span {
  background: linear-gradient(180deg, rgba(111, 232, 174, 0.2), rgba(255, 255, 255, 0.04));
}

.preview-kidora {
  background:
    radial-gradient(circle at 72% 30%, rgba(255, 206, 100, 0.2), transparent 7rem),
    radial-gradient(circle at 88% 72%, rgba(255, 139, 188, 0.18), transparent 6rem),
    linear-gradient(145deg, #211D3E, #0B101B 74%);
}

.preview-kidora::after {
  right: 28px;
  bottom: 28px;
  width: 118px;
  height: 84px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 26% 38%, rgba(255, 206, 100, 0.36) 0 13px, transparent 14px),
    radial-gradient(circle at 58% 62%, rgba(255, 139, 188, 0.3) 0 16px, transparent 17px),
    rgba(255, 255, 255, 0.06);
}

.preview-kidora .preview-nav {
  width: 66%;
}

.preview-kidora .preview-panel {
  width: 54%;
  border-radius: 24px;
}

.preview-kidora .preview-products span {
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 206, 100, 0.18), rgba(255, 139, 188, 0.08));
}

.preview-homeria {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(145deg, #202334, #0A0E18 74%);
  background-size: 44px 44px, auto;
}

.preview-homeria::after {
  right: 26px;
  bottom: 24px;
  width: 126px;
  height: 96px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 44%, transparent 44% 56%, rgba(122, 92, 255, 0.2) 56% 100%),
    rgba(255, 255, 255, 0.05);
}

.preview-homeria .preview-line.large {
  width: 58%;
}

.preview-homeria .preview-panel {
  width: 64%;
  height: 54px;
}

.preview-homeria .preview-products span {
  background: linear-gradient(180deg, rgba(160, 174, 255, 0.17), rgba(255, 255, 255, 0.04));
}

.theme-card-body {
  padding: 22px;
}

.theme-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid rgba(122, 92, 255, 0.32);
  border-radius: var(--radius-pill);
  background: rgba(91, 92, 255, 0.12);
  color: #E4E5FF;
  font-size: 12px;
  font-weight: 800;
}

.theme-card h3 {
  margin-top: 18px;
  font-size: 23px;
  line-height: 1.2;
  font-weight: 800;
}

.theme-card p {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 14px;
}

.theme-empty-card {
  padding: 34px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at top right, rgba(91, 92, 255, 0.16), transparent 12rem),
    linear-gradient(145deg, rgba(14, 18, 32, 0.94), rgba(14, 18, 32, 0.66));
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-align: center;
}

.theme-empty-card h3 {
  color: var(--color-text);
  font-size: 24px;
}

.theme-empty-card p {
  max-width: 560px;
  margin: 10px auto 0;
  color: var(--color-muted);
}

.theme-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
}

.theme-meta strong {
  font-size: 22px;
  line-height: 1;
}

.theme-actions {
  display: flex;
  gap: 8px;
}

.theme-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 800;
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.theme-actions a:hover {
  border-color: rgba(122, 92, 255, 0.45);
  transform: translateY(-2px);
}

.theme-actions .buy-link {
  border-color: transparent;
  background: var(--gradient-primary);
  box-shadow: 0 12px 28px rgba(91, 92, 255, 0.24);
}

.category-section,
.testimonials-section,
.faq-section {
  position: relative;
  padding: 26px 0 96px;
}

.category-grid,
.trust-grid,
.testimonial-grid {
  display: grid;
  gap: 22px;
}

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

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.category-card,
.trust-card,
.testimonial-card,
.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at top right, rgba(91, 92, 255, 0.18), transparent 12rem),
    linear-gradient(145deg, rgba(14, 18, 32, 0.94), rgba(14, 18, 32, 0.62));
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.category-card,
.trust-card,
.testimonial-card {
  min-height: 250px;
  padding: 28px;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.category-card:hover,
.trust-card:hover,
.testimonial-card:hover {
  border-color: rgba(122, 92, 255, 0.38);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34), 0 0 38px rgba(91, 92, 255, 0.13);
  transform: translateY(-6px);
}

.category-card::after,
.trust-card::after,
.testimonial-card::after {
  content: "";
  position: absolute;
  inset: auto 28px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 92, 255, 0.62), transparent);
}

.category-icon,
.trust-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--gradient-primary);
  box-shadow: 0 16px 34px rgba(91, 92, 255, 0.32);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 900;
}

.trust-card span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.category-card h3,
.trust-card h3,
.testimonial-card strong {
  display: block;
  margin-top: 24px;
  color: var(--color-text);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.trust-card h3 {
  margin-top: 20px;
}

.category-card p,
.trust-card p,
.testimonial-card p,
.faq-item p {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 15px;
}

.category-card a {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  color: #E4E5FF;
  font-weight: 900;
}

.category-card a:hover {
  color: var(--color-text);
  text-shadow: 0 0 18px rgba(91, 92, 255, 0.42);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.75;
}

.testimonial-card strong {
  margin-top: 26px;
  font-size: 15px;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  color: var(--color-text);
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
}

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

.faq-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(122, 92, 255, 0.28);
  border-radius: 50%;
  background: rgba(91, 92, 255, 0.12);
  color: #E4E5FF;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
}

.why-section,
.services-section {
  position: relative;
  padding: 26px 0 96px;
}

.feature-grid,
.service-grid {
  display: grid;
  gap: 22px;
}

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

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

.feature-card,
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at top right, rgba(91, 92, 255, 0.18), transparent 10rem),
    linear-gradient(145deg, rgba(14, 18, 32, 0.94), rgba(14, 18, 32, 0.62));
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.feature-card:hover,
.service-card:hover {
  border-color: rgba(122, 92, 255, 0.36);
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.34), 0 0 34px rgba(91, 92, 255, 0.12);
  transform: translateY(-6px);
}

.feature-card::after,
.service-card::after {
  content: "";
  position: absolute;
  inset: auto 26px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 92, 255, 0.62), transparent);
}

.feature-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--gradient-primary);
  box-shadow: 0 16px 34px rgba(91, 92, 255, 0.32);
}

.feature-card h3,
.service-card h3 {
  margin-top: 24px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.feature-card p,
.service-card p,
.footer-brand p {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 15px;
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(122, 92, 255, 0.32);
  border-radius: 16px;
  background: rgba(91, 92, 255, 0.12);
  color: #E4E5FF;
  font-size: 14px;
  font-weight: 900;
}

.cta-section {
  padding: 8px 0 104px;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(122, 92, 255, 0.38), transparent 22rem),
    radial-gradient(circle at 90% 20%, rgba(91, 92, 255, 0.3), transparent 18rem),
    linear-gradient(135deg, rgba(14, 18, 32, 0.96), rgba(6, 7, 11, 0.96));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.36), 0 0 70px rgba(91, 92, 255, 0.18);
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
}

.cta-banner h2 {
  max-width: 680px;
  margin-top: 18px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.cta-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  background:
    radial-gradient(circle at 18% 0%, rgba(91, 92, 255, 0.16), transparent 24rem),
    rgba(6, 7, 11, 0.9);
  padding: 42px 0 26px;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 92, 255, 0.78), rgba(91, 92, 255, 0.42), transparent);
  box-shadow: 0 0 34px rgba(91, 92, 255, 0.42);
}

.footer-cta-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.22), transparent 16rem),
    linear-gradient(145deg, rgba(14, 18, 32, 0.94), rgba(14, 18, 32, 0.62));
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.32), 0 0 42px rgba(91, 92, 255, 0.12);
}

.footer-cta-bar h2 {
  color: var(--color-text);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.12;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(160px, 1fr));
  align-items: start;
  gap: 28px;
  padding: 34px 0;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 16px;
  line-height: 1.7;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h3 {
  margin-bottom: 8px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.footer-column a,
.footer-column span,
.footer-bottom p {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.footer-column a {
  position: relative;
  width: fit-content;
  transition: color var(--transition-base), transform var(--transition-base), text-shadow var(--transition-base);
}

.footer-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gradient-primary);
  transition: width var(--transition-base);
}

.footer-column a:hover {
  color: var(--color-text);
  text-shadow: 0 0 18px rgba(91, 92, 255, 0.36);
  transform: translateX(3px);
}

.footer-column a:hover::after {
  width: 100%;
}

.footer-contact strong {
  color: var(--color-text);
  font-size: 18px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.2), transparent 1rem),
    rgba(255, 255, 255, 0.05);
  transition: transform var(--transition-base), border-color var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
}

.social-links a img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.social-links a:hover {
  border-color: rgba(122, 92, 255, 0.46);
  background: rgba(91, 92, 255, 0.16);
  box-shadow: 0 0 24px rgba(91, 92, 255, 0.26);
  transform: translateY(-2px);
}

.footer-trust-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.footer-trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.045);
  color: #DDE0FF;
  font-size: 12px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer-trust-bar span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7A5CFF;
  box-shadow: 0 0 16px rgba(122, 92, 255, 0.62);
}

.footer-payment-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  width: min(100% - 24px, 1180px);
  margin-top: 22px;
  padding-top: 2px;
}

.footer-payment-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 44px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(14, 18, 32, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition: opacity var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.footer-payment-logo:has(img[alt="MasterCard"]) {
  min-width: 122px;
}

.footer-payment-logo:has(img[alt="Bonus Card"]),
.footer-payment-logo:has(img[alt="CardFinans"]) {
  min-width: 130px;
}

.footer-payment-logo:has(img[alt="Maximum"]) {
  min-width: 112px;
}

.footer-payment-logo:has(img[alt="Express"]) {
  min-width: 116px;
}

.footer-payment-logo:has(img[alt="Visa"]) {
  min-width: 98px;
}

.footer-payment-logo img {
  display: block;
  width: 100%;
  max-width: 126px;
  height: auto;
  max-height: 29px;
  object-fit: contain;
  opacity: 0.88;
  filter: saturate(0.96) contrast(1.02);
  transition: opacity var(--transition-base), filter var(--transition-base);
}

.footer-payment-logo img[alt="Axess"] {
  filter: saturate(1.02) contrast(1.12) brightness(1.08);
}

.footer-payment-logo img[alt="Bonus Card"] {
  max-width: 138px;
  max-height: 31px;
}

.footer-payment-logo img[alt="Express"] {
  max-width: 124px;
  max-height: 33px;
}

.footer-payment-logo img[alt="MasterCard"] {
  max-width: 132px;
  max-height: 33px;
}

.footer-payment-logo img[alt="Maximum"] {
  max-width: 112px;
}

.footer-payment-logo img[alt="Visa"] {
  max-width: 98px;
  max-height: 32px;
}

.footer-payment-logo:hover {
  border-color: rgba(122, 92, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.022)),
    rgba(14, 18, 32, 0.5);
  box-shadow: 0 0 20px rgba(91, 92, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.footer-payment-logo:hover img {
  opacity: 0.96;
  filter: saturate(0.98) contrast(1.04);
}

/* WooCommerce marketplace */
.woocommerce-marketplace,
.woocommerce-cart .site-main,
.woocommerce-checkout .site-main,
.woocommerce-account .site-main {
  min-height: 70vh;
}

.shop-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 54px;
}

.shop-hero::before {
  content: "";
  position: absolute;
  inset: 12% auto auto 50%;
  width: 620px;
  height: 420px;
  border-radius: 50%;
  background: rgba(91, 92, 255, 0.22);
  filter: blur(120px);
  transform: translateX(-50%);
  pointer-events: none;
}

.shop-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.shop-hero h1,
.woocommerce-products-header__title,
.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title,
.woocommerce-account .entry-title {
  margin-top: 22px;
  color: var(--color-text);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.shop-hero p {
  max-width: 660px;
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 18px;
}

.shop-products-section {
  padding: 24px 0 104px;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  color: var(--color-muted);
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  float: none;
  margin: 0;
}

.woocommerce .woocommerce-ordering select,
.woocommerce select,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce .select2-container--default .select2-selection--single {
  min-height: 46px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text);
  padding: 10px 14px;
}

.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--color-text);
  line-height: 26px;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
  margin: 0 !important;
  padding: 0 !important;
}

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce ul.products.columns-2 li.product,
.woocommerce ul.products.columns-3 li.product,
.woocommerce ul.products.columns-4 li.product,
.woocommerce-page ul.products.columns-2 li.product,
.woocommerce-page ul.products.columns-3 li.product,
.woocommerce-page ul.products.columns-4 li.product {
  float: none !important;
  clear: none !important;
  width: 100% !important;
  margin: 0 !important;
}

.product-theme-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-theme-card:hover {
  border-color: rgba(122, 92, 255, 0.48);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38), 0 0 42px rgba(92, 92, 255, 0.2);
  transform: translateY(-6px);
}

.product-theme-card .wc-theme-preview {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: auto;
  padding: 8px;
  background:
    radial-gradient(circle at 78% 18%, rgba(122, 92, 255, 0.24), transparent 8rem),
    linear-gradient(145deg, rgba(91, 92, 255, 0.13), rgba(14, 18, 32, 0.96));
  color: inherit;
  transition: filter 0.25s ease;
}

.product-theme-card .wc-theme-preview:not(.wc-theme-preview-fallback) {
  aspect-ratio: 4 / 3;
  padding: 5px;
}

.product-theme-card .wc-sales-badge {
  z-index: 3;
}

.product-theme-card .wc-theme-preview img,
.product-theme-card .wc-theme-preview .preview-nav,
.product-theme-card .wc-theme-preview .preview-line,
.product-theme-card .wc-theme-preview .preview-panel {
  transition: transform 0.25s ease, filter 0.25s ease;
}

.product-theme-card:hover .wc-theme-preview {
  filter: brightness(1.08);
}

.product-theme-card:hover .wc-theme-preview img {
  transform: scale(1.015);
}

.single-product-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wc-theme-preview img {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(6, 7, 11, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.woocommerce ul.products li.product.product-theme-card .wc-theme-preview img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  aspect-ratio: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
}

.woocommerce ul.products li.product.product-theme-card .wc-theme-preview img.ad-archive-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.wc-theme-preview-fallback {
  min-height: 230px;
  padding: 24px 22px 28px;
  display: block;
  background:
    radial-gradient(circle at 76% 28%, rgba(122, 92, 255, 0.28), transparent 8rem),
    linear-gradient(145deg, rgba(91, 92, 255, 0.3), rgba(14, 18, 32, 0.92));
}

.wc-theme-preview-fallback::after {
  right: 24px;
  bottom: 22px;
  width: 118px;
  height: 82px;
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 30%, transparent 30% 38%, rgba(122, 92, 255, 0.24) 38% 100%),
    rgba(255, 255, 255, 0.06);
}

.product-theme-card .theme-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 250px;
  padding: 24px;
}

.product-theme-card .theme-badge {
  align-self: flex-start;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  margin-top: 20px;
  padding: 0;
  color: var(--color-text);
  font-size: 24px;
  line-height: 1.16;
  font-weight: 900;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title a {
  color: inherit;
  transition: color 0.25s ease;
}

.product-theme-card:hover .woocommerce-loop-product__title,
.product-theme-card:hover .woocommerce-loop-product__title a {
  color: #F4F5FF;
}

.product-card-excerpt {
  min-height: 44px;
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.55;
}

.woocommerce ul.products li.product .price {
  display: block;
  color: var(--color-text);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.product-theme-card .theme-meta {
  align-items: flex-end;
  margin-top: auto;
  padding-top: 24px;
}

.ad-product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
}

.ad-product-bottom .price {
  display: inline-flex;
  align-items: center;
  color: var(--color-text);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.single-product-details .related.products .product-theme-card .ad-product-bottom {
  align-items: center;
  min-width: 0;
  width: 100%;
}

.single-product-details .related.products .product-theme-card .ad-product-bottom .price {
  flex: 0 0 auto;
  min-width: 0;
}

.single-product-details .related.products .product-theme-card .ad-product-actions {
  box-sizing: border-box;
  flex: 0 1 auto;
  flex-wrap: nowrap;
  gap: 6px;
  justify-content: flex-end;
  min-width: 0;
  max-width: 100%;
}

.single-product-details .related.products .product-theme-card .ad-product-actions a,
.single-product-details .related.products .product-theme-card .ad-product-actions .button,
.single-product-details .related.products .product-theme-card .ad-product-actions .add_to_cart_button,
.single-product-details .related.products .product-theme-card .ad-product-actions .added_to_cart {
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  padding-inline: 9px;
  font-size: 12.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.added_to_cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: var(--gradient-primary);
  box-shadow: 0 12px 28px rgba(91, 92, 255, 0.24);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.product-theme-card:hover .ad-product-actions .add_to_cart_button {
  box-shadow: 0 14px 34px rgba(91, 92, 255, 0.34);
}

.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.added_to_cart:hover {
  background: var(--gradient-primary);
  color: var(--color-text);
  transform: translateY(-2px);
}

.woocommerce nav.woocommerce-pagination {
  margin-top: 40px;
}

.woocommerce nav.woocommerce-pagination ul {
  border: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  min-width: 42px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--gradient-primary);
  color: var(--color-text);
}

.single-theme-product {
  position: relative;
  overflow: hidden;
  padding: 112px 0 118px;
}

.single-theme-product::before {
  content: "";
  position: absolute;
  top: 6%;
  right: 8%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(91, 92, 255, 0.16);
  filter: blur(120px);
  pointer-events: none;
}

.single-product-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1fr);
  align-items: start;
  gap: clamp(28px, 2.4vw, 36px);
  min-width: 0;
}

.single-theme-product,
.single-theme-product * {
  box-sizing: border-box;
}

.single-theme-product {
  overflow-x: hidden;
}

.single-product-preview,
.single-product-summary,
.single-product-details,
.woocommerce-cart-form,
.cart-collaterals .cart_totals,
.woocommerce-checkout-review-order,
.woocommerce-billing-fields,
.woocommerce-shipping-fields,
.woocommerce-additional-fields,
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content,
.woocommerce-form-login,
.woocommerce-form-register,
.woocommerce .woocommerce-order {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at top right, rgba(91, 92, 255, 0.16), transparent 12rem),
    linear-gradient(145deg, rgba(14, 18, 32, 0.94), rgba(14, 18, 32, 0.66));
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.single-product-preview {
  position: sticky;
  top: 112px;
  overflow: hidden;
  max-width: 100%;
  min-height: 0;
  padding: 22px;
  background:
    radial-gradient(circle at 80% 10%, rgba(122, 92, 255, 0.2), transparent 14rem),
    linear-gradient(145deg, rgba(14, 18, 32, 0.96), rgba(14, 18, 32, 0.68));
}

.single-product-preview .woocommerce-product-gallery {
  float: none !important;
  width: 100% !important;
  max-width: 100%;
  margin: 0;
  opacity: 1 !important;
}

.single-product-preview .woocommerce-product-gallery__wrapper {
  margin: 0;
}

.single-product-preview .flex-viewport {
  overflow: hidden;
  width: 100% !important;
  max-width: 100%;
  border-radius: 22px;
}

.single-product-preview .woocommerce-product-gallery__image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.single-product-preview .woocommerce-product-gallery__wrapper:not([style]) .woocommerce-product-gallery__image {
  width: 100%;
  max-width: 100%;
}

.single-product-preview .woocommerce-product-gallery__image a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.single-product-preview .woocommerce-product-gallery__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 22px;
  object-fit: contain;
  object-position: center center;
  transition: filter 0.25s ease, transform 0.25s ease;
}

.single-product-preview .ad-custom-gallery .woocommerce-product-gallery__image:not(:first-child) {
  display: none;
}

.single-product-preview .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
}

.single-product-preview .flex-control-thumbs li {
  aspect-ratio: 4 / 3;
  width: auto !important;
  float: none !important;
}

.single-product-preview .flex-control-thumbs img {
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  object-fit: contain;
  object-position: center center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(6, 7, 11, 0.36);
  opacity: 0.72;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.single-product-preview .flex-control-thumbs img.flex-active,
.single-product-preview .flex-control-thumbs li.is-active img,
.single-product-preview .flex-control-thumbs img:hover {
  border-color: rgba(122, 92, 255, 0.5);
  box-shadow: 0 0 0 1px rgba(122, 92, 255, 0.18), 0 14px 28px rgba(92, 92, 255, 0.18);
  opacity: 1;
}

.single-product-preview .flex-control-thumbs img:hover {
  transform: translateY(-2px);
}

.wc-single-fallback-preview {
  display: flex;
  align-items: center;
  min-height: 540px;
  padding: 34px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 78% 22%, rgba(122, 92, 255, 0.36), transparent 14rem),
    radial-gradient(circle at 18% 82%, rgba(91, 92, 255, 0.2), transparent 12rem),
    linear-gradient(145deg, rgba(91, 92, 255, 0.34), rgba(14, 18, 32, 0.94));
}

.single-fallback-browser {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 386px;
  padding: 38px;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 20%, rgba(122, 92, 255, 0.28), transparent 11rem),
    linear-gradient(145deg, rgba(14, 18, 32, 0.9), rgba(255, 255, 255, 0.055));
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.single-fallback-browser .preview-nav {
  width: 78%;
}

.single-fallback-browser .preview-line.large {
  width: 62%;
  height: 38px;
  margin-top: 48px;
}

.single-fallback-browser .preview-line.medium {
  width: 44%;
}

.single-fallback-browser .preview-panel {
  width: 44%;
  height: 92px;
}

.single-fallback-card {
  position: absolute;
  display: block;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.single-fallback-card.card-one {
  right: 34px;
  top: 88px;
  width: 150px;
  height: 120px;
}

.single-fallback-card.card-two {
  right: 74px;
  bottom: 40px;
  width: 190px;
  height: 82px;
  background: rgba(91, 92, 255, 0.16);
}

.single-product-summary {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 4vw, 50px);
}

.single-product-summary::after {
  content: "";
  position: absolute;
  inset: auto 34px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 92, 255, 0.62), transparent);
}

.single-product-summary h1 {
  margin-top: 24px;
  color: var(--color-text);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0.1px;
}

.single-product-description {
  max-width: 620px;
  margin-top: 24px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.75;
}

.single-product-fit-card {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(122, 92, 255, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.1), transparent 10rem),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.single-product-fit-card h2 {
  margin: 0 0 10px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.single-product-fit-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  margin: 0;
}

.single-product-fit-card li {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  color: #DDE0FF;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.single-product-fit-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 14px var(--color-glow);
}

.single-product-price {
  margin-top: 30px;
}

.single-product-fit-card + .single-product-price {
  margin-top: 18px;
}

.single-product-price .price {
  color: var(--color-text);
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: 0;
}

.single-product-license-note {
  margin-top: 10px;
  color: #DDE0FF;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.single-product-urgency-note {
  display: inline-flex;
  max-width: 100%;
  margin-top: 10px;
  padding: 8px 11px;
  border: 1px solid rgba(122, 92, 255, 0.18);
  border-radius: 999px;
  background: rgba(91, 92, 255, 0.085);
  color: #DDE0FF;
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.35;
}

.single-product-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.single-product-actions form.cart {
  display: contents;
  margin: 0;
}

.single-product-summary .wapf {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(122, 92, 255, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.12), transparent 12rem),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.single-product-summary .wapf-wrapper,
.single-product-summary .wapf-field-group,
.single-product-summary .wapf-field-row,
.single-product-summary .wapf-field-container {
  margin: 0;
  padding: 0;
}

.single-product-summary .wapf-field-label {
  margin: 0 0 8px;
}

.single-product-summary .wapf-field-label label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: var(--color-text);
  font-family: inherit;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.single-product-summary .wapf-field-label .required {
  color: #B8AAFF;
  text-decoration: none;
}

.single-product-summary .wapf-field-input,
.single-product-summary .wapf-radios {
  margin: 0;
}

.single-product-summary .wapf-radios {
  display: grid;
  gap: 6px;
}

.single-product-summary .wapf-checkable {
  margin: 0;
}

.single-product-summary .wapf-input-label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--color-text);
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.single-product-summary .wapf-input-label:hover {
  border-color: rgba(122, 92, 255, 0.42);
  background: rgba(91, 92, 255, 0.1);
  box-shadow: 0 8px 20px rgba(91, 92, 255, 0.1);
}

.single-product-summary .wapf-input-label.selected,
.single-product-summary .wapf-checkable.wapf-checked .wapf-input-label {
  border-color: rgba(124, 92, 255, 0.5);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 1px rgba(124, 92, 255, 0.15), 0 6px 18px rgba(124, 92, 255, 0.15);
}

.single-product-summary .wapf-input-label.selected .wapf-label-text,
.single-product-summary .wapf-checkable.wapf-checked .wapf-label-text {
  font-weight: 900;
}

.single-product-summary .wapf-input[type="radio"] {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #7A5CFF;
}

.single-product-summary .wapf-label-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.single-product-summary .wapf-pricing-hint {
  color: #DDE0FF;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.single-product-summary .wapf-product-totals {
  margin-top: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.single-product-summary .wapf-product-totals .wapf--inner {
  display: grid;
  gap: 6px;
}

.single-product-summary .wapf-product-totals .wapf--inner > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 28px;
  color: var(--color-muted);
  font-size: 13.5px;
  font-weight: 700;
}

.single-product-summary .wapf-product-totals .wapf--inner > div:last-child {
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(124, 92, 255, 0.08);
  color: var(--color-text);
  font-size: 15.5px;
  font-weight: 900;
  box-shadow: 0 0 0 1px rgba(124, 92, 255, 0.1), 0 8px 18px rgba(124, 92, 255, 0.1);
}

.single-product-summary .wapf-product-totals .price,
.single-product-summary .wapf-product-totals .amount {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.woocommerce .quantity .qty {
  width: 78px;
  min-height: 54px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text);
  font-weight: 800;
}

.single-product-actions .quantity {
  flex: 0 0 auto;
}

.single-product-actions .quantity .qty {
  width: 72px;
  height: 46px;
  min-height: 46px;
  border-radius: 16px;
}

.single-product-actions .single_add_to_cart_button,
.single-product-actions .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  min-height: 46px;
  padding-inline: 18px;
  font-size: 15px;
  white-space: nowrap;
}

.single-product-actions .single_add_to_cart_button {
  flex: 1 1 150px;
}

.single-product-actions .button-secondary {
  flex: 0 1 auto;
}

.single-product-actions .single_add_to_cart_button {
  box-shadow: 0 18px 42px rgba(91, 92, 255, 0.3);
}

.single-product-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.single-product-trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.045);
  color: #DDE0FF;
  font-size: 13px;
  font-weight: 800;
}

.single-product-trust-row li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 16px var(--color-glow);
}

.product-feature-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
  color: var(--color-muted);
}

.product-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  font-weight: 700;
}

.product-feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 18px var(--color-glow);
}

.single-product-details {
  position: relative;
  z-index: 1;
  margin-top: 48px;
  padding: clamp(30px, 4vw, 46px);
  background:
    radial-gradient(circle at top left, rgba(91, 92, 255, 0.12), transparent 16rem),
    linear-gradient(145deg, rgba(14, 18, 32, 0.96), rgba(14, 18, 32, 0.68));
}

.woocommerce div.product .woocommerce-tabs ul.tabs,
.single-theme-product .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 32px;
  padding: 0;
  border: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.single-theme-product .woocommerce-tabs ul.tabs::before {
  border-bottom-color: var(--color-border);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li,
.single-theme-product .woocommerce-tabs ul.tabs li {
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  margin: 0;
  padding: 0;
}

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

.woocommerce div.product .woocommerce-tabs ul.tabs li.active,
.single-theme-product .woocommerce-tabs ul.tabs li.active {
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(91, 92, 255, 0.24);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.single-theme-product .woocommerce-tabs ul.tabs li a {
  display: inline-flex;
  padding: 12px 18px;
  color: var(--color-text);
  font-weight: 800;
}

.woocommerce div.product .woocommerce-tabs .panel,
.single-theme-product .woocommerce-tabs .panel {
  max-width: 920px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.75;
}

.woocommerce div.product .woocommerce-tabs .panel h2,
.single-theme-product .woocommerce-tabs .panel h2 {
  margin-bottom: 16px;
  color: var(--color-text);
  font-size: clamp(26px, 4vw, 34px);
}

.woocommerce .related.products {
  margin-top: 42px;
}

.woocommerce .related.products > h2 {
  margin-bottom: 22px;
  font-size: clamp(28px, 4vw, 40px);
}

.single-product-details .related.products > h2::after {
  content: "Projene en uygun temayı seç.";
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.single-product-details .related.products ul.products {
  margin-top: 0 !important;
}

.single-product-details .related.products .product-theme-card {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible;
}

.content-section {
  padding: 88px 0;
}

.content-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: linear-gradient(145deg, rgba(14, 18, 32, 0.94), rgba(14, 18, 32, 0.66));
  color: var(--color-muted);
  padding: clamp(24px, 4vw, 42px);
}

.content-card h1,
.content-card h2,
.woocommerce h2,
.woocommerce h3 {
  color: var(--color-text);
}

.woocommerce-cart .content-card,
.woocommerce-checkout .content-card,
.woocommerce-account .content-card {
  background: transparent;
  border: 0;
  padding: 0;
}

.woocommerce table.shop_table {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: rgba(14, 18, 32, 0.78);
  color: var(--color-muted);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-color: var(--color-border);
  color: var(--color-muted);
  padding: 18px;
}

.woocommerce table.shop_table th {
  color: var(--color-text);
}

.woocommerce table.shop_table a,
.woocommerce table.shop_table .amount,
.woocommerce-MyAccount-content a {
  color: var(--color-text);
  font-weight: 800;
}

.woocommerce-cart-form,
.cart-collaterals .cart_totals,
.woocommerce-checkout-review-order,
.woocommerce-billing-fields,
.woocommerce-shipping-fields,
.woocommerce-additional-fields,
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content,
.woocommerce-form-login,
.woocommerce-form-register,
.woocommerce .woocommerce-order {
  padding: clamp(22px, 4vw, 34px);
}

.woocommerce form .form-row {
  margin: 0 0 18px;
  padding: 0;
}

.woocommerce form .form-row label {
  margin-bottom: 7px;
  color: var(--color-text);
  font-weight: 800;
}

.woocommerce form .form-row .required {
  color: #9B8CFF;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  margin-top: 6px;
}

.woocommerce form .form-row textarea {
  min-height: 130px;
  resize: vertical;
}

.woocommerce form.checkout h3,
.cart-collaterals .cart_totals h2,
.woocommerce-account h2 {
  margin-bottom: 18px;
}

.cart-collaterals {
  margin-top: 28px;
}

.cart-collaterals .cart_totals {
  width: min(100%, 460px);
}

.woocommerce form .form-row label,
.woocommerce form .form-row span,
.woocommerce-MyAccount-content,
.woocommerce-MyAccount-navigation {
  color: var(--color-muted);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  width: 100%;
}

.woocommerce form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 26px;
}

.woocommerce-checkout-review-order {
  align-self: start;
}

.woocommerce-checkout .content-section {
  width: min(100% - 32px, 1280px);
  padding: 82px 0 96px;
}

.woocommerce-checkout .content-card > h1 {
  margin: 0 0 28px;
  color: var(--color-text);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout .checkout_coupon {
  max-width: 720px;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info,
.woocommerce-checkout .checkout_coupon {
  border: 1px solid rgba(122, 92, 255, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(91, 92, 255, 0.08), transparent 12rem),
    rgba(14, 18, 32, 0.56);
  color: var(--color-muted);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
}

.woocommerce-checkout form.checkout.ad-checkout-form {
  display: block;
  margin-top: 28px;
}

.ad-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  align-items: start;
  gap: 30px;
}

.ad-checkout-details-card,
.ad-checkout-summary-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(91, 92, 255, 0.17), transparent 15rem),
    linear-gradient(145deg, rgba(14, 18, 32, 0.96), rgba(14, 18, 32, 0.68));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  padding: clamp(24px, 4vw, 38px);
}

.ad-checkout-summary-card {
  position: sticky;
  top: 112px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.4), 0 0 58px rgba(91, 92, 255, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ad-checkout-summary-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 0%, rgba(122, 92, 255, 0.2), transparent 14rem);
  pointer-events: none;
}

.ad-checkout-summary-card > * {
  position: relative;
  z-index: 1;
}

.ad-checkout-card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 12px;
  padding: 0 12px;
  border: 1px solid rgba(122, 92, 255, 0.28);
  border-radius: 999px;
  background: rgba(91, 92, 255, 0.12);
  color: #DDE0FF;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-checkout-details-card h2,
.ad-checkout-summary-card h2 {
  margin: 0 0 24px;
  color: var(--color-text);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.ad-checkout-trust-list {
  display: grid;
  gap: 9px;
  margin: -8px 0 22px;
}

.ad-checkout-trust-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #E8E9FF;
  font-size: 13px;
  font-weight: 900;
}

.ad-checkout-trust-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7A5CFF;
  box-shadow: 0 0 16px rgba(122, 92, 255, 0.64);
}

.woocommerce-checkout .ad-checkout-details-card .col2-set,
.woocommerce-checkout .ad-checkout-details-card .col-1,
.woocommerce-checkout .ad-checkout-details-card .col-2 {
  float: none;
  width: 100%;
}

.woocommerce-checkout .ad-checkout-details-card .col2-set {
  display: grid;
  gap: 22px;
}

.woocommerce-checkout .ad-checkout-details-card .woocommerce-billing-fields,
.woocommerce-checkout .ad-checkout-details-card .woocommerce-shipping-fields,
.woocommerce-checkout .ad-checkout-details-card .woocommerce-additional-fields,
.woocommerce-checkout .ad-checkout-summary-card .woocommerce-checkout-review-order {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.woocommerce-checkout-review-order .variation {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 7px;
  margin: 6px 0 0;
  color: #DDE0FF;
  font-size: 14px;
  line-height: 1.5;
}

.woocommerce-checkout-review-order .variation dt {
  margin: 6px 0 0;
  color: rgba(221, 224, 255, 0.72);
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.35;
}

.woocommerce-checkout-review-order .variation dt:first-child,
.woocommerce-checkout-review-order .variation dt:first-child + dd {
  margin-top: 0;
}

.woocommerce-checkout-review-order .variation dd {
  min-width: 0;
  margin: 6px 0 0;
  color: #F4F5FF;
  font-weight: 600;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.woocommerce-checkout-review-order .variation dd p {
  margin: 0;
}

.woocommerce-checkout-review-order .variation .amount {
  color: #FFFFFF;
  font-size: 14.5px;
  font-weight: 900;
}

.woocommerce-checkout .woocommerce-billing-fields > h3,
.woocommerce-checkout .woocommerce-additional-fields > h3 {
  display: none;
}

.woocommerce-checkout .form-row label {
  color: var(--color-text);
  font-size: 13px;
  font-weight: 900;
}

.woocommerce-checkout .form-row .input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .select2-container--default .select2-selection--single {
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--color-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.woocommerce-checkout .ad-checkout-details-card .form-row input.input-text,
body.woocommerce-checkout .ad-checkout-details-card .form-row textarea.input-text,
body.woocommerce-checkout .ad-checkout-details-card .form-row textarea,
body.woocommerce-checkout .ad-checkout-details-card .select2-container--default .select2-selection--single {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(14, 18, 32, 0.92) !important;
  color: var(--color-text) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055) !important;
  caret-color: var(--color-text);
}

body.woocommerce-checkout .ad-checkout-details-card .form-row input.input-text::placeholder,
body.woocommerce-checkout .ad-checkout-details-card .form-row textarea::placeholder {
  color: rgba(168, 175, 191, 0.82);
  opacity: 1;
}

.woocommerce-checkout .form-row .input-text:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .select2-container--default.select2-container--focus .select2-selection--single {
  border-color: rgba(122, 92, 255, 0.54);
  box-shadow: 0 0 0 4px rgba(91, 92, 255, 0.12);
  outline: 0;
}

body.woocommerce-checkout .ad-checkout-details-card .form-row input.input-text:focus,
body.woocommerce-checkout .ad-checkout-details-card .form-row textarea:focus,
body.woocommerce-checkout .ad-checkout-details-card .select2-container--default.select2-container--focus .select2-selection--single {
  border-color: rgba(122, 92, 255, 0.58) !important;
  box-shadow: 0 0 0 4px rgba(91, 92, 255, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  outline: 0;
}

body.woocommerce-checkout .ad-checkout-details-card input.input-text:-webkit-autofill,
body.woocommerce-checkout .ad-checkout-details-card textarea:-webkit-autofill {
  -webkit-text-fill-color: var(--color-text);
  box-shadow: 0 0 0 1000px #141827 inset, 0 0 0 4px rgba(91, 92, 255, 0.1) !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--color-text);
  line-height: 50px;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 50px;
}

.woocommerce-checkout .ad-checkout-summary-card table.shop_table {
  margin: 0 0 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.woocommerce-checkout .ad-checkout-summary-card table.shop_table th,
.woocommerce-checkout .ad-checkout-summary-card table.shop_table td {
  padding: 16px 0;
  border-color: rgba(255, 255, 255, 0.08);
}

.woocommerce-checkout .ad-checkout-summary-card table.shop_table thead th {
  color: #DDE0FF;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.woocommerce-checkout .ad-checkout-summary-card table.shop_table tfoot .order-total th,
.woocommerce-checkout .ad-checkout-summary-card table.shop_table tfoot .order-total td,
.woocommerce-checkout .ad-checkout-summary-card table.shop_table tfoot .order-total .amount {
  color: var(--color-text);
  font-size: 20px;
  font-weight: 900;
}

.woocommerce-checkout #payment {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.woocommerce-checkout #payment ul.payment_methods,
.woocommerce-checkout #payment div.form-row {
  padding: 18px;
  border-color: rgba(255, 255, 255, 0.08);
}

.woocommerce-checkout #payment ul.payment_methods li.woocommerce-info,
.woocommerce-checkout #payment ul.payment_methods li.woocommerce-notice {
  margin: 0;
  border: 1px solid rgba(122, 92, 255, 0.2);
  border-top: 1px solid rgba(122, 92, 255, 0.56);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(91, 92, 255, 0.16), transparent 11rem),
    rgba(14, 18, 32, 0.9);
  color: var(--color-text);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.woocommerce-checkout #payment div.payment_box {
  border-radius: 18px;
  background: rgba(91, 92, 255, 0.12);
  color: var(--color-muted);
}

.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: rgba(91, 92, 255, 0.12);
}

.woocommerce-checkout #payment #place_order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  width: 100%;
  margin: 10px 0 0;
  border-radius: 999px;
  background: var(--gradient-primary);
  box-shadow: 0 20px 54px rgba(91, 92, 255, 0.38);
  color: var(--color-text);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.woocommerce-checkout #payment #place_order:hover {
  box-shadow: 0 24px 64px rgba(91, 92, 255, 0.5);
  color: var(--color-text);
  transform: translateY(-2px);
}

.woocommerce-checkout #payment #place_order:active {
  transform: translateY(0);
}

.woocommerce-MyAccount-navigation ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-MyAccount-navigation a {
  display: block;
  padding: 13px 15px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  font-weight: 800;
}

.ad-account-page {
  position: relative;
  overflow: hidden;
}

.ad-account-page::before {
  content: "";
  position: absolute;
  top: 6%;
  right: 10%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(91, 92, 255, 0.16);
  filter: blur(120px);
  pointer-events: none;
}

.ad-account-hero {
  position: relative;
  z-index: 1;
  padding: 92px 0 26px;
}

.ad-account-hero .container {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.ad-account-hero h1 {
  margin-top: 18px;
  color: var(--color-text);
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

.ad-account-hero p {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.7;
}

.ad-account-section {
  position: relative;
  z-index: 1;
  padding-top: 26px;
}

.woocommerce-account .ad-account-content-card {
  background: transparent;
  border: 0;
  padding: 0;
}

.woocommerce-account .woocommerce {
  display: grid;
  grid-template-columns: minmax(240px, 0.32fr) minmax(0, 1fr);
  align-items: start;
  gap: 28px;
}

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

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  float: none;
  width: 100%;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  position: sticky;
  top: 112px;
  overflow: hidden;
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(91, 92, 255, 0.18), transparent 12rem),
    linear-gradient(145deg, rgba(14, 18, 32, 0.96), rgba(14, 18, 32, 0.7));
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  gap: 9px;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation a::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(168, 175, 191, 0.58);
  box-shadow: 0 0 12px rgba(168, 175, 191, 0.18);
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  border-color: rgba(122, 92, 255, 0.34);
  background: rgba(91, 92, 255, 0.1);
  color: var(--color-text);
  box-shadow: 0 14px 34px rgba(91, 92, 255, 0.14);
  transform: translateY(-2px);
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
  border-color: rgba(122, 92, 255, 0.52);
  background: var(--gradient-primary);
  color: var(--color-text);
  box-shadow: 0 18px 42px rgba(91, 92, 255, 0.34);
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a::before,
.woocommerce-account .woocommerce-MyAccount-navigation-link--downloads a::before {
  background: #FFFFFF;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.7);
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--downloads a {
  border-color: rgba(122, 92, 255, 0.3);
  background: rgba(91, 92, 255, 0.12);
  color: #E8E9FF;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--edit-address a {
  opacity: 0.72;
}

.woocommerce-account .woocommerce-MyAccount-content {
  min-height: 420px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.18), transparent 15rem),
    linear-gradient(145deg, rgba(14, 18, 32, 0.96), rgba(14, 18, 32, 0.68));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.36), 0 0 58px rgba(91, 92, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.woocommerce-account .woocommerce-MyAccount-content p {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.75;
}

.woocommerce-account .woocommerce-MyAccount-content p a {
  color: #E8E9FF;
  font-weight: 900;
  text-decoration: none;
}

.ad-account-dashboard {
  display: grid;
  gap: 28px;
}

.ad-account-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(122, 92, 255, 0.3);
  border-radius: var(--radius-pill);
  background: rgba(91, 92, 255, 0.12);
  color: #DDE0FF;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: none;
}

.woocommerce-account .woocommerce-MyAccount-content table.shop_table {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(91, 92, 255, 0.12), transparent 12rem),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.22);
}

.woocommerce-account .woocommerce-MyAccount-content table.shop_table th,
.woocommerce-account .woocommerce-MyAccount-content table.shop_table td {
  padding: 16px;
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--color-muted);
}

.woocommerce-account .woocommerce-MyAccount-content table.shop_table th {
  color: #DDE0FF;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: none;
}

.woocommerce-account .woocommerce-MyAccount-content table.shop_table td a {
  color: var(--color-text);
}

.ad-account-welcome h2 {
  margin-top: 16px;
  color: var(--color-text);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  font-weight: 900;
}

.ad-account-welcome p {
  max-width: 720px;
  margin-top: 12px;
}

.ad-account-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ad-account-quick-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 8px;
  min-height: 178px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  color: inherit;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.ad-account-quick-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(91, 92, 255, 0.16);
  filter: blur(10px);
  pointer-events: none;
}

.ad-account-quick-card:hover {
  border-color: rgba(122, 92, 255, 0.42);
  background: rgba(91, 92, 255, 0.1);
  box-shadow: 0 20px 54px rgba(91, 92, 255, 0.16);
  transform: translateY(-4px);
}

.ad-account-quick-card span {
  position: relative;
  z-index: 1;
  color: #DDE0FF;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: none;
}

.ad-account-quick-card strong {
  position: relative;
  z-index: 1;
  color: var(--color-text);
  font-size: 22px;
  line-height: 1.15;
}

.ad-account-quick-card small {
  position: relative;
  z-index: 1;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
}

.ad-account-quick-card-featured {
  border-color: rgba(122, 92, 255, 0.42);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 9rem),
    rgba(91, 92, 255, 0.16);
  box-shadow: 0 18px 52px rgba(91, 92, 255, 0.16);
}

.ad-account-quick-card-muted {
  opacity: 0.8;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-button,
.woocommerce-account .woocommerce-MyAccount-content .button,
.woocommerce-account .woocommerce-MyAccount-content button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--gradient-primary);
  color: var(--color-text);
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(91, 92, 255, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-button:hover,
.woocommerce-account .woocommerce-MyAccount-content .button:hover,
.woocommerce-account .woocommerce-MyAccount-content button.button:hover {
  color: var(--color-text);
  box-shadow: 0 22px 54px rgba(91, 92, 255, 0.42);
  transform: translateY(-2px);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address,
.woocommerce-account .woocommerce-MyAccount-content address {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--color-muted);
  padding: 18px;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h2,
.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3,
.woocommerce-account .woocommerce-MyAccount-content legend {
  color: var(--color-text);
  font-weight: 900;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a {
  color: #DDE0FF;
  font-weight: 900;
}

.woocommerce-account .woocommerce-MyAccount-content fieldset {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.woocommerce-account .woocommerce-MyAccount-content fieldset legend {
  padding: 0 8px;
}

body.woocommerce-account .woocommerce .ad-login-form input.input-text,
body.woocommerce-account .woocommerce .ad-login-form .password-input input.input-text,
body.woocommerce-account .woocommerce-MyAccount-content form .form-row input.input-text,
body.woocommerce-account .woocommerce-MyAccount-content form .form-row textarea,
body.woocommerce-account .woocommerce-MyAccount-content form .form-row select,
body.woocommerce-account .woocommerce-MyAccount-content .select2-container--default .select2-selection--single {
  width: 100% !important;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(14, 18, 32, 0.92) !important;
  color: var(--color-text) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055) !important;
  caret-color: var(--color-text);
}

body.woocommerce-account .woocommerce .ad-login-form .form-row,
body.woocommerce-account .woocommerce-MyAccount-content form .form-row {
  width: 100%;
  box-sizing: border-box;
}

body.woocommerce-account .woocommerce .ad-login-form input.input-text::placeholder,
body.woocommerce-account .woocommerce-MyAccount-content form .form-row input.input-text::placeholder,
body.woocommerce-account .woocommerce-MyAccount-content form .form-row textarea::placeholder {
  color: rgba(168, 175, 191, 0.82);
  opacity: 1;
}

body.woocommerce-account .woocommerce .ad-login-form input.input-text:focus,
body.woocommerce-account .woocommerce .ad-login-form .password-input input.input-text:focus,
body.woocommerce-account .woocommerce-MyAccount-content form .form-row input.input-text:focus,
body.woocommerce-account .woocommerce-MyAccount-content form .form-row textarea:focus,
body.woocommerce-account .woocommerce-MyAccount-content form .form-row select:focus,
body.woocommerce-account .woocommerce-MyAccount-content .select2-container--default.select2-container--focus .select2-selection--single {
  border-color: rgba(122, 92, 255, 0.58) !important;
  box-shadow: 0 0 0 4px rgba(91, 92, 255, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  outline: 0;
}

body.woocommerce-account .woocommerce .ad-login-form input.input-text:-webkit-autofill,
body.woocommerce-account .woocommerce-MyAccount-content form .form-row input.input-text:-webkit-autofill {
  -webkit-text-fill-color: var(--color-text);
  box-shadow: 0 0 0 1000px #141827 inset, 0 0 0 4px rgba(91, 92, 255, 0.1) !important;
}

.woocommerce-account:not(.logged-in) .ad-account-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(560px, 62vh, 720px);
  padding-top: 34px;
  padding-bottom: 108px;
}

.woocommerce-account:not(.logged-in) .ad-account-content-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.woocommerce-account:not(.logged-in) .woocommerce {
  display: flex;
  justify-content: center;
  width: 100%;
}

.ad-login-shell {
  display: grid;
  justify-items: center;
  width: min(100%, 560px);
  margin-inline: auto;
}

.ad-login-shell.has-register-card {
  width: min(100%, 1120px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  align-items: start;
  gap: 24px;
}

.ad-login-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 560px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.2), transparent 15rem),
    linear-gradient(145deg, rgba(14, 18, 32, 0.96), rgba(14, 18, 32, 0.68));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38), 0 0 64px rgba(91, 92, 255, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.woocommerce .ad-login-form {
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0 !important;
}

.ad-login-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 92, 255, 0.72), transparent);
  box-shadow: 0 0 28px rgba(91, 92, 255, 0.34);
}

.ad-login-heading {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ad-login-heading h2 {
  margin-top: 16px;
  color: var(--color-text);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.ad-login-heading p {
  max-width: 430px;
  margin: 14px auto 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
}

.ad-login-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 17px;
  margin-top: 30px;
}

.woocommerce .ad-login-form .form-row {
  margin: 0;
}

.woocommerce .ad-login-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 900;
}

.woocommerce .ad-login-form .input-text {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--color-text);
  padding: 0 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.woocommerce .ad-login-form .input-text:focus {
  border-color: rgba(122, 92, 255, 0.54);
  box-shadow: 0 0 0 4px rgba(91, 92, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  outline: 0;
}

.woocommerce .ad-login-form .password-input {
  display: block;
  position: relative;
}

.woocommerce .ad-login-form .show-password-input {
  top: 50%;
  right: 14px;
  width: 34px;
  height: 34px;
  min-height: 34px;
  margin-top: -17px;
  border-radius: 50%;
  color: #DDE0FF;
}

.ad-login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 800;
}

.ad-login-options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--color-muted);
}

.ad-login-options input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #7A5CFF;
}

.ad-login-lost {
  color: #E8E9FF;
  font-weight: 900;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.ad-login-lost:hover {
  color: var(--color-text);
  text-shadow: 0 0 18px rgba(91, 92, 255, 0.36);
}

.woocommerce .ad-login-submit,
.woocommerce button.ad-login-submit,
.woocommerce .woocommerce-form-login .ad-login-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  margin: 4px 0 0;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--gradient-primary);
  box-shadow: 0 20px 54px rgba(91, 92, 255, 0.38);
  color: var(--color-text);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.woocommerce .ad-login-submit:hover,
.woocommerce button.ad-login-submit:hover,
.woocommerce .woocommerce-form-login .ad-login-submit:hover {
  box-shadow: 0 26px 68px rgba(91, 92, 255, 0.5), 0 0 36px rgba(122, 92, 255, 0.22);
  color: var(--color-text);
  transform: translateY(-2px);
}

.ad-login-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 5px;
}

.ad-login-trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.045);
  color: #DDE0FF;
  font-size: 12px;
  font-weight: 900;
}

.ad-login-trust-row li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7A5CFF;
  box-shadow: 0 0 16px rgba(122, 92, 255, 0.64);
}

.ad-register-card {
  opacity: 0.9;
}

.ad-login-note {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--color-muted);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: #7A5CFF;
  border-radius: 18px;
  background: rgba(14, 18, 32, 0.92);
  color: var(--color-text);
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: #7A5CFF;
}

.ad-product-actions {
  display: flex;
  align-items: center;
}

.ad-product-actions {
  gap: 8px;
  flex: 0 0 auto;
  flex-wrap: nowrap;
}

.ad-product-actions .ad-demo-link,
.ad-product-actions .button,
.ad-product-actions .add_to_cart_button,
.ad-product-actions .added_to_cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  min-height: 34px;
  margin: 0 !important;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1;
  vertical-align: middle;
}

.ad-product-actions .ad-demo-link,
.ad-product-actions .button,
.ad-product-actions .add_to_cart_button,
.ad-product-actions .added_to_cart {
  box-sizing: border-box;
  padding-right: 13px;
  padding-left: 13px;
  border-radius: var(--radius-pill);
}

.ad-product-actions .ad-demo-link {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.ad-product-actions .ad-demo-link:hover {
  border-color: rgba(122, 92, 255, 0.52);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 12px 28px rgba(92, 92, 255, 0.2);
  color: var(--color-text);
  transform: translateY(-2px);
}

.ad-product-actions .ad-demo-link:active {
  transform: translateY(0);
}

/* Premium cart page */
.woocommerce-cart .content-section {
  width: min(100% - 40px, 1280px);
  padding: 96px 0 112px;
}

.woocommerce-cart .content-card > h1 {
  margin-bottom: 34px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.04;
  font-weight: 900;
}

.ad-empty-cart {
  position: relative;
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid var(--color-border);
  border-radius: 32px;
  background:
    radial-gradient(circle at 76% 18%, rgba(122, 92, 255, 0.28), transparent 16rem),
    radial-gradient(circle at 16% 84%, rgba(91, 92, 255, 0.16), transparent 14rem),
    linear-gradient(145deg, rgba(14, 18, 32, 0.98), rgba(14, 18, 32, 0.68));
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42), 0 0 62px rgba(91, 92, 255, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-align: center;
}

.ad-empty-cart-glow {
  position: absolute;
  inset: -30% auto auto 50%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(92, 92, 255, 0.22);
  filter: blur(100px);
  transform: translateX(-50%);
  pointer-events: none;
}

.ad-empty-cart > *:not(.ad-empty-cart-glow) {
  position: relative;
  z-index: 1;
}

.ad-empty-cart h2 {
  margin-top: 22px;
  color: var(--color-text);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 900;
}

.ad-empty-cart p {
  max-width: 520px;
  margin: 18px auto 0;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.7;
}

.ad-empty-cart .button {
  margin-top: 30px;
  min-height: 56px;
  padding-inline: 28px;
  box-shadow: 0 20px 54px rgba(91, 92, 255, 0.34);
}

.ad-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  align-items: start;
  gap: 30px;
  min-width: 0;
}

.ad-cart-products-card,
.ad-cart-summary-card {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(91, 92, 255, 0.16), transparent 16rem),
    linear-gradient(145deg, rgba(14, 18, 32, 0.96), rgba(14, 18, 32, 0.68));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.ad-cart-products-card {
  overflow: hidden;
  padding: clamp(20px, 3vw, 30px);
}

.ad-cart-summary-card {
  position: sticky;
  top: 112px;
  overflow: hidden;
  padding: clamp(22px, 3vw, 30px);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38), 0 0 54px rgba(91, 92, 255, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ad-cart-summary-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(122, 92, 255, 0.18), transparent 14rem);
  pointer-events: none;
}

.ad-cart-summary-card > * {
  position: relative;
  z-index: 1;
}

.woocommerce-cart .woocommerce-cart-form {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.woocommerce-cart .ad-cart-items {
  display: grid;
  gap: 14px;
}

.woocommerce-cart .ad-cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 22px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(122, 92, 255, 0.12), transparent 13rem),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.woocommerce-cart .ad-cart-item:hover {
  border-color: rgba(122, 92, 255, 0.22);
  background:
    radial-gradient(circle at top left, rgba(122, 92, 255, 0.16), transparent 13rem),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.woocommerce-cart .ad-cart-item-main {
  display: grid;
  grid-template-columns: 34px 92px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.woocommerce-cart .ad-cart-product-thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 68px;
  padding: 7px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(6, 7, 11, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.woocommerce-cart .ad-cart-product-thumb img,
.woocommerce-cart .ad-cart-product-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  border: 0;
  border-radius: 11px;
  background: transparent;
  object-fit: contain;
}

.woocommerce-cart .ad-cart-product-title {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.woocommerce-cart .ad-cart-product-title > a {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
  text-decoration: none;
}

.woocommerce-cart .ad-cart-product-title > a:hover {
  color: #E8E9FF;
}

.woocommerce-cart .ad-cart-product-title dl,
.woocommerce-cart .ad-cart-product-title p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.5;
}

.woocommerce-cart .ad-cart-item-details {
  display: grid;
  grid-template-columns: minmax(86px, 1fr) minmax(86px, 1fr) minmax(96px, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.woocommerce-cart .ad-cart-item-stat {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.woocommerce-cart .ad-cart-item-stat span {
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.woocommerce-cart .ad-cart-item-stat strong,
.woocommerce-cart .ad-cart-item-stat .amount {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.woocommerce-cart .ad-cart-item-quantity {
  justify-items: center;
  text-align: center;
}

.woocommerce-cart .ad-cart-item-remove .remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-muted) !important;
  font-size: 22px;
  line-height: 1;
}

.woocommerce-cart .ad-cart-item-remove .remove:hover {
  background: rgba(122, 92, 255, 0.15);
  color: var(--color-text) !important;
}

.woocommerce-cart .ad-cart-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
  padding: 24px 0 0;
}

.woocommerce-cart .ad-cart-actions .coupon {
  display: flex;
  align-items: center;
  flex: 1 1 520px;
  max-width: 620px;
  min-width: 0;
  flex-wrap: nowrap;
  gap: 10px;
}

.woocommerce-cart .ad-cart-actions .input-text {
  flex: 1 1 280px;
  width: auto;
  min-width: 0;
  min-height: 46px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text);
  padding: 10px 14px;
}

.woocommerce-cart .ad-cart-actions .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding-inline: 18px;
  border-radius: 16px;
  white-space: nowrap;
}

.woocommerce-cart .ad-cart-actions > .button[name="update_cart"] {
  flex: 0 0 auto;
  margin-left: auto;
}

.woocommerce-cart table.shop_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.woocommerce-cart table.shop_table thead th {
  padding: 0 14px 18px;
  border-bottom: 1px solid var(--color-border);
  color: #DDE0FF;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.woocommerce-cart table.shop_table thead th.product-remove {
  width: 44px;
  padding-left: 0;
}

.woocommerce-cart table.shop_table thead th.product-name {
  width: 46%;
}

.woocommerce-cart table.shop_table thead th.product-price,
.woocommerce-cart table.shop_table thead th.product-subtotal {
  width: 15%;
  text-align: right;
}

.woocommerce-cart table.shop_table thead th.product-quantity {
  width: 14%;
  text-align: center;
}

.woocommerce-cart table.shop_table td {
  padding: 18px 14px;
  border-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: middle;
}

.woocommerce-cart table.shop_table tr.cart_item {
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.woocommerce-cart table.shop_table tr.cart_item:hover {
  background: rgba(255, 255, 255, 0.018);
}

.woocommerce-cart table.shop_table tr:last-child td {
  border-bottom: 0;
}

.woocommerce-cart table.shop_table td.product-remove {
  width: 44px;
  padding-left: 0;
  padding-right: 8px;
  text-align: center;
}

.woocommerce-cart table.shop_table .ad-cart-product-thumb {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 68px;
  padding: 7px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(6, 7, 11, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.woocommerce-cart table.shop_table .ad-cart-product-thumb img,
.woocommerce-cart table.shop_table .ad-cart-product-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  border: 0;
  border-radius: 11px;
  background: transparent;
  object-fit: contain;
}

.woocommerce-cart table.shop_table td.product-name {
  min-width: 280px;
  padding-left: 10px;
}

.woocommerce-cart table.shop_table .ad-cart-product-identity {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.woocommerce-cart table.shop_table .ad-cart-product-title {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.woocommerce-cart table.shop_table .ad-cart-product-title > a {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
  text-decoration: none;
}

.woocommerce-cart table.shop_table .ad-cart-product-title > a:hover {
  color: #E8E9FF;
}

.woocommerce-cart table.shop_table .product-name dl,
.woocommerce-cart table.shop_table .product-name p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.5;
}

.woocommerce-cart table.shop_table .product-price,
.woocommerce-cart table.shop_table .product-subtotal,
.woocommerce-cart table.shop_table .amount {
  color: var(--color-text);
  font-weight: 900;
}

.woocommerce-cart table.shop_table td.product-price,
.woocommerce-cart table.shop_table td.product-subtotal {
  text-align: right;
  white-space: nowrap;
}

.woocommerce-cart table.shop_table td.product-quantity {
  text-align: center;
}

.woocommerce-cart table.shop_table .remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-muted) !important;
  font-size: 22px;
  line-height: 1;
}

.woocommerce-cart table.shop_table .remove:hover {
  background: rgba(122, 92, 255, 0.15);
  color: var(--color-text) !important;
}

.woocommerce-cart .quantity .qty {
  width: 74px;
  min-height: 44px;
  border-radius: 16px;
  text-align: center;
}

.woocommerce-cart table.shop_table td.actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
  padding: 24px 0 0;
}

.woocommerce-cart table.shop_table td.actions .coupon {
  display: flex;
  align-items: center;
  flex: 1 1 520px;
  max-width: 620px;
  min-width: 0;
  flex-wrap: nowrap;
  gap: 10px;
}

.woocommerce-cart table.shop_table td.actions .input-text {
  flex: 1 1 280px;
  width: auto;
  min-width: 0;
  min-height: 46px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text);
  padding: 10px 14px;
}

.woocommerce-cart table.shop_table td.actions .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding-inline: 18px;
  border-radius: 16px;
  white-space: nowrap;
}

.woocommerce-cart table.shop_table td.actions > .button[name="update_cart"] {
  flex: 0 0 auto;
  margin-left: auto;
}

.woocommerce-cart .cart-collaterals {
  margin-top: 0;
}

.woocommerce-cart .cart-collaterals .cart_totals {
  float: none;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.woocommerce-cart .cart_totals h2 {
  margin-bottom: 22px;
  color: var(--color-text);
  font-size: 26px;
  line-height: 1.15;
  font-weight: 900;
}

.woocommerce-cart .cart_totals table.shop_table {
  margin-bottom: 24px;
}

.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table td {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.woocommerce-cart .cart_totals table.shop_table th {
  color: var(--color-muted);
  font-weight: 800;
}

.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td,
.woocommerce-cart .cart_totals .order-total .amount {
  color: var(--color-text);
  font-size: 22px;
  font-weight: 900;
}

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

.ad-cart-summary-trust {
  display: grid;
  gap: 10px;
  margin: 20px 0 12px;
}

.ad-cart-summary-trust span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: #DDE0FF;
  font-size: 13px;
  font-weight: 800;
}

.ad-cart-summary-trust span::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 16px var(--color-glow);
}

.ad-cart-summary-note {
  margin: 0 0 18px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  width: 100%;
  margin: 0;
  border-radius: 999px;
  background: var(--gradient-primary);
  box-shadow: 0 20px 54px rgba(91, 92, 255, 0.38);
  color: var(--color-text);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  background: var(--gradient-primary);
  color: var(--color-text);
  box-shadow: 0 24px 64px rgba(91, 92, 255, 0.5);
  transform: translateY(-2px);
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:active {
  transform: translateY(0);
}

.woocommerce-cart .wc-block-cart {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  align-items: start;
  gap: 30px;
}

.woocommerce-cart .wc-block-cart__main,
.woocommerce-cart .wc-block-cart__sidebar {
  position: relative;
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(91, 92, 255, 0.16), transparent 16rem),
    linear-gradient(145deg, rgba(14, 18, 32, 0.96), rgba(14, 18, 32, 0.68));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  padding: clamp(20px, 3vw, 30px);
}

.woocommerce-cart .wc-block-cart__sidebar {
  position: sticky;
  top: 112px;
  overflow: hidden;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38), 0 0 54px rgba(91, 92, 255, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.woocommerce-cart .wc-block-cart__sidebar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(122, 92, 255, 0.18), transparent 14rem);
  pointer-events: none;
}

.woocommerce-cart .wc-block-cart__sidebar > * {
  position: relative;
  z-index: 1;
}

.woocommerce-cart .wc-block-cart-items,
.woocommerce-cart .wc-block-cart-items th,
.woocommerce-cart .wc-block-cart-items td,
.woocommerce-cart .wc-block-components-totals-wrapper {
  border-color: rgba(255, 255, 255, 0.07) !important;
}

.woocommerce-cart .wc-block-cart-items th {
  color: #DDE0FF;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.woocommerce-cart .wc-block-cart-items__row {
  padding: 20px 0;
}

.woocommerce-cart .wc-block-cart-item__image img {
  border: 1px solid var(--color-border);
  border-radius: 16px;
}

.woocommerce-cart .wc-block-cart-item__product .wc-block-components-product-name {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 900;
}

.woocommerce-cart .wc-block-components-product-price,
.woocommerce-cart .wc-block-components-totals-item__value,
.woocommerce-cart .wc-block-formatted-money-amount {
  color: var(--color-text);
  font-weight: 900;
}

.woocommerce-cart .wc-block-components-quantity-selector {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.woocommerce-cart .wc-block-components-quantity-selector input,
.woocommerce-cart .wc-block-components-quantity-selector button {
  color: var(--color-text);
  min-height: 42px;
}

.woocommerce-cart .wc-block-components-totals-coupon__button,
.woocommerce-cart .wc-block-components-button {
  border-radius: 999px;
  font-weight: 900;
}

.woocommerce-cart .wc-block-cart__submit-button,
.woocommerce-cart .wc-block-components-button.wc-block-cart__submit-button {
  min-height: 58px;
  width: 100%;
  background: var(--gradient-primary);
  box-shadow: 0 20px 54px rgba(91, 92, 255, 0.38);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.woocommerce-cart .wc-block-cart__submit-button:hover,
.woocommerce-cart .wc-block-components-button.wc-block-cart__submit-button:hover {
  box-shadow: 0 24px 64px rgba(91, 92, 255, 0.5);
  color: var(--color-text);
  transform: translateY(-2px);
}

/* Contact page */
.contact-page {
  position: relative;
  overflow: hidden;
}

.contact-page::before {
  content: "";
  position: absolute;
  top: 120px;
  right: -160px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: rgba(92, 92, 255, 0.18);
  filter: blur(120px);
  pointer-events: none;
}

.contact-hero {
  position: relative;
  z-index: 1;
  padding: 122px 0 46px;
  text-align: center;
}

.contact-hero h1 {
  max-width: 860px;
  margin: 24px auto 0;
  color: var(--color-text);
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.04;
  font-weight: 900;
}

.contact-hero p {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--color-muted);
  font-size: clamp(17px, 2vw, 21px);
}

.contact-section {
  position: relative;
  z-index: 1;
  padding: 26px 0 108px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.contact-info-card,
.contact-form-card,
.contact-trust-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at top right, rgba(91, 92, 255, 0.18), transparent 12rem),
    linear-gradient(145deg, rgba(14, 18, 32, 0.96), rgba(14, 18, 32, 0.66));
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.contact-info-card {
  min-height: 132px;
  padding: 24px;
}

.contact-info-card span {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 800;
}

.contact-info-card strong {
  display: block;
  margin-top: 12px;
  color: var(--color-text);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.2;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
  align-items: start;
  gap: 28px;
}

.contact-form-card,
.contact-trust-card {
  padding: clamp(24px, 4vw, 38px);
}

.contact-form-heading {
  margin-bottom: 26px;
}

.contact-form-heading h2,
.contact-trust-card h2 {
  margin-top: 18px;
  color: var(--color-text);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.contact-form-card label {
  display: block;
  margin: 18px 0 8px;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 900;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: var(--color-text);
  font: inherit;
  outline: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-form-card input {
  min-height: 52px;
  padding: 0 16px;
}

.contact-form-card textarea {
  min-height: 154px;
  padding: 16px;
  resize: vertical;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: rgba(168, 175, 191, 0.72);
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: rgba(122, 92, 255, 0.54);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 4px rgba(91, 92, 255, 0.12);
}

.contact-form-card .button {
  width: 100%;
  margin-top: 24px;
  border: 0;
  cursor: pointer;
}

.contact-trust-card {
  position: sticky;
  top: 112px;
}

.contact-trust-card ul {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-trust-card li {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-trust-card strong {
  color: var(--color-text);
  font-size: 17px;
}

.contact-trust-card p {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 14px;
}

/* About page */
.about-page {
  position: relative;
  overflow: hidden;
}

.about-page::before {
  content: "";
  position: absolute;
  top: 120px;
  left: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(92, 92, 255, 0.17);
  filter: blur(120px);
  pointer-events: none;
}

.about-hero {
  position: relative;
  z-index: 1;
  padding: 124px 0 54px;
  text-align: center;
}

.about-hero h1 {
  max-width: 980px;
  margin: 24px auto 0;
  color: var(--color-text);
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.02;
  font-weight: 900;
}

.about-hero p {
  max-width: 780px;
  margin: 24px auto 0;
  color: var(--color-muted);
  font-size: clamp(17px, 2vw, 21px);
}

.about-section {
  position: relative;
  z-index: 1;
  padding: 34px 0 76px;
}

.about-intro-card,
.about-card,
.about-stat-card,
.about-cta-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at top right, rgba(91, 92, 255, 0.18), transparent 13rem),
    linear-gradient(145deg, rgba(14, 18, 32, 0.96), rgba(14, 18, 32, 0.66));
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.about-intro-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  text-align: center;
}

.about-intro-card h2 {
  max-width: 820px;
  margin: 20px auto 0;
  color: var(--color-text);
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.08;
}

.about-intro-card p {
  max-width: 780px;
  margin: 22px auto 0;
  color: var(--color-muted);
  font-size: 17px;
}

.about-grid {
  display: grid;
  gap: 22px;
}

.about-work-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.about-trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-card {
  position: relative;
  overflow: hidden;
  min-height: 238px;
  padding: 26px;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.about-card:hover {
  border-color: rgba(122, 92, 255, 0.38);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34), 0 0 38px rgba(91, 92, 255, 0.13);
  transform: translateY(-6px);
}

.about-card::after {
  content: "";
  position: absolute;
  inset: auto 26px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 92, 255, 0.62), transparent);
}

.about-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(122, 92, 255, 0.32);
  border-radius: 16px;
  background: rgba(91, 92, 255, 0.12);
  color: #E4E5FF;
  font-size: 14px;
  font-weight: 900;
}

.about-trust-grid .about-card span {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 22px rgba(91, 92, 255, 0.42);
}

.about-card h3 {
  margin-top: 24px;
  color: var(--color-text);
  font-size: 22px;
  line-height: 1.2;
}

.about-card p {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 15px;
}

.about-stats-section {
  padding-top: 18px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-stat-card {
  min-height: 150px;
  padding: 26px;
}

.about-stat-card strong {
  display: block;
  color: var(--color-text);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.about-stat-card span {
  display: block;
  margin-top: 12px;
  color: var(--color-muted);
  font-weight: 800;
}

.about-cta-section {
  position: relative;
  z-index: 1;
  padding: 8px 0 108px;
}

.about-cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 5vw, 58px);
  text-align: center;
}

.about-cta-card::before {
  content: "";
  position: absolute;
  inset: auto 10% -45%;
  height: 220px;
  border-radius: 50%;
  background: rgba(92, 92, 255, 0.24);
  filter: blur(90px);
}

.about-cta-card > * {
  position: relative;
  z-index: 1;
}

.about-cta-card h2 {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--color-text);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
}

.about-cta-card .button {
  margin-top: 30px;
}

/* Services page */
.services-page {
  position: relative;
  overflow: hidden;
}

.services-page::before {
  content: "";
  position: absolute;
  top: 120px;
  right: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(92, 92, 255, 0.17);
  filter: blur(120px);
  pointer-events: none;
}

.services-page-hero {
  position: relative;
  z-index: 1;
  padding: 124px 0 54px;
  text-align: center;
}

.services-page-hero h1 {
  max-width: 900px;
  margin: 24px auto 0;
  color: var(--color-text);
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.02;
  font-weight: 900;
}

.services-page-hero p {
  max-width: 780px;
  margin: 24px auto 0;
  color: var(--color-muted);
  font-size: clamp(17px, 2vw, 21px);
}

.services-page-section {
  position: relative;
  z-index: 1;
  padding: 34px 0 76px;
}

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

.services-page-card,
.services-process-card,
.services-fit-card,
.services-page-cta-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at top right, rgba(91, 92, 255, 0.18), transparent 13rem),
    linear-gradient(145deg, rgba(14, 18, 32, 0.96), rgba(14, 18, 32, 0.66));
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.services-page-card {
  position: relative;
  overflow: hidden;
  min-height: 292px;
  padding: 28px;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.services-page-card:hover {
  border-color: rgba(122, 92, 255, 0.38);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34), 0 0 38px rgba(91, 92, 255, 0.13);
  transform: translateY(-6px);
}

.services-page-card::after {
  content: "";
  position: absolute;
  inset: auto 26px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 92, 255, 0.62), transparent);
}

.services-page-card span,
.services-process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(122, 92, 255, 0.32);
  border-radius: 16px;
  background: rgba(91, 92, 255, 0.12);
  color: #E4E5FF;
  font-size: 14px;
  font-weight: 900;
}

.services-page-card h3 {
  margin-top: 24px;
  color: var(--color-text);
  font-size: 23px;
  line-height: 1.18;
}

.services-page-card p {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 15px;
}

.services-page-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 22px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 850;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.services-page-card a:hover {
  border-color: rgba(122, 92, 255, 0.42);
  background: rgba(122, 92, 255, 0.12);
  box-shadow: 0 0 26px rgba(91, 92, 255, 0.2);
  transform: translateY(-2px);
}

.services-process-section {
  padding-top: 8px;
}

.services-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.services-process-card {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  padding: 26px;
}

.services-process-card h3 {
  margin-top: 22px;
  color: var(--color-text);
  font-size: 20px;
  line-height: 1.22;
}

.services-fit-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
}

.services-fit-card h2 {
  max-width: 760px;
  margin-top: 22px;
  color: var(--color-text);
  font-size: clamp(32px, 4.6vw, 54px);
  line-height: 1.07;
}

.services-fit-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-fit-list li {
  position: relative;
  padding: 16px 18px 16px 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--color-text);
  font-weight: 800;
}

.services-fit-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 20px rgba(91, 92, 255, 0.42);
  transform: translateY(-50%);
}

.services-page-cta-section {
  position: relative;
  z-index: 1;
  padding: 8px 0 108px;
}

.services-page-cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 5vw, 58px);
  text-align: center;
}

.services-page-cta-card::before {
  content: "";
  position: absolute;
  inset: auto 10% -45%;
  height: 220px;
  border-radius: 50%;
  background: rgba(92, 92, 255, 0.24);
  filter: blur(90px);
}

.services-page-cta-card > * {
  position: relative;
  z-index: 1;
}

.services-page-cta-card h2 {
  max-width: 820px;
  margin: 22px auto 0;
  color: var(--color-text);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
}

.services-page-cta-card .button {
  margin-top: 30px;
}

/* License policy page */
.license-page {
  position: relative;
  overflow: hidden;
}

.license-page::before {
  content: "";
  position: absolute;
  top: 130px;
  right: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(92, 92, 255, 0.17);
  filter: blur(120px);
  pointer-events: none;
}

.license-hero {
  position: relative;
  z-index: 1;
  padding: 124px 0 54px;
  text-align: center;
}

.license-hero h1 {
  max-width: 900px;
  margin: 24px auto 0;
  color: var(--color-text);
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  font-weight: 900;
}

.license-hero p {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--color-muted);
  font-size: clamp(17px, 2vw, 21px);
}

.license-section {
  position: relative;
  z-index: 1;
  padding: 34px 0 76px;
}

.license-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.license-card,
.license-cta-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at top right, rgba(91, 92, 255, 0.18), transparent 13rem),
    linear-gradient(145deg, rgba(14, 18, 32, 0.96), rgba(14, 18, 32, 0.66));
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.license-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: clamp(24px, 4vw, 36px);
}

.license-card-featured,
.license-note-card {
  grid-column: span 2;
}

.license-card::after {
  content: "";
  position: absolute;
  inset: auto 28px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 92, 255, 0.62), transparent);
}

.license-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border: 1px solid rgba(122, 92, 255, 0.3);
  border-radius: var(--radius-pill);
  background: rgba(91, 92, 255, 0.12);
  color: #E4E5FF;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.license-card h2 {
  margin-top: 22px;
  color: var(--color-text);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.12;
}

.license-card p {
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 19px;
}

.license-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.license-card li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-muted);
  font-size: 16px;
  font-weight: 700;
}

.license-card li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 18px rgba(91, 92, 255, 0.45);
  transform: translateY(-50%);
}

.license-cta-section {
  position: relative;
  z-index: 1;
  padding: 8px 0 108px;
}

.license-cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 5vw, 58px);
  text-align: center;
}

.license-cta-card::before {
  content: "";
  position: absolute;
  inset: auto 10% -45%;
  height: 220px;
  border-radius: 50%;
  background: rgba(92, 92, 255, 0.24);
  filter: blur(90px);
}

.license-cta-card > * {
  position: relative;
  z-index: 1;
}

.license-cta-card h2 {
  max-width: 740px;
  margin: 22px auto 0;
  color: var(--color-text);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
}

.license-cta-card .button {
  margin-top: 30px;
  min-height: 62px;
  padding: 17px 30px;
  font-size: 17px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.license-cta-card .button:hover {
  box-shadow: 0 24px 68px rgba(91, 92, 255, 0.48);
  transform: translateY(-2px);
}

/* Refund policy page */
.refund-page {
  position: relative;
  overflow: hidden;
}

.refund-page::before {
  content: "";
  position: absolute;
  top: 130px;
  left: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(92, 92, 255, 0.17);
  filter: blur(120px);
  pointer-events: none;
}

.refund-hero {
  position: relative;
  z-index: 1;
  padding: 124px 0 54px;
  text-align: center;
}

.refund-hero h1 {
  max-width: 980px;
  margin: 24px auto 0;
  color: var(--color-text);
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  font-weight: 900;
}

.refund-hero p {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--color-muted);
  font-size: clamp(19px, 2.25vw, 24px);
}

.refund-section {
  position: relative;
  z-index: 1;
  padding: 34px 0 76px;
}

.refund-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.refund-card,
.refund-cta-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at top right, rgba(91, 92, 255, 0.18), transparent 13rem),
    linear-gradient(145deg, rgba(14, 18, 32, 0.96), rgba(14, 18, 32, 0.66));
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.refund-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: clamp(24px, 4vw, 36px);
}

.refund-card-featured {
  grid-column: span 2;
}

.refund-card::after {
  content: "";
  position: absolute;
  inset: auto 28px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 92, 255, 0.62), transparent);
}

.refund-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border: 1px solid rgba(122, 92, 255, 0.3);
  border-radius: var(--radius-pill);
  background: rgba(91, 92, 255, 0.12);
  color: #E4E5FF;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.refund-card h2 {
  margin-top: 22px;
  color: var(--color-text);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.12;
}

.refund-card p {
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 19px;
}

.refund-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.refund-card li,
.refund-steps li,
.refund-contact-list span {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-muted);
  font-size: 16px;
  font-weight: 700;
}

.refund-card li::before,
.refund-contact-list span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 18px rgba(91, 92, 255, 0.45);
  transform: translateY(-50%);
}

.refund-steps {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: refund-step;
}

.refund-steps li {
  counter-increment: refund-step;
  padding-left: 54px;
}

.refund-steps li::before {
  content: counter(refund-step);
  position: absolute;
  top: 50%;
  left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 18px rgba(91, 92, 255, 0.45);
  color: var(--color-text);
  font-size: 12px;
  font-weight: 900;
  transform: translateY(-50%);
}

.refund-contact-card {
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.24), transparent 15rem),
    linear-gradient(145deg, rgba(14, 18, 32, 0.98), rgba(14, 18, 32, 0.68));
}

.refund-contact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.refund-cta-section {
  position: relative;
  z-index: 1;
  padding: 8px 0 108px;
}

.refund-cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 5vw, 58px);
  text-align: center;
}

.refund-cta-card::before {
  content: "";
  position: absolute;
  inset: auto 10% -45%;
  height: 220px;
  border-radius: 50%;
  background: rgba(92, 92, 255, 0.24);
  filter: blur(90px);
}

.refund-cta-card > * {
  position: relative;
  z-index: 1;
}

.refund-cta-card h2 {
  max-width: 740px;
  margin: 22px auto 0;
  color: var(--color-text);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
}

.refund-cta-card .button {
  margin-top: 30px;
  min-height: 66px;
  padding: 19px 34px;
  font-size: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.refund-cta-card .button:hover {
  box-shadow: 0 24px 68px rgba(91, 92, 255, 0.48);
  transform: translateY(-2px);
}

/* Premium legal pages */
.legal-page {
  position: relative;
  overflow: hidden;
}

.legal-page::before,
.legal-page::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  pointer-events: none;
}

.legal-page::before {
  top: 120px;
  left: -220px;
  background: rgba(91, 92, 255, 0.17);
  filter: blur(120px);
}

.legal-page::after {
  top: 340px;
  right: -240px;
  background: rgba(122, 92, 255, 0.14);
  filter: blur(130px);
}

.legal-hero,
.legal-content-section,
.legal-cta-section {
  position: relative;
  z-index: 1;
}

.legal-hero {
  padding: 124px 0 44px;
}

.legal-hero-inner {
  text-align: center;
}

.legal-hero h1 {
  max-width: 980px;
  margin: 24px auto 0;
  color: var(--color-text);
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: 0;
}

.legal-hero p {
  max-width: 820px;
  margin: 24px auto 0;
  color: var(--color-muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

.legal-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(34px, 5vw, 54px);
}

.legal-summary-card,
.legal-card,
.legal-cta-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at top right, rgba(91, 92, 255, 0.18), transparent 13rem),
    linear-gradient(145deg, rgba(14, 18, 32, 0.96), rgba(14, 18, 32, 0.66));
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.legal-summary-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  text-align: left;
}

.legal-summary-card::after {
  content: "";
  position: absolute;
  inset: auto 20px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 92, 255, 0.58), transparent);
}

.legal-summary-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(122, 92, 255, 0.32);
  border-radius: 15px;
  background: rgba(91, 92, 255, 0.12);
  color: #E4E5FF;
  font-size: 13px;
  font-weight: 950;
}

.legal-summary-card strong {
  display: block;
  margin-top: 18px;
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.2;
}

.legal-summary-card p {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.65;
}

.legal-content-section {
  padding: 36px 0 80px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 20px;
}

.legal-card {
  position: relative;
  overflow: hidden;
  min-height: 272px;
  padding: clamp(26px, 4vw, 40px);
}

.legal-card-featured,
.legal-note-card {
  grid-column: span 2;
}

.legal-page-license .legal-card-wide {
  grid-column: span 2;
  min-height: 220px;
}

.legal-card::after {
  content: "";
  position: absolute;
  inset: auto 28px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 92, 255, 0.62), transparent);
}

.legal-kicker,
.legal-note-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(122, 92, 255, 0.32);
  border-radius: var(--radius-pill);
  background: rgba(91, 92, 255, 0.12);
  color: #E4E5FF;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.legal-note-pill {
  border-color: rgba(122, 92, 255, 0.48);
  background: rgba(122, 92, 255, 0.16);
  box-shadow: 0 0 24px rgba(91, 92, 255, 0.2);
}

.legal-card h2 {
  margin-top: 22px;
  color: var(--color-text);
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.12;
}

.legal-card p {
  max-width: 900px;
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.78;
}

.legal-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.legal-card li {
  position: relative;
  padding: 15px 16px 15px 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 17px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.026));
  color: #D5DAE8;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.55;
}

.legal-card li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 17px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 18px rgba(91, 92, 255, 0.48);
  transform: translateY(-50%);
}

.legal-note-card {
  border-color: rgba(122, 92, 255, 0.36);
  background:
    radial-gradient(circle at top left, rgba(122, 92, 255, 0.22), transparent 14rem),
    linear-gradient(145deg, rgba(14, 18, 32, 0.98), rgba(14, 18, 32, 0.72));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34), 0 0 42px rgba(91, 92, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.legal-note-card h2 {
  font-size: clamp(26px, 3.6vw, 40px);
}

.legal-card .button {
  margin-top: 26px;
}

.legal-cta-section {
  padding: 8px 0 108px;
}

.legal-cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 62px);
  text-align: center;
}

.legal-cta-card::before {
  content: "";
  position: absolute;
  inset: auto 10% -45%;
  height: 220px;
  border-radius: 50%;
  background: rgba(92, 92, 255, 0.25);
  filter: blur(90px);
}

.legal-cta-card > * {
  position: relative;
  z-index: 1;
}

.legal-cta-card h2 {
  max-width: 780px;
  margin: 22px auto 0;
  color: var(--color-text);
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.06;
}

.legal-cta-card .button {
  min-height: 64px;
  margin-top: 30px;
  padding: 18px 34px;
  font-size: 17px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.legal-cta-card .button:hover {
  box-shadow: 0 26px 72px rgba(91, 92, 255, 0.5), 0 0 38px rgba(122, 92, 255, 0.24);
  transform: translateY(-2px);
}

/* Privacy and KVKK pages */
.privacy-page,
.kvkk-page {
  position: relative;
  overflow: hidden;
}

.privacy-page::before,
.kvkk-page::before {
  content: "";
  position: absolute;
  top: 130px;
  right: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(92, 92, 255, 0.17);
  filter: blur(120px);
  pointer-events: none;
}

.privacy-hero,
.kvkk-hero {
  position: relative;
  z-index: 1;
  padding: 124px 0 54px;
  text-align: center;
}

.privacy-hero h1,
.kvkk-hero h1 {
  max-width: 980px;
  margin: 24px auto 0;
  color: var(--color-text);
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.02;
  font-weight: 900;
}

.privacy-hero p,
.kvkk-hero p {
  max-width: 800px;
  margin: 24px auto 0;
  color: var(--color-muted);
  font-size: clamp(17px, 2vw, 21px);
}

.privacy-section,
.kvkk-section {
  position: relative;
  z-index: 1;
  padding: 34px 0 108px;
}

.privacy-layout,
.kvkk-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.privacy-card,
.kvkk-card {
  position: relative;
  overflow: hidden;
  min-height: 248px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at top right, rgba(91, 92, 255, 0.18), transparent 13rem),
    linear-gradient(145deg, rgba(14, 18, 32, 0.96), rgba(14, 18, 32, 0.66));
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.privacy-card-featured,
.privacy-note-card,
.kvkk-card-featured,
.kvkk-note-card {
  grid-column: span 2;
}

.privacy-card::after,
.kvkk-card::after {
  content: "";
  position: absolute;
  inset: auto 26px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 92, 255, 0.62), transparent);
}

.privacy-kicker,
.kvkk-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(122, 92, 255, 0.28);
  border-radius: var(--radius-pill);
  background: rgba(91, 92, 255, 0.1);
  color: #E4E5FF;
  font-size: 12px;
  font-weight: 900;
}

.privacy-card h2,
.kvkk-card h2 {
  margin-top: 18px;
  color: var(--color-text);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.privacy-card p,
.kvkk-card p {
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.75;
}

.privacy-card .button,
.kvkk-card .button {
  margin-top: 24px;
}

/* Blog */
.blog-page,
.single-blog-page {
  position: relative;
  overflow: hidden;
}

.blog-page::before,
.single-blog-page::before {
  content: "";
  position: absolute;
  top: 120px;
  right: -170px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(92, 92, 255, 0.17);
  filter: blur(120px);
  pointer-events: none;
}

.blog-hero,
.single-blog-hero {
  position: relative;
  z-index: 1;
  padding: 124px 0 54px;
  text-align: center;
}

.blog-hero h1,
.single-blog-hero h1 {
  max-width: 980px;
  margin: 24px auto 0;
  color: var(--color-text);
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.04;
  font-weight: 900;
}

.blog-hero p {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--color-muted);
  font-size: clamp(18px, 2vw, 22px);
}

.blog-section {
  position: relative;
  z-index: 1;
  padding: 34px 0 108px;
}

.search-results-section {
  position: relative;
  z-index: 1;
  padding: 34px 0 108px;
}

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

.search-results-grid .search-result-card {
  grid-template-columns: 86px minmax(0, 1fr);
  min-height: 150px;
  padding: 18px;
  border-radius: 22px;
}

.search-results-grid .search-result-thumb {
  width: 86px;
  height: 86px;
  border-radius: 18px;
}

.search-results-grid .search-result-content strong {
  font-size: 20px;
}

.search-results-grid .search-result-content small,
.search-results-grid .search-result-content span:not(.search-result-type) {
  white-space: normal;
}

.search-empty-card {
  max-width: 620px;
  margin-inline: auto;
  padding: 34px;
  border-radius: 26px;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  align-items: start;
  gap: 28px;
}

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

.blog-card,
.blog-widget,
.single-blog-featured,
.single-blog-content,
.single-blog-side-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at top right, rgba(91, 92, 255, 0.18), transparent 13rem),
    linear-gradient(145deg, rgba(14, 18, 32, 0.96), rgba(14, 18, 32, 0.66));
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.blog-card {
  overflow: hidden;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.blog-card:hover {
  border-color: rgba(122, 92, 255, 0.56);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.48), 0 0 56px rgba(91, 92, 255, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.09);
  transform: translateY(-10px);
}

.blog-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 238px;
  border-bottom: 1px solid var(--color-border);
  background: rgba(6, 7, 11, 0.72);
}

.blog-card-media img,
.single-blog-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.blog-image-fallback {
  position: relative;
  display: block;
  min-height: 238px;
  background:
    radial-gradient(circle at 76% 24%, rgba(122, 92, 255, 0.36), transparent 8rem),
    radial-gradient(circle at 18% 82%, rgba(91, 92, 255, 0.22), transparent 8rem),
    linear-gradient(135deg, rgba(91, 92, 255, 0.28), rgba(14, 18, 32, 0.96));
  transition: transform 0.28s ease, filter 0.28s ease;
}

.blog-image-fallback::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.14) 0 0) 22px 22px / 42% 14px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.86) 0 0) 22px 66px / 62% 28px no-repeat,
    linear-gradient(rgba(168, 175, 191, 0.5) 0 0) 22px 108px / 48% 10px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.09), rgba(122, 92, 255, 0.16)) right 22px bottom 22px / 38% 72px no-repeat,
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.blog-image-fallback::after {
  content: "";
  position: absolute;
  right: 48px;
  bottom: 48px;
  width: 78px;
  height: 78px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(122, 92, 255, 0.36), rgba(255, 255, 255, 0.08));
  box-shadow: -58px 22px 0 -18px rgba(255, 255, 255, 0.1);
}

.blog-card:hover .blog-card-media img,
.blog-card:hover .blog-image-fallback {
  filter: brightness(1.08);
  transform: scale(1.035);
}

.blog-card-body {
  padding: 24px;
}

.blog-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border: 1px solid rgba(122, 92, 255, 0.3);
  border-radius: var(--radius-pill);
  background: rgba(91, 92, 255, 0.12);
  color: #E4E5FF;
  font-size: 12px;
  font-weight: 900;
}

.blog-card h2 {
  margin-top: 18px;
  font-size: 24px;
  line-height: 1.2;
}

.blog-card h2 a {
  color: var(--color-text);
}

.blog-card p {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 15px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
}

.blog-card-meta time {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
}

.blog-card-meta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  background: var(--gradient-primary);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(91, 92, 255, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card-meta a:hover {
  box-shadow: 0 18px 46px rgba(91, 92, 255, 0.44);
  transform: translateY(-2px);
}

.blog-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.blog-widget {
  padding: 24px;
}

.blog-widget h2 {
  color: var(--color-text);
  font-size: 20px;
}

.blog-widget ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.blog-widget a {
  color: var(--color-muted);
  font-weight: 700;
}

.blog-widget a:hover {
  color: var(--color-text);
}

.blog-widget .search-form {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.blog-widget .search-field {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--color-text);
}

.blog-widget .search-submit {
  min-height: 46px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--gradient-primary);
  color: var(--color-text);
  font-weight: 900;
  cursor: pointer;
}

.blog-pagination {
  grid-column: 1 / -1;
}

.single-blog-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  color: var(--color-muted);
  font-weight: 800;
}

.single-blog-featured {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 420px;
}

.single-blog-featured .blog-image-fallback {
  min-height: 420px;
}

.single-blog-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  align-items: start;
  gap: 28px;
  padding: 34px 0 108px;
}

.single-blog-content {
  padding: clamp(26px, 4vw, 44px);
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.85;
}

.single-blog-content h2,
.single-blog-content h3 {
  margin: 34px 0 14px;
  color: var(--color-text);
  line-height: 1.18;
}

.single-blog-content p + p {
  margin-top: 18px;
}

.single-blog-content a {
  color: #E4E5FF;
  font-weight: 800;
}

.single-blog-side-card {
  position: sticky;
  top: 112px;
  padding: 28px;
}

.single-blog-side-card h2 {
  margin-top: 18px;
  color: var(--color-text);
  font-size: 30px;
  line-height: 1.12;
}

.single-blog-side-card p {
  margin-top: 12px;
  color: var(--color-muted);
}

.single-blog-side-card .button {
  width: 100%;
  margin-top: 24px;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
}

.reveal-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1100px) {
  .header-inner {
    min-height: 78px;
  }

  body.is-scrolled .header-inner {
    min-height: 70px;
  }

  .logo {
    margin-right: auto;
  }

  .main-nav {
    display: none;
  }

  .header-button {
    display: none;
  }

  .header-actions {
    margin-left: auto;
    gap: 7px;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .hero-section {
    padding-top: 90px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero-content {
    max-width: 640px;
  }

  .hero-content h1 {
    max-width: 640px;
  }

  .hero-visual {
    justify-self: center;
    width: min(100%, 620px);
    min-height: 500px;
  }

  .floating-card-top {
    right: 18px;
  }

  .floating-card-bottom {
    left: 18px;
  }

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

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

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

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

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

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

  .single-product-grid,
  .woocommerce form.checkout {
    grid-template-columns: 1fr;
  }

  .ad-checkout-layout {
    grid-template-columns: 1fr;
  }

  .ad-checkout-summary-card {
    position: relative;
    top: auto;
  }

  .single-product-preview {
    max-width: 760px;
    min-height: 0;
    position: relative;
    top: auto;
  }

  .single-product-preview .woocommerce-product-gallery__image img {
    min-height: 0;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content {
    float: none;
    width: 100%;
  }

  .woocommerce-account .woocommerce {
    grid-template-columns: 1fr;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    position: relative;
    top: auto;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .woocommerce-account .woocommerce-MyAccount-content {
    margin-top: 22px;
  }

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

  .cta-banner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-cta-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .ad-cart-layout {
    grid-template-columns: 1fr;
  }

  .ad-cart-summary-card {
    position: relative;
    top: auto;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-trust-card {
    position: relative;
    top: auto;
  }

  .about-work-grid,
  .about-trust-grid,
  .about-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .services-process-grid,
  .services-fit-card {
    grid-template-columns: 1fr;
  }

  .license-layout {
    grid-template-columns: 1fr;
  }

  .license-card-featured,
  .license-note-card {
    grid-column: auto;
  }

  .refund-layout {
    grid-template-columns: 1fr;
  }

  .privacy-layout,
  .kvkk-layout {
    grid-template-columns: 1fr;
  }

  .privacy-card-featured,
  .privacy-note-card,
  .kvkk-card-featured,
  .kvkk-note-card {
    grid-column: auto;
  }

  .refund-card-featured {
    grid-column: auto;
  }

  .blog-layout,
  .single-blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar,
  .single-blog-side-card {
    position: relative;
    top: auto;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container-width));
  }

  .single-theme-product > .container {
    width: calc(100% - 40px);
    max-width: var(--container-width);
  }

  .header-inner {
    min-height: 72px;
    gap: 14px;
  }

  body.is-scrolled .header-inner {
    min-height: 66px;
  }

  .logo-text {
    font-size: 20px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .header-icon-button,
  .mobile-menu-button {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .header-search-panel {
    position: fixed;
    top: 82px;
    right: 14px;
    left: 14px;
    width: auto;
    padding-right: 50px;
  }

  .mobile-menu-overlay {
    padding: 0;
  }

  .mobile-menu-panel {
    width: min(100%, 360px);
    max-height: 100dvh;
    padding: 32px 16px 16px;
  }

  .hero-section {
    padding: 68px 0 64px;
  }

  .woocommerce .button,
  .woocommerce button.button,
  .woocommerce a.button,
  .woocommerce input.button,
  .woocommerce #respond input#submit {
    white-space: normal;
    text-align: center;
  }

  .woocommerce .woocommerce-result-count,
  .woocommerce .woocommerce-ordering {
    float: none;
    width: 100%;
  }

  .woocommerce .woocommerce-ordering select {
    width: 100%;
  }

  .contact-hero {
    padding: 88px 0 34px;
    text-align: left;
  }

  .contact-section {
    padding-bottom: 78px;
  }

  .contact-info-card,
  .contact-form-card,
  .contact-trust-card {
    border-radius: 24px;
  }

  .contact-info-card {
    min-height: auto;
    padding: 20px;
  }

  .about-hero {
    padding: 88px 0 34px;
    text-align: left;
  }

  .about-section {
    padding-bottom: 62px;
  }

  .about-work-grid,
  .about-trust-grid,
  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-card,
  .about-card,
  .about-stat-card,
  .about-cta-card {
    border-radius: 24px;
  }

  .about-card {
    min-height: auto;
    padding: 22px;
  }

  .about-stat-card {
    min-height: 128px;
    padding: 22px;
  }

  .about-cta-section {
    padding-bottom: 78px;
  }

  .services-page-hero {
    padding: 88px 0 34px;
    text-align: left;
  }

  .services-page-section {
    padding: 24px 0 62px;
  }

  .services-page-grid,
  .services-process-grid {
    grid-template-columns: 1fr;
  }

  .legal-summary-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-card-featured,
  .legal-page-license .legal-card-wide,
  .legal-note-card {
    grid-column: auto;
  }

  .services-page-card,
  .services-process-card,
  .services-fit-card,
  .services-page-cta-card {
    border-radius: 24px;
  }

  .services-page-card,
  .services-process-card {
    min-height: auto;
    padding: 22px;
  }

  .services-fit-card {
    padding: 24px;
  }

  .services-page-cta-section {
    padding-bottom: 78px;
  }

  .license-hero {
    padding: 88px 0 34px;
    text-align: left;
  }

  .legal-hero {
    padding: 88px 0 34px;
  }

  .legal-hero-inner {
    text-align: left;
  }

  .license-section {
    padding: 24px 0 54px;
  }

  .legal-content-section {
    padding: 24px 0 62px;
  }

  .legal-summary-card,
  .legal-card,
  .legal-cta-card {
    border-radius: 24px;
  }

  .legal-summary-card,
  .legal-card {
    min-height: auto;
    padding: 20px;
  }

  .legal-card li {
    padding: 13px 14px 13px 40px;
  }

  .legal-cta-section {
    padding-bottom: 78px;
  }

  .license-card,
  .license-cta-card {
    border-radius: 24px;
  }

  .license-card {
    min-height: auto;
    padding: 20px;
  }

  .license-card li {
    padding: 13px 14px 13px 40px;
  }

  .license-cta-section {
    padding-bottom: 70px;
  }

  .refund-hero {
    padding: 88px 0 34px;
    text-align: left;
  }

  .privacy-hero,
  .kvkk-hero {
    padding: 88px 0 34px;
    text-align: left;
  }

  .refund-section {
    padding: 24px 0 54px;
  }

  .privacy-section,
  .kvkk-section {
    padding: 24px 0 70px;
  }

  .refund-card,
  .refund-cta-card,
  .privacy-card,
  .kvkk-card {
    border-radius: 24px;
  }

  .refund-card,
  .privacy-card,
  .kvkk-card {
    min-height: auto;
    padding: 20px;
  }

  .refund-card li {
    padding: 13px 14px 13px 40px;
  }

  .refund-steps li {
    padding: 13px 14px 13px 52px;
  }

  .refund-contact-list {
    grid-template-columns: 1fr;
  }

  .refund-cta-section {
    padding-bottom: 70px;
  }

  .blog-hero,
  .single-blog-hero {
    padding: 88px 0 34px;
    text-align: left;
  }

  .blog-section {
    padding: 24px 0 78px;
  }

  .blog-post-grid {
    grid-template-columns: 1fr;
  }

  .blog-card,
  .blog-widget,
  .single-blog-featured,
  .single-blog-content,
  .single-blog-side-card {
    border-radius: 24px;
  }

  .blog-card-media,
  .blog-image-fallback {
    min-height: 210px;
  }

  .blog-card-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .single-blog-featured,
  .single-blog-featured .blog-image-fallback {
    min-height: 260px;
  }

  .single-blog-layout {
    padding: 24px 0 78px;
  }

  .single-blog-content {
    font-size: 16px;
  }

  .single-blog-meta {
    justify-content: flex-start;
  }

  .hero-content h1 {
    font-size: clamp(34px, 8.8vw, 42px);
    line-height: 1.1;
  }

  .hero-title-line {
    white-space: nowrap;
  }

  .hero-actions,
  .mini-features {
    width: 100%;
  }

  .button {
    flex: 1 1 180px;
  }

  .hero-actions .button,
  .cta-actions .button,
  .footer-cta-bar .button {
    min-height: 48px;
    padding: 0 18px;
    font-size: 14px;
    border-radius: 999px;
  }

  .mini-features li {
    flex: 1 1 100%;
  }

  .hero-visual {
    min-height: 440px;
  }

  .preview-body {
    padding: 18px;
  }

  .preview-hero {
    grid-template-columns: 1fr;
    min-height: 180px;
    padding: 18px;
  }

  .preview-button {
    width: 128px;
  }

  .preview-cards {
    grid-template-columns: 1fr;
  }

  .preview-cards span {
    height: 58px;
  }

  .floating-card {
    width: 188px;
    padding: 13px;
  }

  .floating-card-top {
    top: -12px;
    right: 0;
  }

  .floating-card-bottom {
    left: 0;
    bottom: 10px;
  }

  .stats-section {
    padding-bottom: 64px;
  }

  .stats-grid,
  .theme-grid {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .trust-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .category-section,
  .testimonials-section,
  .faq-section {
    padding-bottom: 72px;
  }

  .category-card,
  .trust-card,
  .testimonial-card {
    min-height: auto;
    padding: 22px;
  }

  .faq-item summary {
    align-items: flex-start;
    padding: 20px;
    font-size: 16px;
  }

  .faq-item p {
    padding: 0 20px 20px;
  }

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

  .shop-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .search-results-grid {
    grid-template-columns: 1fr;
  }

  .search-results-grid .search-result-card {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .search-results-grid .search-result-thumb {
    width: 72px;
    height: 72px;
  }

  .product-theme-card .wc-theme-preview {
    min-height: 210px;
  }

  .product-theme-card .wc-theme-preview:not(.wc-theme-preview-fallback) {
    aspect-ratio: 4 / 3;
    min-height: 0;
    padding: 5px;
  }

  .wc-theme-preview img {
    height: auto;
    min-height: 0;
  }

  .woocommerce ul.products li.product.product-theme-card .wc-theme-preview img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    aspect-ratio: auto;
    min-height: 0;
  }

  .wc-theme-preview-fallback {
    min-height: 210px;
  }

  .product-theme-card .theme-card-body {
    min-height: auto;
    padding: 22px;
  }

  .product-theme-card .theme-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .single-theme-product {
    padding: 68px 0 76px;
  }

  .single-product-grid {
    gap: 24px;
    min-width: 0;
  }

  .single-product-preview {
    width: 100%;
    padding: 14px;
  }

  .single-product-preview .flex-viewport {
    min-height: clamp(240px, 68vw, 340px);
    border-radius: 20px;
  }

  .single-product-preview .woocommerce-product-gallery__image {
    min-height: clamp(240px, 68vw, 340px);
    border-radius: 20px;
  }

  .single-product-preview .woocommerce-product-gallery__image a {
    min-height: inherit;
  }

  .single-product-summary h1 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .single-product-fit-card {
    margin-top: 14px;
    padding: 12px;
    border-radius: 16px;
  }

  .single-product-fit-card h2 {
    margin-bottom: 8px;
    font-size: 13px;
  }

  .single-product-fit-card ul {
    gap: 7px;
  }

  .single-product-fit-card li {
    font-size: 12.5px;
  }

  .single-product-urgency-note {
    display: flex;
    width: 100%;
    border-radius: 16px;
  }

  .single-product-trust-row li {
    flex: 1 1 100%;
  }

  .single-product-preview .woocommerce-product-gallery__image img {
    display: block;
    min-height: 0;
    opacity: 1;
    visibility: visible;
    object-fit: contain;
  }

  .single-product-preview .flex-control-thumbs {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .single-product-preview .flex-control-thumbs img {
    min-height: 0;
  }

  .wc-single-fallback-preview {
    min-height: 360px;
    padding: 18px;
  }

  .single-fallback-browser {
    min-height: 280px;
    padding: 22px;
  }

  .single-fallback-card.card-one {
    right: 18px;
    top: 82px;
    width: 104px;
    height: 88px;
  }

  .single-fallback-card.card-two {
    right: 36px;
    bottom: 30px;
    width: 132px;
    height: 64px;
  }

  .single-product-summary,
  .single-product-details,
  .woocommerce-cart-form,
  .cart-collaterals .cart_totals,
  .woocommerce-checkout-review-order,
  .woocommerce-billing-fields,
  .woocommerce-shipping-fields,
  .woocommerce-additional-fields,
  .woocommerce-MyAccount-navigation,
  .woocommerce-MyAccount-content,
  .woocommerce-form-login,
  .woocommerce-form-register,
  .woocommerce .woocommerce-order {
    padding: 22px;
  }

  .single-product-actions,
  .single-product-actions form.cart {
    max-width: 100%;
    width: 100%;
  }

  .single-product-actions form.cart {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    min-width: 0;
  }

  .single-product-summary .wapf {
    padding: 10px;
    border-radius: 16px;
  }

  .single-product-summary .wapf-input-label {
    align-items: flex-start;
    min-height: 38px;
    padding: 8px 9px;
  }

  .single-product-summary .wapf-label-text {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .single-product-summary .wapf-pricing-hint {
    white-space: normal;
  }

  .single-product-summary .wapf-product-totals .wapf--inner > div {
    min-height: 24px;
    font-size: 12px;
  }

  .single-product-actions .single_add_to_cart_button,
  .single-product-actions .button-secondary {
    justify-content: center;
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }

  .woocommerce-cart .content-section {
    width: min(100% - 28px, 1280px);
    padding: 70px 0 82px;
  }

  .woocommerce-checkout .content-section {
    width: min(100% - 28px, 1280px);
    padding: 68px 0 82px;
  }

  .woocommerce-cart .content-card > h1 {
    margin-bottom: 24px;
  }

  .woocommerce-checkout .content-card > h1 {
    margin-bottom: 22px;
  }

  .ad-cart-products-card,
  .ad-cart-summary-card {
    border-radius: 24px;
    padding: 18px;
  }

  .ad-checkout-details-card,
  .ad-checkout-summary-card {
    border-radius: 24px;
    padding: 20px;
  }

  .woocommerce-checkout #payment ul.payment_methods,
  .woocommerce-checkout #payment div.form-row {
    padding: 16px;
  }

  body.woocommerce-checkout #billing_first_name_field,
  body.woocommerce-checkout #billing_last_name_field {
    float: none;
    width: 100%;
    clear: both;
  }

  .woocommerce-cart .ad-cart-items {
    gap: 12px;
  }

  .woocommerce-cart .ad-cart-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
    border-radius: 22px;
  }

  .woocommerce-cart .ad-cart-item-main {
    grid-template-columns: 88px minmax(0, 1fr) 34px;
    gap: 12px;
  }

  .woocommerce-cart .ad-cart-item-remove {
    grid-column: 3;
    grid-row: 1;
    align-self: start;
  }

  .woocommerce-cart .ad-cart-product-thumb {
    grid-column: 1;
    grid-row: 1;
    width: 88px;
    height: 64px;
    padding: 7px;
  }

  .woocommerce-cart .ad-cart-product-title {
    grid-column: 2;
    grid-row: 1;
    gap: 6px;
  }

  .woocommerce-cart .ad-cart-product-title > a {
    font-size: 15px;
  }

  .woocommerce-cart .ad-cart-item-details {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .woocommerce-cart .ad-cart-item-stat {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
  }

  .woocommerce-cart .ad-cart-item-quantity {
    justify-items: stretch;
    text-align: right;
  }

  .woocommerce-cart .ad-cart-actions,
  .woocommerce-cart .ad-cart-actions .coupon {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: none;
    width: 100%;
  }

  .woocommerce-cart .ad-cart-actions {
    padding-top: 16px;
  }

  .woocommerce-cart .ad-cart-actions > .button[name="update_cart"] {
    margin-left: 0;
  }

  .woocommerce-cart .ad-cart-actions .input-text,
  .woocommerce-cart .ad-cart-actions .button {
    width: 100%;
  }

  .woocommerce-cart table.shop_table_responsive tr,
  .woocommerce-page table.shop_table_responsive tr {
    position: relative;
    display: block;
    margin-bottom: 14px;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
  }

  .woocommerce-cart table.shop_table_responsive tr:last-child {
    margin-bottom: 0;
  }

  .woocommerce-cart table.shop_table_responsive tr td,
  .woocommerce-page table.shop_table_responsive tr td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 0;
    text-align: right !important;
  }

  .woocommerce-cart table.shop_table_responsive tr.cart_item {
    padding: 14px;
  }

  .woocommerce-cart table.shop_table_responsive tr.cart_item td {
    padding: 10px 0;
  }

  .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-remove {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: auto;
    padding: 0;
    border-bottom: 0;
  }

  .woocommerce-cart table.shop_table_responsive tr td:last-child,
  .woocommerce-page table.shop_table_responsive tr td:last-child {
    border-bottom: 0;
  }

  .woocommerce-cart table.shop_table_responsive tr td.product-name::before {
    display: none;
  }

  .woocommerce-cart table.shop_table .ad-cart-product-thumb {
    width: 88px;
    height: 64px;
    padding: 7px;
  }

  .woocommerce-cart table.shop_table_responsive tr td.product-name {
    display: block;
    min-width: 0;
    padding: 0 48px 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left !important;
  }

  .woocommerce-cart table.shop_table .ad-cart-product-identity {
    align-items: center;
    gap: 12px;
  }

  .woocommerce-cart table.shop_table .ad-cart-product-title {
    gap: 6px;
  }

  .woocommerce-cart table.shop_table .ad-cart-product-title > a {
    font-size: 15px;
  }

  .woocommerce-cart table.shop_table_responsive tr td.product-price,
  .woocommerce-cart table.shop_table_responsive tr td.product-quantity,
  .woocommerce-cart table.shop_table_responsive tr td.product-subtotal {
    text-align: right !important;
  }

  .woocommerce-cart table.shop_table td.actions {
    padding-top: 16px;
  }

  .woocommerce-cart table.shop_table td.actions,
  .woocommerce-cart table.shop_table td.actions .coupon {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: none;
    width: 100%;
  }

  .woocommerce-cart table.shop_table td.actions > .button[name="update_cart"] {
    margin-left: 0;
  }

  .woocommerce-cart table.shop_table td.actions .input-text,
  .woocommerce-cart table.shop_table td.actions .button {
    width: 100%;
  }

  .ad-empty-cart {
    border-radius: 24px;
  }

  .ad-empty-cart .button {
    width: 100%;
    max-width: 320px;
  }

  .ad-account-hero {
    padding: 66px 0 14px;
  }

  .ad-account-hero p {
    font-size: 16px;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content {
    border-radius: 24px;
    padding: 18px;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    grid-template-columns: 1fr;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation a {
    min-height: 44px;
  }

  .ad-account-quick-grid {
    grid-template-columns: 1fr;
  }

  .ad-account-quick-card {
    min-height: auto;
  }

  .ad-login-shell.has-register-card {
    grid-template-columns: 1fr;
  }

  .ad-login-card {
    border-radius: 24px;
    padding: 22px;
  }

  .ad-login-options {
    align-items: flex-start;
    flex-direction: column;
  }

  .ad-login-trust-row {
    justify-content: flex-start;
  }

  .woocommerce table.shop_table_responsive tr,
  .woocommerce-page table.shop_table_responsive tr {
    border-color: var(--color-border);
  }

  .stat-card {
    min-height: 128px;
    padding: 22px;
  }

  .popular-themes-section {
    padding-bottom: 76px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .theme-preview {
    min-height: 190px;
    padding: 18px;
  }

  .theme-laptop {
    min-height: 170px;
  }

  .theme-screen {
    min-height: 140px;
    padding: 15px;
  }

  .theme-status-badge {
    top: 14px;
    right: 14px;
  }

  .preview-products {
    right: 14px;
    bottom: 14px;
    gap: 6px;
  }

  .preview-products span {
    min-height: 34px;
  }

  .theme-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .theme-actions {
    width: 100%;
  }

  .theme-actions a {
    flex: 1;
  }

  .why-section,
  .services-section {
    padding-bottom: 72px;
  }

  .feature-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .service-card {
    min-height: auto;
    padding: 22px;
  }

  .cta-section {
    padding-bottom: 76px;
  }

  .cta-banner {
    border-radius: 24px;
  }

  .cta-actions,
  .cta-actions .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 30px;
  }

  .footer-cta-bar,
  .footer-grid {
    margin-bottom: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 0;
  }

  .footer-cta-bar .button {
    width: 100%;
  }

  .footer-bottom {
    gap: 16px;
  }

  .footer-bottom .social-links {
    flex-wrap: wrap;
  }

  .footer-column {
    gap: 10px;
  }

  .site-header {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
  }

  .header-search-panel,
  .mobile-menu-panel {
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32), 0 0 18px rgba(91, 92, 255, 0.1);
    backdrop-filter: blur(8px) saturate(115%);
    -webkit-backdrop-filter: blur(8px) saturate(115%);
  }

  .mobile-menu-overlay.is-open {
    backdrop-filter: blur(4px) saturate(110%);
    -webkit-backdrop-filter: blur(4px) saturate(110%);
  }

  .browser-card,
  .floating-card,
  .stat-card,
  .theme-status-badge {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .button,
  .woocommerce ul.products li.product .button,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button,
  .woocommerce #respond input#submit,
  .woocommerce a.added_to_cart,
  .single-product-actions .single_add_to_cart_button,
  .single-product-actions .button-secondary,
  .woocommerce-checkout #payment #place_order {
    box-shadow: 0 10px 24px rgba(91, 92, 255, 0.18);
  }

  .theme-card,
  .product-theme-card,
  .feature-card,
  .service-card,
  .category-card,
  .trust-card,
  .testimonial-card,
  .services-page-card,
  .services-process-card,
  .services-fit-card,
  .services-page-cta-card,
  .legal-summary-card,
  .legal-card,
  .legal-cta-card,
  .legal-note-card,
  .license-card,
  .license-cta-card,
  .refund-card,
  .refund-cta-card,
  .privacy-card,
  .kvkk-card,
  .contact-info-card,
  .contact-form-card,
  .contact-trust-card,
  .single-product-summary,
  .single-product-details,
  .ad-cart-products-card,
  .woocommerce-cart .ad-cart-item,
  .ad-checkout-details-card,
  .ad-checkout-summary-card,
  .woocommerce-checkout-review-order,
  .woocommerce-billing-fields,
  .woocommerce-shipping-fields,
  .woocommerce-additional-fields,
  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content,
  .ad-account-quick-card,
  .ad-login-card,
  .footer-cta-bar {
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.055);
  }

  .product-theme-card:hover,
  .theme-card:hover,
  .services-page-card:hover,
  .services-process-card:hover,
  .license-cta-card:hover,
  .refund-cta-card:hover,
  .legal-cta-card:hover {
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.28), 0 0 22px rgba(91, 92, 255, 0.1);
  }

  .footer-payment-logo,
  .footer-payment-logo:hover {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 22px, var(--container-width));
  }

  .single-theme-product > .container {
    width: calc(100% - 36px);
    max-width: var(--container-width);
  }

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

  .mobile-menu-overlay {
    padding: 0;
  }

  .mobile-menu-panel {
    width: min(100%, 336px);
    max-height: 100dvh;
    padding: 30px 14px 14px;
  }

  .mobile-menu-head {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .mobile-nav {
    gap: 8px;
  }

  .mobile-nav a {
    min-height: 46px;
    border-radius: 16px;
    padding: 0 14px;
  }

  .logo-text {
    font-size: 18px;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
  }

  .hero-actions,
  .cta-actions,
  .footer-cta-bar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .theme-actions,
  .single-product-actions,
  .single-product-actions form.cart,
  .single-product-details .related.products .product-theme-card .ad-product-actions {
    flex-direction: column;
  }

  .theme-actions a,
  .single-product-actions .quantity,
  .single-product-actions .quantity .qty,
  .single-product-actions .single_add_to_cart_button,
  .single-product-actions .button-secondary,
  .single-product-details .related.products .product-theme-card .ad-product-actions a,
  .single-product-details .related.products .product-theme-card .ad-product-actions .button,
  .single-product-details .related.products .product-theme-card .ad-product-actions .add_to_cart_button,
  .single-product-details .related.products .product-theme-card .ad-product-actions .added_to_cart {
    max-width: 100%;
    width: 100%;
  }

  .single-product-details .related.products .product-theme-card .theme-meta {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    width: 100%;
  }

  .single-product-details .related.products .product-theme-card .ad-product-bottom {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    width: 100%;
  }

  .single-product-details .related.products .product-theme-card .ad-product-bottom .price {
    width: 100%;
  }

  .single-product-details .related.products .product-theme-card .ad-product-actions {
    align-items: stretch;
    box-sizing: border-box;
    flex-wrap: nowrap;
    gap: 8px;
    min-width: 0;
    width: 100%;
  }

  .single-product-details .related.products .product-theme-card .ad-product-actions a,
  .single-product-details .related.products .product-theme-card .ad-product-actions .button,
  .single-product-details .related.products .product-theme-card .ad-product-actions .add_to_cart_button,
  .single-product-details .related.products .product-theme-card .ad-product-actions .added_to_cart {
    box-sizing: border-box;
    flex: 0 0 auto;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    width: 100%;
    padding-inline: 10px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-actions .button,
  .hero-actions .button.button-primary,
  .hero-actions .button.button-secondary,
  .cta-actions .button,
  .cta-actions .button.button-primary,
  .cta-actions .button.button-secondary,
  .footer-cta-bar .button,
  .footer-cta-bar .button.button-primary,
  .footer-cta-bar .button.button-secondary {
    width: 100%;
    min-height: 46px;
    height: auto;
    padding: 0 16px;
    font-size: 14px;
    line-height: 46px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .woocommerce-checkout .checkout_coupon {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
  }

  .woocommerce-checkout .checkout_coupon .form-row {
    flex: 0 0 auto;
    width: auto;
    margin: 0;
    padding: 0;
  }

  .woocommerce-checkout .checkout_coupon .form-row-first {
    flex: 1 1 auto;
    min-width: 0;
  }

  .woocommerce-checkout .checkout_coupon .form-row-last {
    flex: 0 0 auto;
  }

  .woocommerce-checkout .checkout_coupon .input-text,
  .woocommerce-checkout .checkout_coupon .button {
    min-height: 46px;
  }

  .woocommerce-checkout .checkout_coupon .input-text {
    width: 100%;
  }

  .woocommerce-checkout .checkout_coupon .button {
    width: auto;
    padding-inline: 14px;
    white-space: nowrap;
  }

  .footer-payment,
  .footer-payment-logos,
  .footer-payment-bar,
  .footer-payment-logo {
    display: none;
  }

  .footer-cta-bar,
  .contact-form-card,
  .contact-trust-card,
  .about-intro-card,
  .about-card,
  .legal-summary-card,
  .legal-card,
  .license-card,
  .refund-card,
  .privacy-card,
  .kvkk-card,
  .blog-widget,
  .single-blog-content {
    padding: 18px;
  }

  .woocommerce-account .content-section,
  .woocommerce-cart .content-section,
  .woocommerce-checkout .content-section {
    width: min(100% - 24px, 1280px);
  }
}

