:root {
  --color-bg: #09111f;
  --color-bg-soft: #111d34;
  --color-surface: #ffffff;
  --color-surface-alt: #f4f7fb;
  --color-surface-muted: #eff3f8;
  --color-border: rgba(11, 26, 50, 0.1);
  --color-heading: #0a1530;
  --color-body: #5f6d84;
  --color-body-dark: #cbd5e8;
  --color-accent: #ff6a43;
  --color-accent-strong: #ff8d38;
  --color-highlight: #ffc857;
  --color-success: #2fd18d;
  --color-shadow: 0 28px 60px rgba(9, 17, 31, 0.12);
  --color-shadow-strong: 0 28px 80px rgba(4, 12, 26, 0.28);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1200px;
  --container-wide: 1440px;
  --transition: 0.28s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-body);
  background:
    radial-gradient(circle at top left, rgba(255, 106, 67, 0.12), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(255, 200, 87, 0.12), transparent 26%),
    #f8fafc;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

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

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

a:hover {
  color: var(--color-accent);
}

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.6em;
  color: var(--color-heading);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.12;
}

p {
  margin: 0 0 1.1em;
}

ul,
ol {
  margin: 0 0 1.2em;
  padding-left: 1.1rem;
}

.site-shell {
  min-height: 100vh;
}

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

.container--wide {
  width: min(calc(100% - 32px), var(--container-wide));
}

.section-space {
  padding: 40px 0;
}

.section-space--soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(243, 247, 252, 0.96));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading--split {
  max-width: none;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: end;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 700px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--color-accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-topbar {
  background: #08111f;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.site-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.site-topbar__announcement {
  margin: 0;
}

.site-topbar__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.site-topbar__contact,
.site-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.site-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.site-social a:hover {
  transform: translateY(-2px);
}

.site-social--topbar a {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.site-social--mobile {
  margin-top: 18px;
}

.site-social--mobile a {
  color: var(--color-heading);
  background: var(--color-surface-alt);
}

.site-social--footer {
  margin-top: 22px;
}

.site-social--footer a {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  backdrop-filter: blur(16px);
  transition: background-color var(--transition), box-shadow var(--transition), padding var(--transition);
}

.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(248, 250, 252, 0.92);
  box-shadow: 0 12px 34px rgba(7, 18, 36, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  border: 1px solid rgba(10, 21, 48, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 50px rgba(12, 25, 45, 0.08);
}

.site-logo img {
  max-height: 48px;
  width: auto;
}

.site-logo--footer img {
  max-height: 56px;
}

.site-logo-text {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
}

.site-logo-text__mark {
  color: var(--color-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.site-logo-text__meta {
  color: var(--color-accent);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-navigation .menu,
.footer-navigation .menu,
.mobile-navigation .menu {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.desktop-navigation .menu > li,
.footer-navigation .menu > li {
  position: relative;
}

.desktop-navigation .menu > li > a,
.footer-navigation .menu > li > a {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  color: var(--color-heading);
  font-weight: 700;
}

.desktop-navigation .menu li:hover > a {
  color: var(--color-accent);
}

.desktop-navigation .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: var(--color-surface);
  box-shadow: var(--color-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
}

.desktop-navigation .sub-menu li a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
}

.desktop-navigation .menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

.primary-button {
  border: 1px solid transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-strong));
  box-shadow: 0 20px 40px rgba(255, 106, 67, 0.28);
}

.primary-button:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(255, 106, 67, 0.34);
}

.ghost-button {
  border: 1px solid rgba(10, 21, 48, 0.14);
  color: var(--color-heading);
  background: rgba(255, 255, 255, 0.76);
}

.ghost-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 106, 67, 0.26);
}

.text-link {
  color: var(--color-accent);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(10, 21, 48, 0.1);
  border-radius: 50%;
  background: var(--color-surface);
}

.nav-toggle span:not(.screen-reader-text) {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--color-heading);
}

.mobile-navigation {
  margin-top: 16px;
}

.mobile-navigation__inner {
  padding: 20px;
  border: 1px solid rgba(10, 21, 48, 0.08);
  border-radius: 28px;
  background: var(--color-surface);
  box-shadow: var(--color-shadow);
}

.mobile-navigation .menu {
  flex-direction: column;
  gap: 2px;
}

.mobile-navigation .menu a {
  display: block;
  padding: 12px 10px;
  font-weight: 700;
}

.mobile-navigation .sub-menu {
  position: static;
  margin: 0;
  padding: 8px 0 8px 16px;
  list-style: none;
  border: 0;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
}

.mobile-navigation__actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 46px 0 112px;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 106, 67, 0.18), transparent 26%),
    radial-gradient(circle at 85% 14%, rgba(255, 200, 87, 0.16), transparent 20%),
    linear-gradient(180deg, #0a1426 0%, #0f1d37 100%);
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}

.hero-section::before {
  top: -140px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(255, 106, 67, 0.16);
}

.hero-section::after {
  bottom: -120px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(47, 209, 141, 0.12);
}

.hero-section__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}

.hero-section__content h1,
.hero-section__content p,
.hero-section__content .section-kicker,
.page-hero h1,
.page-hero p,
.page-hero .section-kicker,
.page-hero__meta {
  color: #fff;
}

.hero-section__content h1 {
  max-width: 740px;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  letter-spacing: -0.06em;
}

.hero-section__description {
  max-width: 640px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.hero-search {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) 0.9fr auto;
  gap: 12px;
  margin-bottom: 24px;
  padding: 14px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero-search input,
.hero-search select,
.site-search-form .search-field {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 0;
  border-radius: 18px;
  outline: 0;
  color: var(--color-heading);
  background: var(--color-surface);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-tags a {
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.hero-stat {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-stat strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Space Grotesk", sans-serif;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.hero-showcase {
  position: relative;
  padding: 42px 10px 10px 44px;
}

.hero-showcase__window {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 251, 0.95));
  box-shadow: var(--color-shadow-strong);
}

.hero-showcase__toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-showcase__toolbar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(10, 21, 48, 0.2);
}

.hero-showcase__screen {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 18px;
}

.hero-showcase__sidebar {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 20px 16px;
  overflow: hidden;
  border-radius: 24px;
  color: var(--color-heading);
  background: linear-gradient(180deg, #f3f7fc, #eaf0f7);
}

.hero-showcase__sidebar-image {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  border-radius: 18px;
  object-fit: cover;
}

.hero-showcase__sidebar-content {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.hero-showcase__sidebar-content strong {
  color: var(--color-heading);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.15;
}

.hero-showcase__sidebar-content p {
  margin: 0;
  color: var(--color-body);
  font-size: 0.84rem;
  line-height: 1.45;
}

.hero-showcase__sidebar span {
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.hero-showcase__cards {
  display: grid;
  gap: 16px;
}

.preview-card {
  border-radius: 26px;
  box-shadow: 0 20px 45px rgba(11, 27, 53, 0.1);
}

.preview-card--primary {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  color: #fff;
  background:
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(135deg, #ff6a43, #ff8f42);
  background-position: center;
  background-size: cover;
}

.preview-card--primary.has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 17, 33, 0.08), rgba(8, 17, 33, 0.78));
}

.preview-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
  padding: 28px;
}

.preview-card--primary p,
.preview-card--primary span,
.preview-card--secondary p,
.preview-card--mini p {
  margin-bottom: 10px;
}

.preview-card--primary h3 {
  color: #fff;
  font-size: 1.9rem;
}

.preview-card--primary span {
  display: inline-flex;
  max-width: 240px;
  color: rgba(255, 255, 255, 0.82);
}

.preview-card--secondary {
  padding: 22px;
  background: var(--color-surface);
}

.preview-bars {
  display: grid;
  gap: 10px;
}

.preview-bars span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 106, 67, 0.3), rgba(10, 21, 48, 0.1));
}

.preview-bars span:nth-child(1) {
  width: 68%;
}

.preview-bars span:nth-child(2) {
  width: 92%;
}

.preview-bars span:nth-child(3) {
  width: 54%;
}

.preview-card--mini {
  width: 210px;
  padding: 20px;
  justify-self: end;
  color: #fff;
  background: linear-gradient(135deg, #0f203f, #1a315a);
}

.preview-card--mini strong {
  font-size: 2rem;
  font-family: "Space Grotesk", sans-serif;
}

.floating-note {
  position: absolute;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--color-shadow);
}

.floating-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--color-body);
  font-size: 0.86rem;
}

.floating-note strong {
  color: var(--color-heading);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.floating-note--left {
  bottom: 18px;
  left: 0;
}

.floating-note--right {
  top: 0;
  right: -16px;
}

.brand-strip {
  margin-top: -40px;
  position: relative;
  z-index: 1;
}

.brand-strip__inner {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(10, 21, 48, 0.06);
  border-radius: 28px;
  background: var(--color-surface);
  box-shadow: var(--color-shadow);
}

.brand-strip__inner span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  border-radius: 18px;
  color: var(--color-heading);
  background: linear-gradient(180deg, #fff, #f5f8fc);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.category-grid,
.steps-grid,
.testimonial-grid,
.blog-grid,
.post-grid,
.showcase-grid {
  display: grid;
  gap: 28px;
}

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

.category-card,
.step-card,
.testimonial-card,
.blog-card,
.showcase-card,
.entry-card,
.widget-card,
.prose-card,
.membership-panel__card,
.story-visual__panel,
.story-visual__callout,
.empty-state {
  border: 1px solid rgba(10, 21, 48, 0.08);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--color-shadow);
}

.category-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
}

.category-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-heading), #1c3158);
}

.category-card__eyebrow {
  color: var(--color-accent);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.category-card h3 {
  font-size: 1.45rem;
}

.category-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.category-card__footer a {
  color: var(--color-accent);
  font-weight: 800;
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.product-filters button {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(10, 21, 48, 0.08);
  border-radius: 999px;
  color: var(--color-heading);
  background: var(--color-surface);
  font-weight: 800;
}

.product-filters button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-strong));
  box-shadow: 0 18px 35px rgba(255, 106, 67, 0.22);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  background: var(--color-surface);
  box-shadow: var(--color-shadow);
}

.product-card__media {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background:
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.16), transparent 20%),
    linear-gradient(135deg, #121f3d, #1d3660);
}

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

.product-card__placeholder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 28px;
  color: #fff;
}

.product-card__placeholder span,
.blog-card__placeholder span,
.entry-card__placeholder span,
.showcase-card__placeholder span {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__placeholder strong,
.blog-card__placeholder strong,
.entry-card__placeholder strong,
.showcase-card__placeholder strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
}

.product-card__placeholder-lines {
  display: grid;
  gap: 10px;
}

.product-card__placeholder-lines span {
  width: 100%;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.product-card__placeholder-lines span:nth-child(1) {
  width: 78%;
}

.product-card__placeholder-lines span:nth-child(2) {
  width: 92%;
}

.product-card__placeholder-lines span:nth-child(3) {
  width: 58%;
}

.product-card__badges {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.product-card__badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(9, 17, 31, 0.44);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 14px;
  padding: 26px;
}

.product-card__meta,
.blog-card__meta,
.showcase-card__meta,
.entry-meta,
.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.88rem;
}

.product-card__meta span,
.blog-card__meta span,
.showcase-card__meta span,
.entry-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-card__meta span::before,
.blog-card__meta span::before,
.showcase-card__meta span::before,
.entry-meta span::before,
.page-hero__meta span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 106, 67, 0.9);
}

.product-card__content h3,
.blog-card__content h3,
.showcase-card__content h3,
.entry-card__content h2 {
  margin-bottom: 0;
  font-size: 1.4rem;
}

.product-tags,
.showcase-card__terms,
.footer-chip-row,
.sidebar-list,
.comment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-tags span,
.showcase-card__terms span,
.footer-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--color-heading);
  background: var(--color-surface-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}

.product-card__price small {
  display: block;
  margin-bottom: 2px;
  color: var(--color-body);
}

.product-card__price strong {
  color: var(--color-heading);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: center;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 14px;
  padding: 0;
}

.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
}

.feature-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-highlight));
  box-shadow: 0 0 0 6px rgba(255, 106, 67, 0.12);
}

.story-visual {
  display: grid;
  gap: 18px;
}

.story-visual__panel,
.story-visual__callout {
  padding: 28px;
}

.story-visual__panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.story-visual__panel-head strong {
  color: var(--color-heading);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
}

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

.story-metrics div {
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #f4f8fd);
}

.story-metrics strong {
  display: block;
  color: var(--color-heading);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}

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

.step-card {
  padding: 32px;
}

.step-card__number {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--color-accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.membership-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  padding: 36px;
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(135deg, #0f1d37, #162b52 65%, #ff6a43 140%);
  box-shadow: var(--color-shadow-strong);
}

.membership-panel .section-kicker,
.membership-panel h2,
.membership-panel p,
.membership-panel li {
  color: #fff;
}

.membership-panel__card {
  padding: 32px;
  color: var(--color-heading);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 252, 0.95));
}

.membership-price {
  display: block;
  margin-bottom: 8px;
  color: var(--color-heading);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  font-weight: 700;
}

.membership-panel__card ul {
  list-style: none;
  display: grid;
  gap: 14px;
  padding: 0;
}

.membership-panel__card li {
  color: var(--color-heading);
}

.membership-panel__card li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--color-success);
}

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

.testimonial-card {
  padding: 28px;
}

.testimonial-card__rating {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--color-accent);
  background: rgba(255, 106, 67, 0.1);
  font-size: 0.84rem;
  font-weight: 800;
}

.testimonial-card__author strong {
  display: block;
  color: var(--color-heading);
  font-family: "Space Grotesk", sans-serif;
}

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

.blog-card,
.showcase-card,
.entry-card {
  overflow: hidden;
}

.blog-card__media,
.showcase-card__media,
.entry-card__media {
  display: block;
  min-height: 210px;
  background: linear-gradient(135deg, #121f3d, #203d70);
}

.blog-card__media img,
.showcase-card__media img,
.entry-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__placeholder,
.showcase-card__placeholder,
.entry-card__placeholder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 210px;
  padding: 28px;
  color: #fff;
}

.blog-card__content,
.showcase-card__content,
.entry-card__content {
  padding: 24px 24px 28px;
}

.page-hero {
  padding: 20px 0 10px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 106, 67, 0.16), transparent 22%),
    linear-gradient(180deg, #0a1426 0%, #10203c 100%);
}

.page-hero--centered {
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.05em;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}

.content-layout--single {
  align-items: stretch;
}

.full-width-page__content {
  --full-width-page-padding: clamp(24px, 4vw, 48px);
  --full-width-page-wide-offset: clamp(16px, 2vw, 28px);
  min-width: 0;
  padding: var(--full-width-page-padding);
  overflow: hidden;
}

.full-width-page__content > :not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter):not(.full-width-page__media):not(.wp-block-separator):not(.wp-block-spacer) {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}

.full-width-page__media {
  overflow: hidden;
  margin-bottom: 32px;
  border-radius: 28px;
  box-shadow: 0 24px 54px rgba(9, 17, 31, 0.16);
}

.full-width-page__media img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
}

.full-width-page__content > .alignwide,
.full-width-page__content > .alignfull {
  max-width: none;
}

.full-width-page__content > .alignwide {
  margin-right: calc(0px - var(--full-width-page-wide-offset));
  margin-left: calc(0px - var(--full-width-page-wide-offset));
}

.full-width-page__content > .alignfull {
  margin-right: calc(0px - var(--full-width-page-padding));
  margin-left: calc(0px - var(--full-width-page-padding));
}

.full-width-page__content > .alignfull:first-child,
.full-width-page__content > .alignwide:first-child {
  margin-top: calc(0px - var(--full-width-page-padding));
}

.single-article,
.prose-card,
.empty-state {
  /* padding: 32px; */
}

.single-article__media {
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 24px;
}

.help-center-page__content {
  margin-bottom: 42px;
}

.help-ticket-section {
  display: grid;
  gap: 28px;
}

.help-ticket-section__head {
  max-width: 760px;
}

.help-ticket-section__head h2 {
  margin-bottom: 14px;
  color: var(--color-heading);
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: 0;
}

.help-ticket-section__head p {
  max-width: 680px;
  margin: 0;
  color: var(--color-body);
  font-size: 1.04rem;
}

.help-ticket-notice {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(10, 21, 48, 0.08);
  border-left-width: 5px;
  border-radius: 18px;
  background: var(--color-surface);
  box-shadow: 0 18px 36px rgba(9, 17, 31, 0.07);
}

.help-ticket-notice strong {
  color: var(--color-heading);
}

.help-ticket-notice span {
  color: var(--color-body);
}

.help-ticket-notice--success {
  border-left-color: #2ba054;
  background: linear-gradient(135deg, rgba(43, 160, 84, 0.1), #fff 46%);
}

.help-ticket-notice--error {
  border-left-color: var(--color-accent);
  background: linear-gradient(135deg, rgba(255, 106, 67, 0.1), #fff 46%);
}

.help-ticket {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(10, 21, 48, 0.08);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 106, 67, 0.09), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  box-shadow: var(--color-shadow);
}

.help-ticket__summary {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  min-height: 100%;
  padding: 28px;
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 106, 67, 0.26), transparent 28%),
    linear-gradient(135deg, #09111f, #16325b);
}

.help-ticket__summary h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0;
}

.help-ticket__summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.help-ticket__meta {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.help-ticket__meta li {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.help-ticket__meta strong {
  color: #fff;
}

.help-ticket__meta span {
  color: rgba(255, 255, 255, 0.74);
}

.help-ticket__channels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.help-ticket__channels a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
  font-weight: 800;
}

.help-ticket__form {
  display: grid;
  align-content: start;
  gap: 18px;
}

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

.help-ticket__field {
  display: grid;
  gap: 8px;
  margin: 0;
}

.help-ticket__field label {
  color: var(--color-heading);
  font-size: 0.9rem;
  font-weight: 800;
}

.help-ticket__field input,
.help-ticket__field select,
.help-ticket__field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(10, 21, 48, 0.14);
  border-radius: 14px;
  color: var(--color-heading);
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(9, 17, 31, 0.03);
}

.help-ticket__field textarea {
  resize: vertical;
}

.help-ticket__field input:focus,
.help-ticket__field select:focus,
.help-ticket__field textarea:focus {
  outline: 0;
  border-color: rgba(255, 106, 67, 0.46);
  box-shadow: 0 0 0 4px rgba(255, 106, 67, 0.1);
}

.help-ticket__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.help-ticket__actions span {
  color: var(--color-body);
  font-size: 0.92rem;
}

.help-ticket__trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.homepage-editor-section {
  position: relative;
}

.homepage-editor-shell {
  position: relative;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(10, 21, 48, 0.08);
  border-radius: calc(var(--radius-xl) + 4px);
  background:
    radial-gradient(circle at top right, rgba(255, 106, 67, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 247, 252, 0.98));
  box-shadow: 0 32px 70px rgba(9, 17, 31, 0.12);
}

.homepage-editor-content {
  --homepage-content-padding: clamp(24px, 4vw, 44px);
  padding: var(--homepage-content-padding);
  display: grid;
  gap: clamp(18px, 2.4vw, 30px);
  overflow-wrap: anywhere;
}

.homepage-editor-content > * {
  width: min(100%, 820px);
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.homepage-editor-content > :first-child {
  margin-top: 0;
}

.homepage-editor-content > :last-child {
  margin-bottom: 0;
}

.homepage-editor-content > .alignwide,
.homepage-editor-content > .alignfull,
.homepage-editor-content > .wp-block-separator,
.homepage-editor-content > .wp-block-spacer {
  max-width: none;
}

.homepage-editor-content > .alignwide {
  width: min(100%, 980px);
}

.homepage-editor-content > .alignfull {
  width: calc(100% + (var(--homepage-content-padding) * 2));
  margin-right: calc(var(--homepage-content-padding) * -1);
  margin-left: calc(var(--homepage-content-padding) * -1);
}

.homepage-editor-content > .alignfull:first-child {
  margin-top: calc(var(--homepage-content-padding) * -1);
}

.homepage-editor-content > .alignfull:last-child {
  margin-bottom: calc(var(--homepage-content-padding) * -1);
}

.homepage-editor-content :where(img, svg, video, canvas) {
  max-width: 100%;
  height: auto;
}

.homepage-editor-content :where(iframe, embed, object) {
  width: 100%;
  max-width: 100%;
  border: 0;
}

.homepage-editor-content iframe {
  min-height: clamp(240px, 46vw, 560px);
}

.homepage-editor-content .wp-block-embed,
.homepage-editor-content .wp-block-video,
.homepage-editor-content .wp-block-image,
.homepage-editor-content .wp-block-gallery,
.homepage-editor-content .wp-block-cover,
.homepage-editor-content .wp-block-media-text,
.homepage-editor-content .wp-block-columns,
.homepage-editor-content .wp-block-group {
  max-width: 100%;
}

.homepage-editor-content .wp-block-columns {
  gap: clamp(20px, 2vw, 32px);
}

.homepage-editor-content .wp-block-group,
.homepage-editor-content .wp-block-cover,
.homepage-editor-content .wp-block-media-text,
.homepage-editor-content .wp-block-gallery.has-nested-images {
  border-radius: 24px;
}

.homepage-editor-content .wp-block-table {
  overflow-x: auto;
}

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

.homepage-editor-content th,
.homepage-editor-content td {
  padding: 14px 16px;
  border: 1px solid rgba(10, 21, 48, 0.1);
  text-align: left;
}

.homepage-editor-content th {
  color: var(--color-heading);
  background: rgba(10, 21, 48, 0.04);
}

.homepage-editor-content blockquote {
  margin: 0;
  padding: 22px 24px;
  border-left: 4px solid var(--color-accent);
  border-radius: 20px;
  color: var(--color-heading);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 252, 0.92));
}

.homepage-editor-content pre {
  overflow-x: auto;
  padding: 22px;
  border-radius: 20px;
  color: #eaf0ff;
  background: #0d1730;
}

.homepage-editor-content :where(ul, ol) {
  padding-left: 1.3rem;
}

.homepage-editor-content .wp-block-buttons {
  gap: 14px;
}

.homepage-editor-content .wp-block-button__link {
  border-radius: 999px;
}

.prose-card > :last-child,
.single-article > :last-child {
  margin-bottom: 0;
}

.widget-card {
  padding: 26px;
}

.widget-title,
.footer-widget-title {
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.sidebar-list {
  list-style: none;
  padding: 0;
}

.sidebar-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(10, 21, 48, 0.08);
}

.sidebar-list li:last-child {
  border-bottom: 0;
}

.pagination-wrap,
.post-navigation-wrap {
  margin-top: 36px;
}

.site-search-form {
  display: flex;
  gap: 12px;
}

.site-search-form label {
  flex: 1;
}

.page-hero__price {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin: 10px 0 6px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 700;
}

.page-hero__price del {
  opacity: 0.64;
  font-size: 0.9em;
}

.page-hero__price ins {
  text-decoration: none;
}

.page-hero--commerce p {
  max-width: 760px;
}

.woocommerce-breadcrumb-wrap {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
}

.woocommerce-breadcrumb-wrap a {
  color: #fff;
}

.shop-wrapper {
  display: grid;
  gap: 36px;
}

.shop-wrapper--archive {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 24px;
}

.shop-wrapper--archive .woocommerce-notices-wrapper,
.shop-wrapper--archive .products,
.shop-wrapper--archive .woocommerce-pagination,
.shop-wrapper--archive > .woocommerce-info,
.shop-wrapper--archive > .woocommerce-message,
.shop-wrapper--archive > .woocommerce-error,
.shop-wrapper--archive .woocommerce-no-products-found {
  flex: 0 0 100%;
}

.shop-wrapper .woocommerce-notices-wrapper:empty {
  display: none;
}

.shop-wrapper .woocommerce-notices-wrapper {
  display: grid;
  gap: 16px;
}

.shop-wrapper .woocommerce-breadcrumb,
.woocommerce-breadcrumb-wrap,
.shop-wrapper .woocommerce-result-count,
.shop-wrapper .woocommerce-ordering,
.shop-wrapper .woocommerce nav.woocommerce-pagination ul,
.shop-wrapper .woocommerce nav.woocommerce-pagination ul li a,
.shop-wrapper .woocommerce nav.woocommerce-pagination ul li span {
  color: var(--color-heading);
}

.shop-wrapper .woocommerce-result-count,
.shop-wrapper .woocommerce-ordering {
  margin: 0;
}

.shop-wrapper .woocommerce-result-count {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(10, 21, 48, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--color-shadow);
  font-weight: 700;
}

.shop-wrapper .woocommerce-ordering {
  margin-left: auto;
}

.shop-wrapper .woocommerce-ordering select,
.shop-wrapper .woocommerce form.cart .variations select,
.shop-wrapper .woocommerce form.cart .group_table select,
.shop-wrapper .woocommerce-Reviews input[type="text"],
.shop-wrapper .woocommerce-Reviews input[type="email"],
.shop-wrapper .woocommerce-Reviews textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(10, 21, 48, 0.12);
  border-radius: 18px;
  color: var(--color-heading);
  background: var(--color-surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.shop-wrapper .woocommerce-ordering select {
  min-width: 250px;
  border-radius: 999px;
  box-shadow: var(--color-shadow);
}

.shop-wrapper .woocommerce form.cart .variations select:focus,
.shop-wrapper .woocommerce-ordering select:focus,
.shop-wrapper .woocommerce-Reviews input[type="text"]:focus,
.shop-wrapper .woocommerce-Reviews input[type="email"]:focus,
.shop-wrapper .woocommerce-Reviews textarea:focus {
  outline: 0;
  border-color: rgba(255, 106, 67, 0.4);
  box-shadow: 0 0 0 4px rgba(255, 106, 67, 0.12);
}

.shop-wrapper .products {
  clear: both;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.shop-wrapper ul.products,
.shop-wrapper ul.products li.product,
.shop-wrapper ul.products li.product-category {
  margin: 0;
}

.shop-wrapper ul.products li.product,
.shop-wrapper ul.products li.product-category {
  position: relative;
  width: auto;
  float: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(10, 21, 48, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f6f9fd);
  box-shadow: var(--color-shadow);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.shop-wrapper ul.products li.product:hover,
.shop-wrapper ul.products li.product-category:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 67, 0.18);
  box-shadow: 0 30px 65px rgba(9, 17, 31, 0.16);
}

.shop-wrapper ul.products li.product a.woocommerce-LoopProduct-link,
.shop-wrapper ul.products li.product-category > a {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: inherit;
}

.shop-wrapper ul.products li.product img,
.shop-wrapper ul.products li.product-category img {
  width: 100%;
  aspect-ratio: 1 / 0.86;
  object-fit: cover;
  border-radius: 20px;
  margin: 0;
  background: linear-gradient(135deg, #121f3d, #203d70);
}

.shop-wrapper ul.products li.product .woocommerce-loop-product__title,
.shop-wrapper ul.products li.product-category .woocommerce-loop-category__title {
  margin: 0;
  color: var(--color-heading);
  font-size: 1.4rem;
  line-height: 1.22;
}

.shop-wrapper ul.products li.product-category .woocommerce-loop-category__title mark {
  color: var(--color-body);
  background: transparent;
}

.shop-wrapper ul.products li.product .star-rating {
  margin: 0;
  color: var(--color-highlight);
}

.shop-wrapper ul.products li.product .price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  margin: 0;
  color: var(--color-heading);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.15;
}

.shop-wrapper ul.products li.product .price del {
  color: var(--color-body);
  opacity: 0.66;
  font-size: 0.72em;
}

.shop-wrapper ul.products li.product .price ins {
  text-decoration: none;
}

.shop-wrapper ul.products li.product .button,
.shop-wrapper ul.products li.product .added_to_cart {
  width: 100%;
  margin-top: auto;
  justify-content: center;
  text-align: center;
}

.shop-wrapper ul.products li.product .added_to_cart {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(10, 21, 48, 0.1);
  border-radius: 999px;
  color: var(--color-heading);
  background: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.shop-wrapper .woocommerce nav.woocommerce-pagination {
  margin-top: 8px;
}

.shop-wrapper .woocommerce nav.woocommerce-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
}

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

.shop-wrapper .woocommerce nav.woocommerce-pagination ul li a,
.shop-wrapper .woocommerce nav.woocommerce-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(10, 21, 48, 0.08);
  border-radius: 50%;
  background: var(--color-surface);
  box-shadow: var(--color-shadow);
  font-weight: 800;
}

.shop-wrapper .woocommerce nav.woocommerce-pagination ul li span.current {
  color: #fff;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-strong));
  box-shadow: 0 20px 40px rgba(255, 106, 67, 0.28);
}

.woocommerce span.onsale {
  min-width: 0;
  min-height: 34px;
  margin: 0;
  padding: 0 14px;
  border-radius: 999px;
  line-height: 34px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-strong));
}

.shop-wrapper ul.products li.product .onsale {
  top: 32px;
  left: 32px;
  right: auto;
}

.woocommerce div.product {
  /* display: grid; */
  gap: 17px;
}

.shop-wrapper--single .woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 17px;
  align-items: start;
}

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

.shop-wrapper--single .woocommerce div.product div.images {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(10, 21, 48, 0.08);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--color-shadow);
}

.shop-wrapper--single .woocommerce div.product div.images .flex-viewport,
.shop-wrapper--single .woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(135deg, #121f3d, #203d70);
}

.shop-wrapper--single .woocommerce div.product div.images .woocommerce-product-gallery__image a {
  display: block;
}

.shop-wrapper--single .woocommerce div.product div.images img {
  width: 100%;
  aspect-ratio: 1 / 0.92;
  object-fit: cover;
}

.shop-wrapper--single .woocommerce div.product div.images .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.shop-wrapper--single .woocommerce div.product div.images .flex-control-thumbs li {
  list-style: none;
}

.shop-wrapper--single .woocommerce div.product div.images .flex-control-thumbs img {
  aspect-ratio: 1 / 1;
  border: 2px solid transparent;
  border-radius: 18px;
  opacity: 1;
  background: var(--color-surface-alt);
}

.shop-wrapper--single .woocommerce div.product div.images .flex-control-thumbs img.flex-active,
.shop-wrapper--single .woocommerce div.product div.images .flex-control-thumbs img:hover {
  border-color: var(--color-accent);
}

.shop-wrapper--single .woocommerce div.product div.summary {
  position: sticky;
  top: 120px;
  padding: 32px;
  border: 1px solid rgba(10, 21, 48, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.95));
  box-shadow: var(--color-shadow);
}

.shop-wrapper--single .woocommerce div.product .summary > :last-child {
  margin-bottom: 0;
}

.shop-wrapper--single .woocommerce div.product .woocommerce-product-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(10, 21, 48, 0.08);
}

.shop-wrapper--single .woocommerce div.product .woocommerce-product-rating .star-rating {
  margin: 0;
  color: var(--color-highlight);
}

.shop-wrapper--single .woocommerce div.product .woocommerce-review-link {
  color: var(--color-accent);
  font-weight: 800;
}

.shop-wrapper--single .woocommerce div.product p.price,
.shop-wrapper--single .woocommerce div.product span.price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  margin: 0 0 24px;
  color: var(--color-heading);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.08;
}

.shop-wrapper--single .woocommerce div.product p.price del,
.shop-wrapper--single .woocommerce div.product span.price del {
  color: var(--color-body);
  opacity: 0.64;
  font-size: 0.62em;
}

.shop-wrapper--single .woocommerce div.product p.price ins,
.shop-wrapper--single .woocommerce div.product span.price ins {
  text-decoration: none;
}

.shop-wrapper--single .woocommerce div.product .woocommerce-product-details__short-description {
  margin-bottom: 0;
  color: var(--color-body);
  font-size: 1.02rem;
}

.shop-wrapper--single .woocommerce div.product form.cart,
.shop-wrapper--single .woocommerce div.product .cart.grouped_form {
  margin: 28px 0 0;
  padding: 24px;
  border-radius: 22px;
  background: rgba(244, 247, 251, 0.92);
}

.shop-wrapper--single .woocommerce div.product form.cart:not(.variations_form):not(.grouped_form) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.shop-wrapper--single .woocommerce div.product form.cart.variations_form,
.shop-wrapper--single .woocommerce div.product .cart.grouped_form {
  display: grid;
  gap: 18px;
}

.shop-wrapper--single .woocommerce div.product form.cart table {
  margin: 0;
  border: 0;
}

.shop-wrapper--single .woocommerce div.product form.cart table td,
.shop-wrapper--single .woocommerce div.product form.cart table th {
  padding: 0 0 12px;
  border: 0;
}

.shop-wrapper--single .woocommerce div.product form.cart table th label {
  color: var(--color-heading);
  font-weight: 800;
}

.shop-wrapper--single .woocommerce div.product form.cart .reset_variations {
  color: var(--color-accent);
  font-weight: 800;
}

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

.shop-wrapper--single .woocommerce .quantity .qty {
  width: 92px;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(10, 21, 48, 0.12);
  border-radius: 999px;
  color: var(--color-heading);
  background: var(--color-surface);
}

.shop-wrapper--single .woocommerce div.product form.cart .single_add_to_cart_button,
.shop-wrapper--single .woocommerce div.product .woocommerce-variation-add-to-cart .single_add_to_cart_button {
  float: none;
  min-height: 54px;
}

.shop-wrapper--single .woocommerce div.product .woocommerce-variation-add-to-cart,
.shop-wrapper--single .woocommerce div.product .variations_button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.shop-wrapper--single .woocommerce div.product .single_variation {
  color: var(--color-heading);
  font-weight: 700;
}

.shop-wrapper--single .woocommerce div.product p.stock {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 18px 0 0;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 800;
  background: rgba(47, 209, 141, 0.12);
  color: #0f7a53;
}

.shop-wrapper--single .woocommerce div.product p.stock.out-of-stock {
  background: rgba(201, 59, 59, 0.12);
  color: #b33c3c;
}

.shop-wrapper--single .woocommerce div.product .product_meta {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(10, 21, 48, 0.08);
  font-size: 0.95rem;
}

.shop-wrapper--single .woocommerce div.product .product_meta > span {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shop-wrapper--single .woocommerce div.product .product_meta a {
  color: var(--color-accent);
  font-weight: 700;
}

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

.shop-wrapper--single .woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

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

.shop-wrapper--single .woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.shop-wrapper--single .woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(10, 21, 48, 0.08);
  border-radius: 999px;
  color: var(--color-body);
  background: var(--color-surface);
  box-shadow: var(--color-shadow);
  font-weight: 800;
}

.shop-wrapper--single .woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--color-accent);
  border-color: rgba(255, 106, 67, 0.2);
  background: rgba(255, 106, 67, 0.08);
  box-shadow: 0 18px 35px rgba(255, 106, 67, 0.16);
}

.shop-wrapper--single .woocommerce div.product .woocommerce-Tabs-panel {
  margin: 0;
  padding: 32px;
  border: 1px solid rgba(10, 21, 48, 0.08);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--color-shadow);
}

.shop-wrapper--single .woocommerce div.product .woocommerce-Tabs-panel > h2:first-child,
.shop-wrapper--single .woocommerce div.product .related > h2,
.shop-wrapper--single .woocommerce div.product .upsells > h2 {
  margin-bottom: 22px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
}

.shop-wrapper .woocommerce-Reviews #comments ol.commentlist {
  display: grid;
  gap: 18px;
  padding: 0;
  list-style: none;
}

.shop-wrapper .woocommerce-Reviews #comments ol.commentlist li {
  margin: 0;
  padding: 22px;
  border-radius: 22px;
  background: var(--color-surface-muted);
}

.shop-wrapper .woocommerce-Reviews #comments ol.commentlist li img.avatar {
  width: 58px;
  border: 0;
  border-radius: 50%;
}

.shop-wrapper .woocommerce-Reviews #comments ol.commentlist li .comment-text {
  margin: 0 0 0 76px;
  border: 0;
  padding: 0;
}

.shop-wrapper .woocommerce-Reviews #review_form_wrapper {
  margin-top: 24px;
  padding: 28px;
  border: 1px solid rgba(10, 21, 48, 0.08);
  border-radius: 22px;
  background: var(--color-surface-alt);
}

.shop-wrapper .woocommerce-Reviews textarea {
  min-height: 170px;
  padding-top: 16px;
  padding-bottom: 16px;
  resize: vertical;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 18px 22px;
  border: 1px solid rgba(10, 21, 48, 0.08);
  border-top: 0;
  border-radius: 20px;
  background: var(--color-surface);
  box-shadow: var(--color-shadow);
}

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

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-strong));
  box-shadow: 0 20px 40px rgba(255, 106, 67, 0.24);
  font-weight: 800;
  line-height: 1;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(255, 106, 67, 0.3);
  filter: brightness(1.02);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  color: rgba(255, 255, 255, 0.74);
  background:
    radial-gradient(circle at top left, rgba(255, 106, 67, 0.14), transparent 22%),
    linear-gradient(180deg, #0a1324 0%, #08111f 100%);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr 0.7fr 0.95fr;
  gap: 28px;
}

.site-footer h3,
.site-footer p,
.site-footer li,
.site-footer a,
.site-footer .site-logo-text__mark {
  color: #fff;
}

.site-footer .site-logo-text__meta {
  color: var(--color-highlight);
}

.site-footer__brand p {
  max-width: 360px;
}

.site-footer__links ul,
.footer-posts {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
}

.site-footer__bottom {
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}

.site-footer__bottom p {
  margin: 0;
}

.footer-navigation .menu {
  gap: 2px;
}

.footer-navigation .menu a {
  color: rgba(255, 255, 255, 0.74);
  padding: 10px 12px;
}

.footer-widget-area {
  margin-top: 24px;
}

.footer-widget-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.comments-area {
  display: grid;
  gap: 24px;
}

.comment-list {
  flex-direction: column;
  padding: 0;
  list-style: none;
}

.comment-list li {
  padding: 18px;
  border-radius: 20px;
  background: var(--color-surface-muted);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.portfolio-card,
.plugin-gallery-card,
.plugin-package-card,
.plugin-seller-card,
.plugin-review-card,
.plugin-spec-card {
  border: 1px solid rgba(10, 21, 48, 0.08);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--color-shadow);
}

.portfolio-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  overflow: hidden;
}

.portfolio-card__media {
  display: block;
  min-height: 320px;
  background: linear-gradient(135deg, #121f3d, #203d70);
}

.portfolio-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card__placeholder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 32px;
  color: #fff;
}

.portfolio-card__placeholder span {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-card__placeholder strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}

.portfolio-card__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
}

.portfolio-card__content h2 {
  margin-bottom: 0;
  font-size: 1.8rem;
}

.plugin-single__hero {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.plugin-single {
  padding-top: 72px;
}

.plugin-single__label-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.plugin-single__hero-copy {
  max-width: 760px;
}

.plugin-single__hero-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  letter-spacing: -0.05em;
}

.plugin-single__hero-copy p {
  max-width: 720px;
  font-size: 1.05rem;
}

.plugin-single__hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.plugin-single__hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--color-heading);
  background: var(--color-surface-muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.plugin-single__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) 360px;
  gap: 32px;
  align-items: start;
}

.plugin-single__main {
  min-width: 0;
}

.plugin-single__sidebar {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 24px;
}

.plugin-gallery-card {
  padding: 24px;
}

.plugin-gallery__stage {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 28px;
  background: linear-gradient(135deg, #121f3d, #203d70);
}

.plugin-gallery__stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plugin-gallery__placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  height: 100%;
  padding: 36px;
  color: #fff;
}

.plugin-gallery__placeholder span {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plugin-gallery__placeholder strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}

.plugin-gallery__overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
  color: #fff;
  background: linear-gradient(180deg, rgba(7, 14, 28, 0), rgba(7, 14, 28, 0.92));
}

.plugin-gallery__overlay p {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
}

.plugin-gallery__overlay span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.plugin-gallery__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-strong));
  box-shadow: 0 20px 40px rgba(255, 106, 67, 0.28);
  transform: translateY(-50%);
}

.plugin-gallery__nav--prev {
  left: 18px;
}

.plugin-gallery__nav--next {
  right: 18px;
}

.plugin-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.plugin-gallery__thumb {
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 18px;
  background: transparent;
  transition: transform var(--transition), border-color var(--transition);
}

.plugin-gallery__thumb img {
  width: 100%;
  height: 88px;
  object-fit: cover;
}

.plugin-gallery__thumb.is-active {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.plugin-detail-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(10, 21, 48, 0.1);
}

.plugin-detail-tabs button {
  padding: 0 0 14px;
  border: 0;
  color: var(--color-body);
  background: transparent;
  font-weight: 800;
}

.plugin-detail-tabs button.is-active {
  color: var(--color-accent);
  box-shadow: inset 0 -2px 0 var(--color-accent);
}

.plugin-content-card {
  padding: 32px;
}

.plugin-description-header {
  margin-bottom: 32px;
}

.plugin-description-header h1 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.6vw, 3.15rem);
  letter-spacing: -0.05em;
}

.plugin-description-header p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 1.02rem;
}

.plugin-feature-stack {
  margin-top: 36px;
}

.plugin-feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
}

.plugin-feature-list li,
.plugin-package-panel__features li {
  position: relative;
  padding-left: 24px;
}

.plugin-feature-list li::before,
.plugin-package-panel__features li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
}

.plugin-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.plugin-spec-card {
  padding: 24px;
}

.plugin-spec-card h3 {
  margin-bottom: 14px;
  font-size: 1.15rem;
}

.plugin-spec-card ul,
.plugin-package-panel__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.plugin-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.plugin-review-card {
  padding: 24px;
}

.plugin-review-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--color-heading);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.plugin-faq-list {
  display: grid;
  gap: 14px;
}

.plugin-faq-item {
  padding: 18px 22px;
  border: 1px solid rgba(10, 21, 48, 0.08);
  border-radius: 22px;
  background: var(--color-surface-alt);
}

.plugin-faq-item summary {
  cursor: pointer;
  list-style: none;
  color: var(--color-heading);
  font-weight: 800;
}

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

.plugin-faq-item p {
  margin-top: 14px;
}

.plugin-package-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(10, 21, 48, 0.08);
}

.plugin-package-tabs button {
  min-height: 58px;
  border: 0;
  border-right: 1px solid rgba(10, 21, 48, 0.08);
  color: var(--color-heading);
  background: var(--color-surface);
  font-weight: 800;
}

.plugin-package-tabs button:last-child {
  border-right: 0;
}

.plugin-package-tabs button.is-active {
  color: var(--color-accent);
  background: rgba(255, 106, 67, 0.08);
}

.plugin-package-panel {
  padding: 24px;
}

.plugin-package-panel__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.plugin-package-panel__head h2 {
  margin-bottom: 0;
  font-size: 1.8rem;
}

.plugin-package-panel__head strong {
  color: var(--color-heading);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}

.plugin-package-panel__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.plugin-package-panel__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--color-heading);
  background: var(--color-surface-muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.plugin-package-panel__button,
.plugin-seller-card__button {
  width: 100%;
}

.plugin-package-panel__compare {
  display: block;
  margin-top: 16px;
  text-align: center;
  color: var(--color-accent);
  font-weight: 800;
}

.plugin-seller-card {
  padding: 28px;
}

.plugin-seller-card__header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.plugin-seller-card__header img,
.plugin-seller-card__avatar {
  width: 84px;
  height: 84px;
  border-radius: 24px;
  object-fit: cover;
}

.plugin-seller-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-heading), #1d3660);
}

.plugin-seller-card__header strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-heading);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
}

.plugin-seller-card__header span {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

.plugin-seller-card__header p {
  margin: 0;
  color: var(--color-accent);
  font-weight: 800;
}

.plugin-seller-card__stats {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.plugin-seller-card__stats div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(10, 21, 48, 0.08);
}

.plugin-seller-card__stats div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.plugin-seller-card__stats span {
  color: var(--color-body);
  font-weight: 700;
}

.plugin-seller-card__stats strong {
  color: var(--color-heading);
}

.plugin-landing-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 110px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 22%, rgba(255, 106, 67, 0.2), transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(47, 209, 141, 0.15), transparent 24%),
    linear-gradient(180deg, #09111f 0%, #102242 100%);
}

.plugin-landing-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.96fr;
  gap: 54px;
  align-items: center;
}

.plugin-landing-hero h1,
.plugin-landing-hero p,
.plugin-landing-hero .section-kicker,
.plugin-landing-final h2,
.plugin-landing-final p,
.plugin-landing-final .section-kicker {
  color: #fff;
}

.plugin-landing-hero h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 3.3rem;
  letter-spacing: 0;
}

.plugin-landing-hero__content > p {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.plugin-landing-hero__ghost,
.plugin-landing-final__ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.plugin-landing-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.plugin-landing-hero__metrics div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.plugin-landing-hero__metrics strong,
.plugin-landing-proof__grid strong {
  display: block;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
}

.plugin-landing-hero__metrics span,
.plugin-landing-proof__grid span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.plugin-landing-hero__visual {
  min-width: 0;
}

.plugin-landing-hero__image,
.plugin-landing-preview {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--color-shadow-strong);
}

.plugin-landing-hero__image img {
  width: 100%;
  /* aspect-ratio: 1.08 / 0.82; */
  object-fit: cover;
}

.plugin-landing-preview {
  padding: 18px;
}

.plugin-landing-preview__bar {
  display: flex;
  gap: 8px;
  padding: 0 0 16px;
}

.plugin-landing-preview__bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.plugin-landing-preview__screen {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
}

.plugin-landing-preview__sidebar,
.plugin-landing-preview__card,
.plugin-landing-preview__mini-grid div {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.plugin-landing-preview__sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 410px;
  padding: 18px;
  overflow: hidden;
}

.plugin-landing-preview__sidebar span {
  padding: 11px 12px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 800;
}

.plugin-landing-preview__sidebar-image {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  border-radius: 18px;
  object-fit: cover;
}

.plugin-landing-preview__sidebar-content {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.plugin-landing-preview__sidebar-content strong {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.15;
}

.plugin-landing-preview__sidebar-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.45;
}

.plugin-landing-preview__main {
  display: grid;
  gap: 16px;
}

.plugin-landing-preview__card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 200, 87, 0.28), transparent 24%),
    linear-gradient(135deg, rgba(255, 106, 67, 0.82), rgba(31, 60, 112, 0.78));
  background-position: center;
  background-size: cover;
}

.plugin-landing-preview__card.has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 17, 33, 0.1), rgba(8, 17, 33, 0.82));
}

.plugin-landing-preview__card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 26px;
}

.plugin-landing-preview__card-content > span {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.plugin-landing-preview__card strong {
  display: block;
  max-width: 290px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}

.plugin-landing-preview__card p {
  max-width: 340px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.5;
}

.plugin-landing-preview__lines {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.plugin-landing-preview__lines span {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.plugin-landing-preview__lines span:nth-child(2) {
  width: 76%;
}

.plugin-landing-preview__lines span:nth-child(3) {
  width: 54%;
}

.plugin-landing-preview__mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.plugin-landing-preview__mini-grid div {
  padding: 22px;
}

.plugin-landing-preview__mini-grid strong {
  display: block;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
}

.plugin-landing-preview__mini-grid span {
  color: rgba(255, 255, 255, 0.7);
}

.plugin-landing-strip {
  position: relative;
  z-index: 2;
  margin-top: -40px;
}

.plugin-landing-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(10, 21, 48, 0.06);
  border-radius: 28px;
  background: var(--color-surface);
  box-shadow: var(--color-shadow);
}

.plugin-landing-strip__inner span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 14px;
  border-radius: 18px;
  color: var(--color-heading);
  background: linear-gradient(180deg, #fff, #f4f8fd);
  font-weight: 800;
  text-align: center;
}

.plugin-landing-product-grid,
.plugin-landing-benefit-grid,
.plugin-landing-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.plugin-landing-product-card,
.plugin-landing-benefit-card,
.plugin-landing-price-card {
  overflow: hidden;
  border: 1px solid rgba(10, 21, 48, 0.08);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--color-shadow);
}

.plugin-landing-product-card {
  display: flex;
  flex-direction: column;
}

.plugin-landing-product-card__media {
  display: block;
  min-height: 230px;
  background: linear-gradient(135deg, #121f3d, #244575);
}

.plugin-landing-product-card__media img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.plugin-landing-product-card__placeholder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  min-height: 230px;
  padding: 28px;
  color: #fff;
}

.plugin-landing-product-card__placeholder span {
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.plugin-landing-product-card__placeholder strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  line-height: 1.16;
}

.plugin-landing-product-card__body,
.plugin-landing-benefit-card,
.plugin-landing-price-card {
  padding: 28px;
}

.plugin-landing-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
}

.plugin-landing-product-card__body h3 {
  margin-bottom: 0;
  font-size: 1.45rem;
}

.plugin-landing-check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plugin-landing-check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--color-heading);
  font-weight: 700;
}

.plugin-landing-check-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-success);
}

.plugin-landing-product-card__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 8px;
}

.plugin-landing-product-card__footer span {
  display: block;
  color: var(--color-body);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.plugin-landing-product-card__footer strong {
  color: var(--color-heading);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.65rem;
}

.plugin-landing-benefit-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plugin-landing-benefit-card > span,
.plugin-landing-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-heading), #244575);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.plugin-landing-benefit-card h3 {
  margin-bottom: 0;
  font-size: 1.45rem;
}

.plugin-landing-flow {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.plugin-landing-flow__content h2 {
  font-size: 3.1rem;
  letter-spacing: 0;
}

.plugin-landing-step-list {
  display: grid;
  gap: 18px;
}

.plugin-landing-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(10, 21, 48, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #f6f9fd);
  box-shadow: var(--color-shadow);
}

.plugin-landing-step h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.plugin-landing-step p {
  margin-bottom: 0;
}

.plugin-landing-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.plugin-landing-price-card--featured {
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255, 200, 87, 0.2), transparent 32%),
    linear-gradient(145deg, #102242, #193763);
  box-shadow: var(--color-shadow-strong);
}

.plugin-landing-price-card--featured h3,
.plugin-landing-price-card--featured strong,
.plugin-landing-price-card--featured p,
.plugin-landing-price-card--featured li {
  color: #fff;
}

.plugin-landing-price-card__badge {
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 106, 67, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.plugin-landing-price-card h3 {
  margin-bottom: 0;
  font-size: 1.45rem;
}

.plugin-landing-price-card > strong {
  color: var(--color-heading);
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.2rem;
  line-height: 1;
}

.plugin-landing-price-card .primary-button,
.plugin-landing-price-card .ghost-button {
  width: 100%;
  margin-top: auto;
}

.plugin-landing-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.plugin-landing-proof__panel {
  padding: 34px;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(47, 209, 141, 0.18), transparent 28%),
    linear-gradient(135deg, #0f1d37, #142a52);
  box-shadow: var(--color-shadow-strong);
}

.plugin-landing-proof__panel h2 {
  color: #fff;
  font-size: 2.8rem;
  letter-spacing: 0;
}

.plugin-landing-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.plugin-landing-proof__grid div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.plugin-landing-faq {
  display: grid;
  gap: 14px;
}

.plugin-landing-final {
  padding: 92px 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 106, 67, 0.18), transparent 26%),
    linear-gradient(135deg, #09111f, #132947);
}

.plugin-landing-final__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.plugin-landing-final h2 {
  max-width: 780px;
  font-size: 3.2rem;
  letter-spacing: 0;
}

.plugin-landing-final p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
}

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

@media (max-width: 1180px) {
  .hero-section__grid,
  .story-grid,
  .membership-panel,
  .site-footer__grid,
  .content-layout,
  .plugin-single__layout,
  .plugin-landing-hero__grid,
  .plugin-landing-flow,
  .plugin-landing-proof,
  .plugin-landing-final__inner,
  .help-ticket,
  .portfolio-card {
    grid-template-columns: 1fr;
  }

  .shop-wrapper--single .woocommerce div.product {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    padding-left: 0;
  }

  .site-footer__brand p {
    max-width: 100%;
  }

  .shop-wrapper--single .woocommerce div.product div.summary {
    position: static;
  }

  .plugin-single__sidebar {
    position: static;
  }

  .homepage-editor-content > .alignwide {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .desktop-navigation,
  .site-header__actions {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .category-grid,
  .product-grid,
  .steps-grid,
  .testimonial-grid,
  .blog-grid,
  .showcase-grid,
  .post-grid,
  .shop-wrapper .products,
  .portfolio-grid,
  .plugin-review-grid,
  .plugin-spec-grid,
  .plugin-landing-product-grid,
  .plugin-landing-benefit-grid,
  .plugin-landing-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .plugin-landing-strip__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .shop-wrapper .woocommerce-result-count,
  .shop-wrapper .woocommerce-ordering select {
    width: 100%;
  }

  .shop-wrapper .woocommerce-ordering {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .section-space {
    padding: 40px 0;
  }

  .site-topbar__inner,
  .section-heading--split,
  .site-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header__inner {
    padding: 14px 18px;
    border-radius: 24px;
  }

  .hero-section {
    padding-top: 24px;
    padding-bottom: 90px;
  }

  .hero-stats,
  .brand-strip__inner,
  .category-grid,
  .product-grid,
  .steps-grid,
  .testimonial-grid,
  .blog-grid,
  .showcase-grid,
  .post-grid,
  .shop-wrapper .products,
  .story-metrics,
  .portfolio-grid,
  .plugin-review-grid,
  .plugin-spec-grid,
  .plugin-gallery__thumbs,
  .plugin-landing-hero__metrics,
  .plugin-landing-strip__inner,
  .plugin-landing-product-grid,
  .plugin-landing-benefit-grid,
  .plugin-landing-pricing-grid,
  .plugin-landing-proof__grid {
    grid-template-columns: 1fr;
  }

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

  .plugin-landing-preview__screen,
  .plugin-landing-preview__mini-grid,
  .help-ticket__row {
    grid-template-columns: 1fr;
  }

  .plugin-landing-preview__sidebar {
    min-height: auto;
  }

  .preview-card--mini {
    width: 100%;
  }

  .floating-note {
    position: static;
    margin-top: 16px;
  }

  .hero-actions,
  .site-search-form {
    flex-direction: column;
  }

  .plugin-single__hero,
  .plugin-single__label-row,
  .plugin-package-panel__head,
  .plugin-seller-card__header,
  .plugin-seller-card__stats div,
  .plugin-landing-product-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .plugin-gallery__stage {
    min-height: 360px;
  }

  .page-hero__price {
    font-size: 1rem;
  }

  .shop-wrapper ul.products li.product,
  .shop-wrapper ul.products li.product-category,
  .shop-wrapper--single .woocommerce div.product div.images,
  .shop-wrapper--single .woocommerce div.product div.summary,
  .shop-wrapper--single .woocommerce div.product .woocommerce-Tabs-panel,
  .shop-wrapper .woocommerce-Reviews #review_form_wrapper {
    padding: 24px;
  }

  .shop-wrapper--single .woocommerce div.product div.images .flex-control-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-wrapper--single .woocommerce div.product form.cart:not(.variations_form):not(.grouped_form),
  .shop-wrapper--single .woocommerce div.product .woocommerce-variation-add-to-cart,
  .shop-wrapper--single .woocommerce div.product .variations_button {
    flex-direction: column;
    align-items: stretch;
  }

  .plugin-gallery-card,
  .plugin-content-card,
  .plugin-package-panel,
  .plugin-seller-card,
  .portfolio-card__content {
    padding: 24px;
  }

  .plugin-package-tabs {
    grid-template-columns: 1fr;
  }

  .membership-panel {
    padding: 28px;
  }

  .plugin-landing-hero,
  .plugin-landing-final {
    padding: 76px 0;
  }

  .plugin-landing-hero h1,
  .plugin-landing-final h2 {
    font-size: 2.7rem;
  }

  .plugin-landing-flow__content h2,
  .plugin-landing-proof__panel h2 {
    font-size: 2.25rem;
  }

  .plugin-landing-price-card > strong {
    font-size: 2.6rem;
  }

  .plugin-landing-proof__panel,
  .plugin-landing-price-card,
  .plugin-landing-benefit-card,
  .plugin-landing-product-card__body,
  .plugin-landing-step,
  .help-ticket__summary {
    padding: 24px;
  }

  .single-article,
  .prose-card,
  .widget-card,
  .membership-panel__card,
  .story-visual__panel,
  .story-visual__callout {
    padding: 24px;
  }

  .homepage-editor-shell {
    padding: 16px;
    border-radius: 28px;
  }

  .homepage-editor-content {
    --homepage-content-padding: 22px;
    gap: 22px;
  }

  .homepage-editor-content > * {
    width: 100%;
  }

  .homepage-editor-content > .alignfull {
    width: calc(100% + (var(--homepage-content-padding) * 2));
  }

  .homepage-editor-content iframe {
    min-height: 220px;
  }

  .homepage-editor-content th,
  .homepage-editor-content td {
    padding: 12px 14px;
  }
}

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

.site-header__auth {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-auth-link {
  color: var(--color-heading);
  font-weight: 800;
}

.primary-button--header-auth {
  min-height: 48px;
  padding: 0 20px;
}

.mobile-navigation__auth {
  display: grid;
  gap: 12px;
}

.site-cart-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(10, 21, 48, 0.12);
  border-radius: 999px;
  color: var(--color-heading);
  background: var(--color-surface);
  box-shadow: var(--color-shadow);
  font-weight: 800;
}

.site-cart-trigger__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 8px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-strong));
  font-size: 0.84rem;
}

.site-cart-trigger--mobile {
  width: 100%;
  justify-content: space-between;
}

body.has-open-cart {
  overflow: hidden;
}

.site-cart-panel {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.site-cart-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 14, 28, 0.48);
  backdrop-filter: blur(2px);
}

.site-cart-panel__dialog {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(100%, 440px);
  height: 100%;
  padding: 28px;
  background: #fff;
  box-shadow: -24px 0 60px rgba(7, 14, 28, 0.22);
}

.site-cart-panel__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(10, 21, 48, 0.08);
}

.site-cart-panel__eyebrow {
  margin-bottom: 6px;
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-cart-panel__header h2 {
  margin-bottom: 0;
  font-size: 1.75rem;
  letter-spacing: -0.04em;
}

.site-cart-panel__close {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(10, 21, 48, 0.08);
  border-radius: 50%;
  color: var(--color-heading);
  background: var(--color-surface-alt);
  font-size: 1.5rem;
}

.site-cart-panel__body {
  flex: 1;
  margin-top: 24px;
  overflow-y: auto;
}

.site-cart-panel__empty-state {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 24px;
  border-radius: 24px;
  background: var(--color-surface-alt);
}

.site-cart-panel__empty-state p {
  margin: 0;
}

.site-cart-panel__shop-button {
  width: 100%;
}

.site-cart-panel__body .woocommerce-mini-cart {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-cart-panel__body .woocommerce-mini-cart-item {
  position: relative;
  min-height: 80px;
  padding: 0 0 18px 96px;
  border-bottom: 1px solid rgba(10, 21, 48, 0.08);
}

.site-cart-panel__body .woocommerce-mini-cart-item a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 18px;
}

.site-cart-panel__body .woocommerce-mini-cart-item .remove {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--color-heading);
  background: var(--color-surface-alt);
  font-size: 0.95rem;
  line-height: 1;
}

.site-cart-panel__body .woocommerce-mini-cart-item a:not(.remove) {
  color: var(--color-heading);
  font-weight: 800;
}

.site-cart-panel__body .woocommerce-mini-cart-item .quantity {
  display: block;
  margin-top: 8px;
}

.site-cart-panel__body .woocommerce-mini-cart__total,
.site-cart-panel__body .woocommerce-mini-cart__buttons {
  margin-top: 20px;
}

.site-cart-panel__body .woocommerce-mini-cart__total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(10, 21, 48, 0.08);
  color: var(--color-heading);
  font-weight: 800;
}

.site-cart-panel__body .woocommerce-mini-cart__buttons {
  display: grid;
  gap: 12px;
}

.site-cart-panel__body .woocommerce-mini-cart__buttons a {
  width: 100%;
}

.hero-stats {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.brand-strip__inner {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.hero-slider {
  display: grid;
  gap: 20px;
}

.hero-slider__viewport {
  position: relative;
}

.hero-slide__media {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #121f3d, #203d70);
  box-shadow: var(--color-shadow-strong);
}

.hero-slide__media.has-image {
  background-size: cover;
  background-position: center;
}

.hero-slide__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 14, 28, 0.1), rgba(7, 14, 28, 0.82)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 24%);
}

.hero-slide__media--gradient::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius-xl) - 10px);
  background:
    radial-gradient(circle at top left, rgba(255, 200, 87, 0.2), transparent 24%),
    linear-gradient(135deg, rgba(255, 106, 67, 0.2), transparent 60%);
}

.hero-slide__overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 12px;
  min-height: 520px;
  padding: 36px;
  color: #fff;
}

.hero-slide__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-slide__overlay h3 {
  max-width: 340px;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.05em;
}

.hero-slide__overlay p {
  max-width: 420px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.hero-slide__button {
  align-self: flex-start;
  margin-top: 8px;
}

.hero-slider__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.hero-slider__nav {
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-strong));
  box-shadow: 0 20px 40px rgba(255, 106, 67, 0.26);
  font-size: 1.4rem;
}

.hero-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
}

.hero-slider__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.hero-slider__dot.is-active {
  width: 44px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-strong));
}

.site-footer__grid--compact {
  grid-template-columns: 1.15fr 0.8fr 0.8fr;
}

@media (max-width: 1180px) {
  .site-footer__grid--compact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .hero-slide__media,
  .hero-slide__overlay {
    min-height: 460px;
  }
}

@media (max-width: 767px) {
  .site-cart-panel__dialog {
    width: 100%;
    padding: 22px;
  }

  .hero-slider__controls {
    gap: 12px;
  }

  .hero-slider__nav {
    width: 48px;
    height: 48px;
  }

  .hero-slide__media,
  .hero-slide__overlay {
    min-height: 380px;
  }

  .hero-slide__overlay {
    padding: 24px;
  }
}
