:root {
  --bg: #07070d;
  --bg-elevated: #0f0f18;
  --bg-card: #13131f;
  --bg-card-hover: #1a1a2a;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  --text: #f4f4f8;
  --text-muted: #9b9bb0;
  --purple: #9146ff;
  --purple-glow: rgba(145, 70, 255, 0.35);
  --kick: #53fc18;
  --youtube: #ff0033;
  --vk: #0077ff;
  --gradient: linear-gradient(135deg, #9146ff 0%, #5b8def 50%, #53fc18 100%);
  --gradient-text: linear-gradient(135deg, #c4a0ff 0%, #7eb8ff 50%, #8fff6a 100%);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Unbounded", "Inter", sans-serif;
  --container: 1200px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

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

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(7, 7, 13, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-logo span {
  color: var(--purple);
}

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

.nav a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}

.nav a:hover,
.nav .current-menu-item a,
.nav .current_page_item a {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

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

.btn__icon svg {
  width: 18px;
  height: 18px;
}

.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 30px var(--purple-glow);
}

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

.btn--ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.btn--lg {
  padding: 16px 28px;
  font-size: 1rem;
}

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 80px) 0 100px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  background: var(--purple);
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  bottom: 0;
  left: -100px;
  background: #5b8def;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 40%;
  background: var(--kick);
  opacity: 0.2;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero__content {
  position: relative;
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(145, 70, 255, 0.12);
  border: 1px solid rgba(145, 70, 255, 0.25);
  font-size: 0.85rem;
  font-weight: 500;
  color: #c4a0ff;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--kick);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero__swap {
  display: inline-grid;
  vertical-align: top;
}

.hero__swap-word {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(0.35em);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero__swap-word.is-active {
  opacity: 1;
  transform: translateY(0);
}

.hero__text {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

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

.platform-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
}

.platform-tag__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section--dark {
  background: var(--bg-elevated);
}

.section-header {
  margin-bottom: 48px;
}

.section-header--center {
  text-align: center;
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-header__subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
}

.section-header--center .section-header__subtitle {
  margin-inline: auto;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.service-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.service-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(145, 70, 255, 0.12);
  color: #c4a0ff;
  margin-bottom: 16px;
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
}

.service-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-card__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin-inline: auto;
}

.pricing-card {
  position: relative;
  padding: 36px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pricing-card--featured {
  border-color: rgba(145, 70, 255, 0.4);
  box-shadow: 0 0 60px var(--purple-glow);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--gradient);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card__label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card__price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-card__desc {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.pricing-card .btn {
  width: 100%;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  display: flex;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.feature-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(83, 252, 24, 0.1);
  color: var(--kick);
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.feature-card__title {
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Catalog / Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(145, 70, 255, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.product-card__image {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  width: 100%;
  background: var(--bg-elevated);
  overflow: hidden;
}

.product-card__image img,
.product-card__thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-card__body {
  padding: 20px;
}

.product-card__title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #c4a0ff;
  margin-bottom: 16px;
}

.product-card__price span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.product-gallery {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  overflow: hidden;
}

.product-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.product-gallery img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.product-gallery--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 4rem;
  background: linear-gradient(135deg, #1a1a2a, #2a1a3a);
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
}

:root {
  --sdgn-gallery-main: 588px;
  --sdgn-gallery-thumb: 112px;
  --sdgn-gallery-cols: 4;
}

/* Единый пресет для ВСЕХ товаров каталога */
.single-sdgn_product .product-gallery-wrap,
.post-type-archive-sdgn_product .product-card__image,
.home .product-card__image {
  --sdgn-active: 1;
}

.product-gallery-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: var(--sdgn-gallery-main);
}

.product-gallery__main {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: var(--sdgn-gallery-main);
  max-height: var(--sdgn-gallery-main);
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  overflow: hidden;
  cursor: zoom-in;
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-gallery__grid {
  display: grid;
  grid-template-columns: repeat(var(--sdgn-gallery-cols), var(--sdgn-gallery-thumb));
  gap: 10px;
}

.product-gallery__thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}

.product-gallery__thumb:hover,
.product-gallery__thumb.is-active {
  border-color: var(--purple);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.9);
}

.product-lightbox[hidden] {
  display: none;
}

.product-lightbox img {
  max-width: min(85vw, 720px);
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.product-lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.blog-card {
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.blog-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.blog-card__image {
  aspect-ratio: 16 / 9;
  background: var(--bg-elevated);
  overflow: hidden;
}

.blog-card__body {
  padding: 24px;
}

.blog-card__date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.blog-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.blog-pagination {
  margin-top: 40px;
  text-align: center;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  margin: 0 4px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  border-color: var(--border-hover);
  color: #fff;
  background: rgba(145, 70, 255, 0.12);
}

.blog-empty {
  color: var(--text-muted);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-empty p + p {
  margin-top: 10px;
}

.blog-admin-hint {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(145, 70, 255, 0.35);
  background: rgba(145, 70, 255, 0.08);
  text-align: left;
}

.blog-admin-hint ul {
  margin: 12px 0;
  padding-left: 20px;
}

.blog-admin-hint a {
  color: #c4a0ff;
}

/* CTA */
.cta {
  padding: 80px 0;
}

.cta__box {
  position: relative;
  padding: 60px 40px;
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid rgba(145, 70, 255, 0.25);
  text-align: center;
  overflow: hidden;
}

.cta__box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--purple-glow), transparent 70%);
  pointer-events: none;
}

.cta__content {
  position: relative;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}

.cta__text {
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 480px;
  margin-inline: auto;
}

/* Custom design page */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.process-step {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
}

.process-step__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(145, 70, 255, 0.12);
  color: #c4a0ff;
}

.process-step__icon svg {
  width: 22px;
  height: 22px;
}

.process-step__title {
  font-weight: 600;
  margin-bottom: 8px;
}

.process-step__text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.compare-table-wrap {
  margin: 32px 0 48px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

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

.compare-table th,
.compare-table td {
  padding: 18px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.compare-table thead th {
  background: linear-gradient(135deg, #1a1030 0%, #12182a 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-bottom: none;
}

.compare-table__feature-col {
  text-align: left !important;
  width: 46%;
}

.compare-table__premium-col {
  background: rgba(145, 70, 255, 0.04);
}

.compare-table tbody tr {
  transition: background 0.2s;
}

.compare-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.compare-table tbody tr:hover .compare-table__premium-col {
  background: rgba(145, 70, 255, 0.08);
}

.compare-table__feature {
  text-align: left !important;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.45;
}

.compare-table__status {
  width: 32px;
  height: 32px;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.compare-table__status svg {
  width: 16px;
  height: 16px;
}

.compare-table__status--yes {
  background: linear-gradient(135deg, #3ddc68 0%, #22b84d 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(34, 184, 77, 0.35);
}

.compare-table__status--no {
  background: linear-gradient(135deg, #ff6b6b 0%, #e53e3e 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(229, 62, 62, 0.3);
}

.compare-table__price-row td {
  border-bottom: none;
  padding-top: 28px;
  padding-bottom: 28px;
}

.compare-table__price {
  display: inline-block;
  min-width: 120px;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3ddc68 0%, #22b84d 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: 0 8px 24px rgba(34, 184, 77, 0.3);
}

.compare-table__price--premium {
  background: linear-gradient(135deg, #b48cff 0%, #9146ff 100%);
  box-shadow: 0 8px 24px rgba(145, 70, 255, 0.35);
}

.info-box {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 180, 0, 0.08);
  border: 1px solid rgba(255, 180, 0, 0.2);
  margin: 24px 0;
}

.info-box__title {
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffc857;
}

.info-box p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.content-block {
  max-width: 800px;
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 40px 0 16px;
}

.content-block p,
.content-block li {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.content-block ul {
  list-style: disc;
  padding-left: 20px;
}

/* Footer */
.site-footer {
  padding: 60px 0 32px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 320px;
}

.footer-nav a {
  display: block;
  padding: 6px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.social-links a:hover {
  color: var(--text);
  border-color: var(--purple);
  background: rgba(145, 70, 255, 0.1);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

/* WooCommerce overrides */
.woocommerce .products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 24px !important;
}

.woocommerce ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 1rem !important;
  padding: 0 !important;
}

.woocommerce span.onsale {
  background: var(--purple) !important;
  border-radius: 999px !important;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: var(--container);
  margin: calc(var(--header-h) + 40px) auto 80px;
  padding: 0 16px;
}

.woocommerce div.product .summary .price {
  font-family: var(--font-display);
  font-size: 2rem !important;
  color: #c4a0ff !important;
}

.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button {
  background: var(--gradient) !important;
  color: #fff !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  padding: 12px 24px !important;
  border: none !important;
}

.woocommerce-breadcrumb {
  max-width: var(--container);
  margin: calc(var(--header-h) + 24px) auto 0;
  padding: 0 16px;
  color: var(--text-muted);
}

.woocommerce-breadcrumb a {
  color: var(--text-muted);
}

/* Page content */
.page-content {
  padding: calc(var(--header-h) + 48px) 0 80px;
}

.page-content__header {
  margin-bottom: 48px;
}

.page-content__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 12px;
}

.page-content__subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.single-post {
  padding: calc(var(--header-h) + 48px) 0 80px;
}

.single-post__content {
  max-width: 720px;
  margin-inline: auto;
}

.single-post__content h2,
.single-post__content h3 {
  font-family: var(--font-display);
  margin: 32px 0 16px;
}

.single-post__content p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

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

.breadcrumb span {
  color: var(--text-muted);
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 900px) {
  .nav {
    display: none;
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    padding: 16px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-actions .btn--ghost {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .product-gallery-wrap,
  .product-gallery__main,
  .product-gallery__grid {
    max-width: 100%;
  }

  .product-gallery__grid {
    grid-template-columns: repeat(3, var(--sdgn-gallery-thumb));
  }
}

@media (max-width: 600px) {
  .hero {
    padding-bottom: 60px;
  }

  .section {
    padding: 60px 0;
  }

  .cta__box {
    padding: 40px 24px;
  }

  .pricing-card {
    padding: 28px;
  }

  .compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .compare-table {
    min-width: 560px;
  }

  .compare-table th,
  .compare-table td {
    padding: 14px 16px;
  }

  .compare-table__price {
    min-width: 100px;
    padding: 10px 18px;
    font-size: 1rem;
  }
}