:root {
  --bg: #f2f4ee;
  --bg-2: #ebefe4;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-solid: #ffffff;
  --panel-border: rgba(19, 30, 20, 0.08);
  --panel-border-strong: rgba(19, 30, 20, 0.14);
  --text: #17201b;
  --text-muted: #5e6c61;
  --accent: #0f766e;
  --accent-strong: #0a5a54;
  --accent-warm: #d97706;
  --danger: #dc2626;
  --shadow-sm: 0 8px 24px rgba(12, 24, 15, 0.06);
  --shadow-md: 0 18px 50px rgba(12, 24, 15, 0.08);
  --radius: 18px;
  --radius-lg: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(15, 118, 110, 0.12), transparent 40%),
    radial-gradient(circle at 85% 4%, rgba(217, 119, 6, 0.13), transparent 34%),
    linear-gradient(180deg, #f6f8f2 0%, #edf1e8 100%);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.3);
  outline-offset: 2px;
  border-radius: 10px;
}

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

.site-main {
  display: block;
  padding: 18px 0 36px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 12px 0 0;
}

.site-header__backdrop {
  position: absolute;
  inset: 0 0 auto 0;
  height: calc(100% + 12px);
  pointer-events: none;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(242, 244, 238, 0.92), rgba(242, 244, 238, 0.65));
  border-bottom: 1px solid rgba(19, 30, 20, 0.05);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.66);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding: 10px 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand__mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f766e, #1f9a90);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.22);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__text strong {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
  font-size: 0.98rem;
}

.brand__text small {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.72rem;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.92rem;
  transition: background-color 140ms ease, color 140ms ease, transform 140ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: rgba(15, 118, 110, 0.08);
  color: var(--text);
}

.main-nav .nav-pill {
  background: #0f766e;
  color: #fff;
  box-shadow: 0 10px 22px rgba(15, 118, 110, 0.2);
}

.main-nav .nav-pill:hover,
.main-nav .nav-pill.is-active {
  background: #0b5f59;
  color: #fff;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--panel-border-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  padding: 9px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 99px;
  margin: 4px 0;
}

.view {
  display: block;
}

.home-hero-wrap {
  margin-top: 12px;
}

.hero-panel {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--panel-border);
  background:
    radial-gradient(circle at 86% 10%, rgba(15, 118, 110, 0.15), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(217, 119, 6, 0.12), transparent 40%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.72));
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -25% -35% auto;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(15, 118, 110, 0.06) 0 10px,
      rgba(15, 118, 110, 0.02) 10px 20px
    );
  pointer-events: none;
}

.hero-panel__meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 18px 0;
}

.hero-panel__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  padding: 18px;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

.hero-panel h1 {
  font-size: clamp(1.9rem, 4vw, 3.15rem);
  line-height: 0.98;
  max-width: 18ch;
  text-wrap: balance;
}

.hero-lead {
  margin: 14px 0 0;
  color: var(--text-muted);
  max-width: 62ch;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-actions--stack {
  flex-direction: column;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(15, 118, 110, 0.18);
}

.btn-primary:hover {
  background: var(--accent-strong);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--panel-border-strong);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
}

.btn-ghost {
  background: transparent;
  border-color: var(--panel-border);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(19, 30, 20, 0.03);
}

.btn-block {
  width: 100%;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(19, 30, 20, 0.08);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.chip-accent {
  color: #0b5f59;
  border-color: rgba(15, 118, 110, 0.2);
  background: rgba(15, 118, 110, 0.12);
}

.chip-muted {
  background: rgba(19, 30, 20, 0.04);
}

.chip.is-selected {
  color: #0b5f59;
  border-color: rgba(15, 118, 110, 0.22);
  background: rgba(15, 118, 110, 0.1);
}

.hero-card-stack {
  display: grid;
  gap: 12px;
  align-content: start;
}

.glass-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), var(--shadow-sm);
  padding: 16px;
}

.glass-card h2 {
  font-size: 1rem;
}

.glass-card p {
  margin: 8px 0 0;
  color: var(--text-muted);
}

.glass-card--accent {
  background:
    linear-gradient(180deg, rgba(15, 118, 110, 0.08), rgba(255, 255, 255, 0.66));
  border-color: rgba(15, 118, 110, 0.14);
}

.clean-list {
  margin: 10px 0 0;
  padding-left: 16px;
  color: var(--text-muted);
}

.clean-list li + li {
  margin-top: 6px;
}

.surface-card {
  border: 1px solid var(--panel-border);
  background: var(--panel);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  padding: 18px;
}

.section-grid {
  margin-top: 16px;
  display: grid;
  gap: 16px;
}

.section-head {
  margin-bottom: 14px;
}

.section-head--tight {
  margin: 8px 0 16px;
}

.section-head h2,
.section-head h1 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.02;
}

.section-head p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--text-muted);
}

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

.feature-card {
  border-radius: 16px;
  border: 1px solid rgba(19, 30, 20, 0.08);
  background: rgba(255, 255, 255, 0.76);
  padding: 16px;
}

.feature-card h3 {
  font-size: 1.08rem;
  margin-top: 10px;
}

.feature-card p {
  margin: 8px 0 0;
  color: var(--text-muted);
}

.feature-card__tag {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #0b5f59;
  background: rgba(15, 118, 110, 0.12);
}

.feature-card__tag--warm {
  color: #9a5a08;
  background: rgba(217, 119, 6, 0.14);
}

.text-link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0b5f59;
  font-weight: 700;
}

.text-link::after {
  content: "→";
  transition: transform 120ms ease;
}

.text-link:hover::after {
  transform: translateX(2px);
}

.featured-product {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 14px;
  align-items: center;
}

.featured-product__copy p {
  margin: 0;
  color: var(--text-muted);
}

.featured-product__visual {
  min-height: 220px;
  border-radius: 16px;
  border: 1px dashed rgba(15, 118, 110, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(15, 118, 110, 0.03)),
    radial-gradient(circle at 80% 20%, rgba(217, 119, 6, 0.08), transparent 50%);
  padding: 18px;
  display: grid;
  place-items: center;
}

.window-frame {
  width: min(240px, 100%);
  aspect-ratio: 1 / 1.1;
  border-radius: 14px;
  border: 8px solid #e2e7de;
  background: linear-gradient(180deg, #f9fbff, #eff5ff);
  box-shadow: inset 0 0 0 1px rgba(19, 30, 20, 0.06);
  position: relative;
  overflow: hidden;
}

.window-frame--wide {
  width: min(360px, 100%);
  aspect-ratio: 1.25 / 1;
}

.window-frame__shade {
  position: absolute;
  inset: 0 0 18% 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(15, 118, 110, 0.1) 0 2px,
      rgba(255, 255, 255, 0.2) 2px 6px
    ),
    linear-gradient(180deg, rgba(15, 118, 110, 0.26), rgba(15, 118, 110, 0.08));
}

.window-frame__glass {
  position: absolute;
  inset: 12% 8% 8% 8%;
  border-radius: 8px;
  border: 1px solid rgba(19, 30, 20, 0.07);
}

.product-mini-card {
  border-radius: 16px;
  border: 1px solid rgba(19, 30, 20, 0.08);
  background: rgba(255, 255, 255, 0.75);
  padding: 14px;
  display: grid;
  gap: 8px;
}

.product-mini-card__head,
.product-mini-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-mini-card h3 {
  font-size: 1.05rem;
}

.product-mini-card p {
  margin: 0;
  color: var(--text-muted);
}

.product-mini-card__price {
  font-weight: 800;
  color: var(--text);
}

.bullet-list {
  margin: 0;
  padding-left: 18px;
}

.bullet-list li + li {
  margin-top: 7px;
}

.bullet-list--ordered {
  padding-left: 20px;
}

.faq-list {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid rgba(19, 30, 20, 0.08);
  background: rgba(255, 255, 255, 0.68);
  padding: 8px 12px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-item p {
  margin: 8px 0 2px;
  color: var(--text-muted);
}

.catalog-hero {
  display: grid;
  gap: 14px;
}

.catalog-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.catalog-hero p {
  margin: 8px 0 0;
  color: var(--text-muted);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chips button {
  cursor: pointer;
}

.catalog-grid {
  margin-top: 14px;
  display: grid;
  gap: 14px;
}

.catalog-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

.catalog-card__image {
  border-radius: 14px;
  border: 1px dashed rgba(15, 118, 110, 0.2);
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.06), rgba(217, 119, 6, 0.04));
  min-height: 160px;
  display: grid;
  place-items: center;
}

.catalog-card__frame {
  width: 120px;
  aspect-ratio: 1/1.2;
  border: 6px solid #e1e8df;
  border-radius: 12px;
  background: linear-gradient(180deg, #f6fbff, #edf6ff);
}

.catalog-card__content {
  display: grid;
  gap: 8px;
  align-content: start;
}

.catalog-card__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.84rem;
}

.catalog-card__content h2 {
  font-size: 1.2rem;
}

.catalog-card__content p {
  margin: 0;
  color: var(--text-muted);
}

.catalog-card__footer {
  margin-top: 6px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.catalog-card__footer small {
  display: block;
  color: var(--text-muted);
}

.catalog-card__footer strong {
  font-size: 1.1rem;
}

.catalog-card__actions {
  display: flex;
  gap: 8px;
}

.catalog-card .btn {
  min-height: 38px;
}

.product-layout,
.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.product-gallery__hero {
  display: grid;
  place-items: center;
  min-height: 300px;
  border-radius: 14px;
  border: 1px dashed rgba(15, 118, 110, 0.22);
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.04), rgba(255, 255, 255, 0.8));
}

.product-gallery__thumbs {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.product-gallery__thumbs > div {
  height: 62px;
  border-radius: 12px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.7);
}

.product-info h1 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-top: 2px;
}

.product-info__lead {
  margin: 10px 0 0;
  color: var(--text-muted);
}

.product-price-box {
  margin-top: 14px;
  border-radius: 14px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  background: rgba(15, 118, 110, 0.06);
  padding: 12px 14px;
  display: inline-flex;
  gap: 10px;
  align-items: baseline;
}

.product-price-box span {
  color: var(--text-muted);
}

.product-price-box strong {
  font-size: 1.35rem;
  font-family: "Space Grotesk", sans-serif;
}

.configurator-hero {
  display: grid;
  gap: 14px;
}

.configurator-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.configurator-hero p {
  margin: 8px 0 0;
  color: var(--text-muted);
}

.stepper {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.stepper__item {
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 10px 8px;
  border-radius: 14px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.66);
  color: var(--text-muted);
}

.stepper__item span {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(19, 30, 20, 0.06);
  font-weight: 800;
  font-size: 0.8rem;
}

.stepper__item small {
  font-size: 0.76rem;
  text-align: center;
}

.stepper__item.is-active {
  border-color: rgba(15, 118, 110, 0.22);
  background: rgba(15, 118, 110, 0.08);
  color: var(--text);
}

.stepper__item.is-active span {
  background: #0f766e;
  color: #fff;
}

.stepper__item.is-done span {
  background: rgba(15, 118, 110, 0.18);
  color: #0b5f59;
}

.config-layout {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: start;
}

.config-main {
  display: grid;
  gap: 14px;
}

.config-block {
  border-radius: 14px;
  border: 1px solid rgba(19, 30, 20, 0.07);
  background: rgba(255, 255, 255, 0.72);
  padding: 14px;
}

.config-block__head h2 {
  font-size: 1.05rem;
}

.config-block__head p {
  margin: 6px 0 0;
  color: var(--text-muted);
}

.form-grid {
  margin-top: 12px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 6px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field span {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.88rem;
}

.field input {
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid var(--panel-border-strong);
  background: rgba(255, 255, 255, 0.88);
  padding: 0 12px;
  color: var(--text);
}

.choice-grid {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-card {
  position: relative;
  border-radius: 14px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.8);
  padding: 12px;
  display: grid;
  gap: 4px;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card strong {
  font-size: 0.98rem;
}

.choice-card small {
  color: var(--text-muted);
}

.choice-card.is-selected {
  border-color: rgba(15, 118, 110, 0.22);
  background: rgba(15, 118, 110, 0.08);
  box-shadow: inset 0 0 0 1px rgba(15, 118, 110, 0.05);
}

.config-summary {
  position: sticky;
  top: 96px;
}

.config-summary h2 {
  font-size: 1.15rem;
}

.summary-list {
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}

.summary-list li,
.summary-list > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.summary-list span {
  color: var(--text-muted);
}

.summary-list strong {
  text-align: right;
}

.price-breakdown {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(19, 30, 20, 0.08);
  display: grid;
  gap: 8px;
}

.price-breakdown > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.price-breakdown__total {
  padding-top: 8px;
  border-top: 1px dashed rgba(19, 30, 20, 0.12);
  font-weight: 800;
}

.cart-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 12px 0;
}

.cart-item + .cart-item {
  border-top: 1px solid rgba(19, 30, 20, 0.07);
}

.cart-item__thumb {
  border-radius: 12px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.06), rgba(255, 255, 255, 0.8));
  min-height: 76px;
}

.cart-item__content h2 {
  font-size: 1rem;
}

.cart-item__content p {
  margin: 5px 0 0;
  color: var(--text-muted);
}

.cart-item__meta {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--text-muted);
}

.cart-item__meta strong {
  color: var(--text);
}

.cart-summary h2,
.checkout-summary h2,
.checkout-form h2 {
  font-size: 1.05rem;
}

.checkout-layout {
  align-items: start;
}

.checkout-form {
  display: grid;
  gap: 16px;
}

.checkout-form h2:not(:first-child) {
  margin-top: 4px;
}

.checkout-summary {
  position: sticky;
  top: 96px;
}

.checkout-note {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.admin-shell {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 16px;
  align-items: start;
}

.admin-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
}

.admin-sidebar__head h1 {
  font-size: 1.35rem;
}

.admin-sidebar__head p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--text-muted);
}

.admin-sidebar__nav {
  display: grid;
  gap: 6px;
}

.admin-sidebar__nav a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(19, 30, 20, 0.06);
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
  font-weight: 700;
}

.admin-sidebar__nav a.is-active {
  border-color: rgba(15, 118, 110, 0.2);
  background: rgba(15, 118, 110, 0.08);
  color: #0b5f59;
}

.admin-tip {
  border-radius: 14px;
  border: 1px solid rgba(217, 119, 6, 0.18);
  background: rgba(217, 119, 6, 0.08);
  padding: 12px;
}

.admin-tip p {
  margin: 6px 0 0;
  color: var(--text-muted);
}

.admin-content {
  display: grid;
  gap: 14px;
}

.admin-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: start;
}

.admin-hero h2 {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.admin-hero p {
  margin: 8px 0 0;
  color: var(--text-muted);
}

.admin-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 8px;
}

.admin-hero__stats > div {
  border-radius: 12px;
  border: 1px solid rgba(19, 30, 20, 0.06);
  background: rgba(255, 255, 255, 0.75);
  padding: 10px 12px;
  display: grid;
  gap: 4px;
}

.admin-hero__stats span {
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
}

.admin-hero__stats strong {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}

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

.admin-module-card {
  display: grid;
  gap: 8px;
}

.admin-module-card h3 {
  font-size: 1rem;
}

.admin-module-card p {
  margin: 0;
  color: var(--text-muted);
}

.admin-module-card__actions {
  margin-top: 4px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-module-card .btn {
  min-height: 36px;
  font-size: 0.88rem;
}

.admin-note h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.error-card {
  max-width: 680px;
  margin: 48px auto 10px;
  border-radius: 22px;
  border: 1px solid rgba(220, 38, 38, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
  padding: 20px;
}

.error-card h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.error-card p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--text-muted);
}

.error-card__actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  margin-top: 18px;
  padding: 0 0 24px;
}

.site-footer__inner {
  border-radius: 18px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
  padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.site-footer strong {
  font-family: "Space Grotesk", sans-serif;
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--text-muted);
  max-width: 56ch;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid rgba(19, 30, 20, 0.06);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-weight: 700;
  font-size: 0.88rem;
}

body.demo-toast::after {
  content: attr(data-toast);
  position: fixed;
  right: 12px;
  bottom: 12px;
  max-width: min(88vw, 360px);
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  color: var(--text);
  z-index: 100;
  animation: toastIn 180ms ease;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    transform: translateY(-1px);
  }
}

@media (max-width: 980px) {
  .hero-panel__grid,
  .featured-product,
  .product-layout,
  .cart-layout,
  .checkout-layout,
  .config-layout,
  .admin-shell,
  .admin-hero {
    grid-template-columns: 1fr;
  }

  .config-summary,
  .checkout-summary,
  .admin-sidebar {
    position: static;
  }

  .cards-2,
  .admin-card-grid {
    grid-template-columns: 1fr;
  }

  .catalog-card {
    grid-template-columns: 1fr;
  }

  .catalog-card__image {
    min-height: 110px;
  }

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

  .choice-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 8px;
  }

  .site-header__inner {
    min-height: 62px;
    padding: 10px;
  }

  .brand__text small {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    border-radius: 16px;
    border: 1px solid var(--panel-border);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    padding: 8px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

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

  .main-nav a {
    justify-content: flex-start;
    min-height: 42px;
  }

  .main-nav .nav-pill {
    margin-top: 4px;
  }

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

  .site-main {
    padding-top: 12px;
  }

  .hero-panel__meta {
    padding: 14px 14px 0;
  }

  .hero-panel__grid {
    padding: 14px;
  }

  .surface-card,
  .glass-card {
    border-radius: 16px;
    padding: 14px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field--wide {
    grid-column: auto;
  }

  .site-footer__inner {
    flex-direction: column;
  }
}

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

/* =====================================================
   PREMIUM LIGHT DIRECTION (HOME + PUBLIC HEADER v2)
===================================================== */

.site-header--shop .site-header__backdrop {
  background:
    linear-gradient(180deg, rgba(245, 247, 252, 0.96), rgba(245, 247, 252, 0.78)),
    radial-gradient(circle at 12% -10%, rgba(99, 146, 255, 0.12), transparent 45%);
  border-bottom-color: rgba(27, 41, 65, 0.06);
}

.site-header--shop .site-header__inner {
  min-height: 74px;
  padding: 12px 14px;
  border-radius: 22px;
  border-color: rgba(24, 38, 56, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76));
  box-shadow:
    0 18px 40px rgba(17, 32, 53, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.site-header--shop .brand__mark {
  display: none;
}

.site-header--shop .brand__text strong {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 0.9;
  color: #253247;
}

.site-header--shop .brand__text small {
  display: none;
}

.shop-top-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 18px;
}

.shop-top-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.98rem;
  color: #4f5f76;
  transition: color 140ms ease, background-color 140ms ease;
}

.shop-top-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f3a515, #f7c15f);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.shop-top-nav a:hover {
  color: #263348;
  background: rgba(255, 255, 255, 0.58);
}

.shop-top-nav a.is-active {
  color: #253247;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(37, 50, 71, 0.05);
}

.shop-top-nav a.is-active::after {
  transform: scaleX(1);
}

.shop-top-search {
  margin-left: auto;
  width: min(330px, 28vw);
  min-width: 220px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(31, 51, 77, 0.1);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
}

.shop-top-search__icon {
  width: 22px;
  display: grid;
  place-items: center;
  color: #7d8ca1;
  font-size: 1.05rem;
}

.shop-top-search input {
  border: 0;
  background: transparent;
  width: 100%;
  outline: none;
  color: #243247;
  font-size: 0.98rem;
}

.shop-top-search input::placeholder {
  color: #8a97a9;
}

.shop-top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
}

.shop-top-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(31, 51, 77, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: #253247;
  box-shadow: 0 10px 22px rgba(17, 32, 53, 0.04);
  font-size: 0.95rem;
  font-weight: 700;
}

.shop-top-action > span:first-child {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(243, 165, 21, 0.16);
}

.shop-top-action--cart em {
  font-style: normal;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #f3a515;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.shop-top-action--admin {
  padding-inline: 10px;
}

.shop-top-action--admin strong {
  display: none;
}

.shop-top-action--admin > span:first-child {
  background: rgba(37, 50, 71, 0.08);
}

.view-home--luxe {
  padding-top: 6px;
}

.luxe-home {
  display: grid;
  gap: 20px;
}

.luxe-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(31, 51, 77, 0.08);
  background:
    radial-gradient(circle at 0% 0%, rgba(154, 191, 255, 0.18), transparent 48%),
    radial-gradient(circle at 95% 8%, rgba(255, 194, 93, 0.18), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76));
  box-shadow:
    0 22px 60px rgba(16, 31, 51, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.luxe-hero::before {
  content: "";
  position: absolute;
  inset: auto auto -80px -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(193, 222, 255, 0.34) 0, rgba(193, 222, 255, 0) 70%);
  pointer-events: none;
}

.luxe-hero__copy {
  position: relative;
  z-index: 2;
  padding: 12px 4px 8px 4px;
  display: grid;
  align-content: start;
  gap: 0;
}

.luxe-hero__pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.luxe-pill {
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 0.77rem;
  font-weight: 800;
  color: #61718a;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 51, 77, 0.08);
}

.luxe-pill--accent {
  color: #7f5207;
  background: rgba(243, 165, 21, 0.14);
  border-color: rgba(243, 165, 21, 0.18);
}

.luxe-hero__copy h1 {
  margin: 2px 0 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #253247;
  text-wrap: balance;
}

.luxe-hero__copy h1 span {
  color: #f0a324;
}

.luxe-hero__copy p {
  margin: 16px 0 0;
  max-width: 54ch;
  font-size: 1.05rem;
  color: #63728a;
  line-height: 1.45;
}

.luxe-hero__actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.luxe-btn {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.luxe-btn--primary {
  color: #2e250f;
  background: linear-gradient(180deg, #ffc24f, #f3a515);
  box-shadow: 0 16px 30px rgba(243, 165, 21, 0.25);
}

.luxe-btn--ghost {
  color: #2c3950;
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(31, 51, 77, 0.1);
  box-shadow: 0 12px 24px rgba(18, 31, 49, 0.05);
}

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

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

.luxe-metric {
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(31, 51, 77, 0.08);
  background: rgba(255, 255, 255, 0.65);
  display: grid;
  gap: 5px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.luxe-metric strong {
  color: #233247;
  font-size: 0.96rem;
  font-family: "Space Grotesk", sans-serif;
}

.luxe-metric span {
  color: #6f7e93;
  font-size: 0.82rem;
  line-height: 1.35;
}

.luxe-hero__visual {
  position: relative;
  z-index: 1;
}

.hero-scene {
  position: relative;
  height: 100%;
  min-height: 420px;
  border-radius: 22px;
  border: 1px solid rgba(31, 51, 77, 0.08);
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 25%, rgba(255, 220, 157, 0.75), rgba(255, 220, 157, 0) 30%),
    radial-gradient(circle at 35% 15%, rgba(173, 216, 255, 0.46), rgba(173, 216, 255, 0) 34%),
    linear-gradient(180deg, #edf4ff 0%, #e9efdb 42%, #ece6d8 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 22px 45px rgba(16, 31, 51, 0.08);
}

.hero-scene::before {
  content: "";
  position: absolute;
  inset: 44% -4% 0 -4%;
  background:
    linear-gradient(180deg, rgba(235, 240, 229, 0.2), rgba(215, 207, 190, 0.75)),
    repeating-linear-gradient(
      100deg,
      rgba(255, 255, 255, 0.18) 0 12px,
      rgba(0, 0, 0, 0.02) 12px 18px
    );
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-scene__glass {
  position: absolute;
  inset: 12% 8% 14% 40%;
  border-radius: 16px;
  border: 3px solid rgba(38, 46, 59, 0.38);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 90% 12%, rgba(255, 255, 255, 0.52), transparent 45%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.hero-scene__interior {
  position: absolute;
  inset: 18% 13% 20% 45%;
  border-radius: 12px;
  background:
    radial-gradient(circle at 18% 70%, rgba(158, 181, 117, 0.45), transparent 30%),
    radial-gradient(circle at 70% 72%, rgba(255, 214, 157, 0.22), transparent 34%),
    linear-gradient(135deg, #f9f1e1 0%, #e4d8c2 35%, #cfbea4 100%);
  border: 1px solid rgba(43, 39, 31, 0.1);
}

.hero-scene__awnings {
  position: absolute;
  inset: 18% 10% auto 46%;
  height: 56px;
  border-radius: 10px;
  background:
    repeating-linear-gradient(
      100deg,
      rgba(245, 193, 110, 0.95) 0 14px,
      rgba(255, 234, 188, 0.95) 14px 24px
    );
  transform: skewX(-17deg);
  box-shadow: 0 10px 18px rgba(64, 52, 31, 0.15);
}

.hero-scene__sun {
  position: absolute;
  top: 11%;
  left: 62%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 232, 174, 0.95) 0 28%, rgba(255, 211, 110, 0.55) 45%, rgba(255, 211, 110, 0) 75%);
  filter: blur(1px);
}

.hero-scene__plant {
  position: absolute;
  bottom: 14%;
  width: 52px;
  height: 92px;
  border-radius: 20px 20px 8px 8px;
  background:
    radial-gradient(circle at 60% 35%, rgba(122, 160, 91, 0.7), transparent 55%),
    radial-gradient(circle at 40% 48%, rgba(86, 133, 68, 0.7), transparent 55%),
    linear-gradient(180deg, rgba(67, 92, 54, 0.16), rgba(67, 92, 54, 0));
}

.hero-scene__plant::after {
  content: "";
  position: absolute;
  inset: auto 8px -16px 8px;
  height: 22px;
  border-radius: 8px;
  background: #c7d1c1;
  box-shadow: 0 6px 10px rgba(18, 31, 49, 0.08);
}

.hero-scene__plant--left {
  left: 8%;
}

.hero-scene__plant--right {
  right: 6%;
}

.hero-scene__badge {
  position: absolute;
  right: 7%;
  bottom: 12%;
  width: 106px;
  height: 106px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1.02;
  font-weight: 800;
  color: #fff;
  background:
    linear-gradient(180deg, #ffc34d, #f0a220);
  box-shadow:
    0 16px 30px rgba(243, 165, 21, 0.26),
    inset 0 0 0 3px rgba(255, 255, 255, 0.26);
}

.luxe-section {
  border-radius: 24px;
  border: 1px solid rgba(31, 51, 77, 0.06);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.5));
  box-shadow: 0 16px 36px rgba(17, 32, 53, 0.05);
  padding: 16px;
}

.luxe-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.luxe-kicker {
  margin: 0 0 6px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: #8a97aa;
}

.luxe-section__head h2 {
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  line-height: 1;
  color: #243247;
  letter-spacing: -0.03em;
}

.luxe-chip-link {
  flex-shrink: 0;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(31, 51, 77, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: #44556f;
  font-weight: 700;
}

.luxe-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.luxe-category-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(31, 51, 77, 0.08);
  min-height: 190px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 28px rgba(16, 31, 51, 0.05);
}

.luxe-category-card.is-active {
  box-shadow:
    0 18px 32px rgba(16, 31, 51, 0.08),
    0 0 0 2px rgba(243, 165, 21, 0.2);
}

.luxe-category-card__image {
  position: absolute;
  inset: 0;
}

.scene-mini {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 218, 146, 0.65), transparent 32%),
    radial-gradient(circle at 15% 15%, rgba(183, 218, 255, 0.32), transparent 36%),
    linear-gradient(180deg, #eef4fb 0%, #dfe8ee 38%, #d8d6ce 100%);
}

.scene-mini::before {
  content: "";
  position: absolute;
  inset: 8% 8% 16% 8%;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, rgba(68, 82, 99, 0.12), rgba(68, 82, 99, 0.04));
  border: 2px solid rgba(45, 58, 75, 0.26);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.scene-mini::after {
  content: "";
  position: absolute;
  inset: auto -5% 0 -5%;
  height: 42%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(225, 214, 194, 0.55)),
    repeating-linear-gradient(
      105deg,
      rgba(255, 255, 255, 0.14) 0 10px,
      rgba(0, 0, 0, 0.02) 10px 16px
    );
}

.scene-mini--is-rolety {
  background:
    radial-gradient(circle at 78% 14%, rgba(255, 216, 153, 0.65), transparent 30%),
    radial-gradient(circle at 18% 15%, rgba(194, 218, 244, 0.34), transparent 40%),
    linear-gradient(180deg, #eef2f7 0%, #e4ecf5 38%, #dfd5ca 100%);
}

.scene-mini--is-markizy {
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 205, 125, 0.75), transparent 32%),
    radial-gradient(circle at 28% 12%, rgba(181, 218, 255, 0.28), transparent 42%),
    linear-gradient(180deg, #edf6ff 0%, #dce8e8 40%, #e2d6bd 100%);
}

.scene-mini--is-markizy::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.05)),
    linear-gradient(180deg, rgba(68, 82, 99, 0.12), rgba(68, 82, 99, 0.04));
}

.scene-mini--is-markizy::after {
  background:
    repeating-linear-gradient(
      100deg,
      rgba(245, 193, 110, 0.82) 0 12px,
      rgba(255, 232, 188, 0.8) 12px 22px
    );
  height: 22%;
  inset: 10% 16% auto 28%;
  border-radius: 10px;
  transform: skewX(-14deg);
  box-shadow: 0 8px 14px rgba(59, 44, 23, 0.13);
}

.scene-mini--is-moskitiery {
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 227, 172, 0.55), transparent 28%),
    radial-gradient(circle at 24% 18%, rgba(170, 206, 255, 0.32), transparent 40%),
    linear-gradient(180deg, #eef4fb 0%, #e5eef6 38%, #d8dace 100%);
}

.scene-mini--is-moskitiery::before {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(70, 86, 106, 0.12) 0 1px,
      rgba(255, 255, 255, 0.08) 1px 5px
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.05));
}

.scene-mini--is-akcesoria {
  background:
    radial-gradient(circle at 78% 18%, rgba(201, 210, 255, 0.4), transparent 34%),
    radial-gradient(circle at 24% 18%, rgba(235, 243, 255, 0.52), transparent 42%),
    linear-gradient(180deg, #f2f4fb 0%, #e8ebf6 44%, #e6e3df 100%);
}

.scene-mini--is-akcesoria::before {
  inset: 20% 14% 18% 14%;
  border-radius: 18px;
  border: 0;
  background:
    radial-gradient(circle at 30% 60%, rgba(255, 255, 255, 0.9), rgba(255,255,255,0) 60%),
    linear-gradient(135deg, #f7f8fd 0%, #dee4f4 70%, #cfd6ea 100%);
}

.scene-mini--is-akcesoria::after {
  inset: auto 10% 18% 26%;
  height: 16px;
  border-radius: 999px;
  background: rgba(30, 46, 70, 0.08);
  filter: blur(2px);
}

.luxe-category-card__overlay {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  min-height: 70px;
  border-radius: 16px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 8px;
  background:
    linear-gradient(180deg, rgba(17, 24, 33, 0.06), rgba(17, 24, 33, 0.22)),
    rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.luxe-category-card__overlay h3 {
  margin: 0;
  font-size: 1.35rem;
  color: #fff;
  text-shadow: 0 1px 10px rgba(8, 12, 17, 0.16);
}

.luxe-category-card__overlay small {
  margin-top: 2px;
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  font-size: 0.95rem;
}

.luxe-cart-bubble {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffc24f, #f3a515);
  color: #382a0c;
  box-shadow: 0 10px 20px rgba(243, 165, 21, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.38);
  font-style: normal;
}

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

.luxe-product-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(31, 51, 77, 0.08);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 30px rgba(16, 31, 51, 0.05);
  display: grid;
}

.luxe-product-card__media {
  position: relative;
  min-height: 156px;
  background: rgba(244, 247, 252, 0.7);
}

.luxe-product-card__media .scene-mini {
  inset: 0;
}

.luxe-product-card__media .scene-mini::before {
  inset: 14% 12% 16% 12%;
}

.luxe-product-card__media .scene-mini::after {
  inset: auto -4% 0 -4%;
  height: 34%;
}

.luxe-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.luxe-badge.is-new { background: rgba(78, 206, 157, 0.18); color: #1b8c67; }
.luxe-badge.is-best { background: rgba(84, 194, 204, 0.18); color: #0f7a85; }
.luxe-badge.is-hit { background: rgba(243, 165, 21, 0.18); color: #9b6309; }
.luxe-badge.is-sale { background: rgba(140, 147, 234, 0.18); color: #5a62c6; }

.luxe-product-card__body {
  padding: 12px;
  display: grid;
  gap: 10px;
}

.luxe-product-card__body h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.05;
  color: #253247;
}

.luxe-product-card__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.luxe-price-group {
  display: grid;
  gap: 1px;
}

.luxe-price-group strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: #253247;
}

.luxe-price-group small {
  color: #9ba7b8;
  text-decoration: line-through;
  font-weight: 700;
}

.luxe-bottom-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.luxe-promo-card {
  position: relative;
  border-radius: 26px;
  border: 1px solid rgba(31, 51, 77, 0.08);
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 199, 104, 0.18), transparent 34%),
    radial-gradient(circle at 14% 85%, rgba(164, 206, 255, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72));
  box-shadow: 0 18px 40px rgba(16, 31, 51, 0.06);
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 14px;
  overflow: hidden;
}

.luxe-promo-card__copy h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 0.98;
  color: #253247;
}

.luxe-promo-card__copy p:not(.luxe-kicker) {
  margin: 10px 0 0;
  color: #67758d;
  line-height: 1.45;
}

.luxe-promo-card__visual {
  display: grid;
  align-items: center;
}

.config-preview-panel {
  border-radius: 18px;
  border: 1px solid rgba(31, 51, 77, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 34px rgba(16, 31, 51, 0.08);
  padding: 12px;
  display: grid;
  gap: 10px;
}

.config-preview-panel__header {
  display: flex;
  gap: 5px;
}

.config-preview-panel__header span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #d5dce7;
}

.config-preview-panel__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.config-preview-panel__steps div {
  min-height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(37, 50, 71, 0.04);
  color: #6b7a91;
  font-size: 0.7rem;
  font-weight: 800;
  text-align: center;
  padding: 3px;
}

.config-preview-panel__steps .is-active {
  background: rgba(243, 165, 21, 0.14);
  color: #9b6309;
}

.config-preview-panel__steps .is-done {
  background: rgba(15, 118, 110, 0.1);
  color: #0b5f59;
}

.config-preview-panel__rows {
  display: grid;
  gap: 8px;
}

.config-preview-panel__rows > div {
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(31, 51, 77, 0.06);
  background: rgba(255, 255, 255, 0.64);
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.config-preview-panel__rows label {
  color: #76849a;
  font-size: 0.8rem;
  font-weight: 700;
}

.config-preview-panel__rows strong {
  color: #253247;
  font-size: 0.9rem;
}

.config-preview-panel__price {
  border-radius: 14px;
  background: linear-gradient(180deg, #253247, #1d293a);
  color: #fff;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.config-preview-panel__price span {
  opacity: 0.86;
}

.config-preview-panel__price strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

.luxe-side-stack {
  display: grid;
  gap: 14px;
}

.luxe-side-card {
  border-radius: 22px;
  border: 1px solid rgba(31, 51, 77, 0.07);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 30px rgba(16, 31, 51, 0.05);
  padding: 16px;
}

.luxe-side-card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.02;
  color: #253247;
}

.luxe-side-card p:not(.luxe-kicker) {
  margin: 10px 0 0;
  color: #68778f;
  line-height: 1.42;
}

.luxe-side-card--accent {
  background:
    radial-gradient(circle at 88% 10%, rgba(243, 165, 21, 0.13), transparent 38%),
    rgba(255, 255, 255, 0.84);
}

.luxe-text-link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #26354a;
  font-weight: 800;
}

.luxe-text-link::after {
  content: "→";
  color: #f0a220;
}

@media (hover: hover) and (pointer: fine) {
  .luxe-category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 34px rgba(16, 31, 51, 0.08);
  }

  .luxe-category-card,
  .luxe-product-card,
  .shop-top-action {
    transition: transform 140ms ease, box-shadow 160ms ease, background-color 140ms ease;
  }

  .luxe-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(16, 31, 51, 0.08);
  }

  .shop-top-action:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 26px rgba(16, 31, 51, 0.06);
  }
}

@media (max-width: 1200px) {
  .shop-top-search {
    width: min(260px, 22vw);
    min-width: 180px;
  }

  .shop-top-action--phone strong {
    display: none;
  }

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

@media (max-width: 980px) {
  .site-header--shop .site-header__inner {
    min-height: 68px;
    gap: 10px;
  }

  .site-header--shop .brand__text strong {
    font-size: 1.55rem;
    letter-spacing: 0.13em;
  }

  .shop-top-search {
    display: none;
  }

  .luxe-hero,
  .luxe-bottom-grid,
  .luxe-promo-card {
    grid-template-columns: 1fr;
  }

  .hero-scene {
    min-height: 320px;
  }

  .luxe-hero__features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header--shop .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    order: 6;
  }

  .site-header--shop .shop-top-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    margin-left: 0;
    padding: 8px;
    gap: 6px;
    flex-direction: column;
    align-items: stretch;
    border-radius: 16px;
    border: 1px solid rgba(24, 38, 56, 0.08);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 34px rgba(17, 32, 53, 0.08);
    display: none;
    z-index: 30;
  }

  .site-header--shop .shop-top-nav.is-open {
    display: flex;
  }

  .site-header--shop .shop-top-nav a {
    justify-content: flex-start;
    min-height: 44px;
  }

  .site-header--shop .shop-top-nav a::after {
    left: 12px;
    right: auto;
    width: 30px;
    bottom: 8px;
  }

  .site-header--shop .shop-top-actions {
    margin-left: auto;
    gap: 6px;
  }

  .shop-top-action {
    min-height: 40px;
    padding: 0 10px;
  }

  .shop-top-action strong {
    display: none;
  }

  .shop-top-action--cart em {
    margin-left: -4px;
  }

  .luxe-hero {
    padding: 12px;
    border-radius: 22px;
  }

  .luxe-hero__copy h1 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .luxe-hero__copy p {
    font-size: 0.95rem;
  }

  .luxe-btn {
    width: 100%;
    justify-content: center;
  }

  .luxe-section {
    padding: 12px;
    border-radius: 20px;
  }

  .luxe-section__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .luxe-category-grid,
  .luxe-product-grid {
    grid-template-columns: 1fr;
  }

  .luxe-category-card {
    min-height: 176px;
  }

  .luxe-promo-card {
    padding: 12px;
    border-radius: 20px;
  }

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

  .hero-scene__badge {
    width: 86px;
    height: 86px;
    font-size: 0.9rem;
  }
}

/* =====================================================
   NEO FUTURE LIGHT (HOME v3 - full width / wow pass)
===================================================== */

.page-home .site-main {
  padding-top: 2px;
  padding-bottom: 18px;
}

.page-home .site-footer {
  margin-top: 0;
}

.page-home .site-footer__inner {
  width: min(calc(100vw - 36px), 1520px);
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(31, 51, 77, 0.05);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.site-header--shop .site-header__backdrop {
  background:
    linear-gradient(180deg, rgba(246, 248, 252, 0.88), rgba(246, 248, 252, 0.28)),
    radial-gradient(circle at 10% -10%, rgba(150, 192, 255, 0.18), transparent 50%);
  border-bottom-color: rgba(31, 51, 77, 0.03);
}

.site-header--shop .site-header__inner.container {
  width: min(calc(100vw - 34px), 1500px);
}

.site-header--shop .site-header__inner {
  min-height: 78px;
  padding: 12px 10px;
  border-radius: 20px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.site-header--shop .site-header__inner::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(37, 50, 71, 0), rgba(37, 50, 71, 0.1), rgba(37, 50, 71, 0));
  pointer-events: none;
}

.site-header--shop .brand {
  margin-right: 8px;
}

.site-header--shop .brand__mark {
  display: none;
}

.site-header--shop .brand__text strong {
  font-size: clamp(1.8rem, 2vw, 2.25rem);
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #243247;
}

.site-header--shop .brand__text small {
  display: none;
}

.site-header--shop .shop-top-nav {
  margin-left: 12px;
  gap: 2px;
}

.site-header--shop .shop-top-nav a {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 14px;
  color: #4c5d75;
  font-weight: 700;
  background: transparent;
}

.site-header--shop .shop-top-nav a.is-active {
  color: #263448;
  background: rgba(255, 255, 255, 0.66);
  box-shadow:
    inset 0 0 0 1px rgba(37, 50, 71, 0.04),
    0 8px 18px rgba(17, 32, 53, 0.04);
}

.site-header--shop .shop-top-nav a::after {
  left: 16px;
  right: 16px;
  bottom: 6px;
}

.site-header--shop .shop-top-search {
  width: min(360px, 26vw);
  height: 48px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
  border-color: rgba(31, 51, 77, 0.08);
  box-shadow:
    0 10px 24px rgba(17, 32, 53, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.site-header--shop .shop-top-actions {
  gap: 7px;
}

.site-header--shop .shop-top-action {
  min-height: 44px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
  border-color: rgba(31, 51, 77, 0.07);
  box-shadow: 0 10px 22px rgba(17, 32, 53, 0.04);
}

.site-header--shop .shop-top-action--admin {
  background: rgba(37, 50, 71, 0.05);
}

.site-header--shop .shop-top-action--admin > span:first-child {
  background: rgba(37, 50, 71, 0.08);
}

.view-home--neo {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
}

.neo-home-shell {
  position: relative;
  padding: 8px 0 30px;
  overflow: hidden;
}

.neo-home-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.neo-home-bg__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.65;
}

.neo-home-bg__blob--a {
  width: 680px;
  height: 680px;
  top: -220px;
  left: -140px;
  background: radial-gradient(circle, rgba(167, 207, 255, 0.35), rgba(167, 207, 255, 0) 72%);
}

.neo-home-bg__blob--b {
  width: 720px;
  height: 720px;
  top: 120px;
  right: -180px;
  background: radial-gradient(circle, rgba(255, 207, 130, 0.3), rgba(255, 207, 130, 0) 70%);
}

.neo-home-bg__blob--c {
  width: 760px;
  height: 760px;
  bottom: -320px;
  left: 28%;
  background: radial-gradient(circle, rgba(203, 224, 255, 0.26), rgba(203, 224, 255, 0) 70%);
}

.neo-home-bg__grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(37, 50, 71, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 50, 71, 0.02) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.05) 38%, rgba(0,0,0,0.2) 100%);
}

.neo-hero,
.neo-ribbon,
.neo-flow-grid {
  position: relative;
  width: min(calc(100vw - 34px), 1500px);
  margin-inline: auto;
  z-index: 2;
}

.neo-hero {
  margin-top: 8px;
}

.neo-hero__frame {
  position: relative;
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  gap: 18px;
  align-items: stretch;
  border-radius: 30px;
  padding: 18px;
  background:
    radial-gradient(circle at 12% 12%, rgba(160, 201, 255, 0.12), transparent 44%),
    radial-gradient(circle at 85% 15%, rgba(255, 202, 108, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(31, 51, 77, 0.05);
  backdrop-filter: blur(14px);
}

.neo-hero__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.44), rgba(255,255,255,0)),
    radial-gradient(circle at 85% 75%, rgba(255,255,255,0.22), transparent 55%);
  pointer-events: none;
}

.neo-hero__copy {
  position: relative;
  z-index: 2;
  padding: 10px 8px 8px 8px;
}

.neo-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.neo-signal {
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(31, 51, 77, 0.06);
  color: #68788f;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.neo-signal--live {
  color: #9a6208;
  background: rgba(243, 165, 21, 0.12);
  border-color: rgba(243, 165, 21, 0.16);
}

.neo-hero__copy h1 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: #1f2c3f;
  text-wrap: balance;
  display: grid;
  gap: 4px;
}

.neo-hero__copy h1 > span {
  color: #eea227;
}

.neo-hero__copy h1 > em {
  font-style: normal;
  color: #7f8da3;
  font-weight: 500;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.neo-hero__lead {
  margin: 16px 0 0;
  max-width: 58ch;
  color: #637289;
  font-size: 1.04rem;
  line-height: 1.46;
}

.neo-hero__actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.neo-btn {
  min-height: 56px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  border: 1px solid transparent;
  color: #223147;
  transition: transform 140ms ease, box-shadow 160ms ease, background-color 140ms ease;
}

.neo-btn--primary {
  background: linear-gradient(180deg, #ffc85d, #f1a61e);
  box-shadow: 0 18px 32px rgba(243, 165, 21, 0.22);
}

.neo-btn--ghost {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(31, 51, 77, 0.08);
  box-shadow: 0 12px 22px rgba(16, 31, 51, 0.04);
}

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

.neo-hero__metrics {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.neo-metric {
  min-height: 76px;
  border-radius: 16px;
  border: 1px solid rgba(31, 51, 77, 0.05);
  background: rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(8px);
  padding: 10px 12px;
  display: grid;
  align-content: center;
  gap: 4px;
}

.neo-metric span {
  color: #7a889d;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.neo-metric strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
  color: #243247;
}

.neo-hero__visual {
  position: relative;
  min-width: 0;
}

.neo-stage {
  position: relative;
  min-height: 470px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #edf4ff 0%, #eef0e6 42%, #ede4d6 100%);
  border: 1px solid rgba(31, 51, 77, 0.06);
  box-shadow:
    0 24px 48px rgba(17, 32, 53, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

.neo-stage__sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 235, 187, 0.95), rgba(255, 235, 187, 0) 34%),
    radial-gradient(circle at 30% 18%, rgba(174, 219, 255, 0.55), rgba(174, 219, 255, 0) 40%),
    radial-gradient(circle at 14% 80%, rgba(205, 228, 255, 0.35), rgba(205, 228, 255, 0) 40%);
}

.neo-stage__scene {
  position: absolute;
  inset: 14% 6% 14% 36%;
  border-radius: 18px;
  background:
    radial-gradient(circle at 22% 72%, rgba(147, 173, 106, 0.45), rgba(147,173,106,0) 28%),
    radial-gradient(circle at 70% 68%, rgba(255, 220, 158, 0.35), rgba(255,220,158,0) 30%),
    linear-gradient(135deg, #f5ead3 0%, #e1cfad 45%, #cfb996 100%);
  border: 1px solid rgba(53, 48, 38, 0.08);
}

.neo-stage__glass {
  position: absolute;
  inset: 8% 4% 10% 30%;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255,255,255,0.08)),
    linear-gradient(180deg, rgba(15, 24, 35, 0.04), rgba(15,24,35,0.01));
  border: 3px solid rgba(34, 43, 56, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.38);
}

.neo-stage__frame {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 34%, rgba(28, 39, 52, 0.26) 34% 35%, transparent 35% 62%, rgba(28,39,52,0.26) 62% 63%, transparent 63%),
    linear-gradient(180deg, transparent 10%, rgba(28,39,52,0.18) 10% 11%, transparent 11%);
  pointer-events: none;
}

.neo-stage__awning {
  position: absolute;
  inset: 14% 9% auto 44%;
  height: 68px;
  border-radius: 14px;
  transform: skewX(-16deg);
  background:
    repeating-linear-gradient(
      100deg,
      rgba(245, 193, 110, 0.95) 0 16px,
      rgba(255, 234, 188, 0.94) 16px 28px
    );
  box-shadow: 0 14px 22px rgba(76, 56, 25, 0.14);
}

.neo-stage__sunflare {
  position: absolute;
  top: 10%;
  left: 67%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 239, 194, 0.95) 0 18%, rgba(255, 213, 123, 0.55) 42%, rgba(255,213,123,0) 74%);
  filter: blur(1px);
}

.neo-stage__floor {
  position: absolute;
  inset: auto -6% 0 -6%;
  height: 40%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(214,200,176,0.65)),
    repeating-linear-gradient(
      105deg,
      rgba(255,255,255,0.2) 0 14px,
      rgba(0,0,0,0.02) 14px 20px
    );
  border-top: 1px solid rgba(255,255,255,0.38);
}

.neo-stage__spot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 24px rgba(255,255,255,0.65);
}

.neo-stage__spot--1 {
  top: 11%;
  left: 45%;
}

.neo-stage__spot--2 {
  top: 17%;
  left: 58%;
}

.neo-stage__badge {
  position: absolute;
  right: 7%;
  bottom: 11%;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1.02;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(180deg, #ffcc68, #f0a220);
  box-shadow:
    0 18px 32px rgba(243, 165, 21, 0.22),
    inset 0 0 0 3px rgba(255,255,255,0.22);
}

.neo-stage__orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  filter: blur(0.2px);
}

.neo-stage__orbit--a {
  width: 240px;
  height: 240px;
  right: -30px;
  top: 36px;
  border-color: rgba(255, 216, 141, 0.28);
}

.neo-stage__orbit--b {
  width: 320px;
  height: 320px;
  left: -120px;
  bottom: -100px;
  border-color: rgba(155, 198, 255, 0.2);
}

.neo-ribbon {
  margin-top: 16px;
  padding: 8px 2px;
}

.neo-ribbon__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.neo-kicker {
  margin: 0 0 6px;
  font-size: 0.74rem;
  font-weight: 800;
  color: #8795a9;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.neo-ribbon__head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #243247;
  font-family: "Space Grotesk", sans-serif;
}

.neo-pill-link {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(31, 51, 77, 0.07);
  background: rgba(255, 255, 255, 0.54);
  color: #4d5f77;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.neo-category-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.neo-cat-tile {
  position: relative;
  min-height: 220px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.34);
  border: 1px solid rgba(31, 51, 77, 0.05);
  box-shadow: 0 16px 34px rgba(16, 31, 51, 0.05);
  transition: transform 140ms ease, box-shadow 170ms ease;
}

.neo-cat-tile.is-active {
  box-shadow:
    0 24px 38px rgba(16, 31, 51, 0.07),
    0 0 0 2px rgba(243, 165, 21, 0.18);
}

.neo-cat-tile__art {
  position: absolute;
  inset: 0;
}

.neo-art {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 223, 165, 0.62), transparent 32%),
    radial-gradient(circle at 18% 12%, rgba(179, 214, 255, 0.34), transparent 38%),
    linear-gradient(180deg, #edf3fb 0%, #dde8ef 42%, #ddd8cd 100%);
}

.neo-art::before {
  content: "";
  position: absolute;
  inset: 10% 8% 18% 8%;
  border-radius: 16px;
  border: 2px solid rgba(40, 51, 66, 0.26);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.36), rgba(255,255,255,0.08)),
    linear-gradient(180deg, rgba(15,24,35,0.03), rgba(15,24,35,0));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28);
}

.neo-art::after {
  content: "";
  position: absolute;
  inset: auto -5% 0 -5%;
  height: 34%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(217,204,179,0.55)),
    repeating-linear-gradient(105deg, rgba(255,255,255,0.15) 0 12px, rgba(0,0,0,0.02) 12px 18px);
}

.neo-art--markizy::after {
  inset: 10% 18% auto 34%;
  height: 18%;
  border-radius: 12px;
  transform: skewX(-14deg);
  background:
    repeating-linear-gradient(100deg, rgba(245,193,110,0.92) 0 14px, rgba(255,232,188,0.92) 14px 26px);
  box-shadow: 0 10px 16px rgba(66, 50, 23, 0.14);
}

.neo-art--moskitiery::before {
  background:
    repeating-linear-gradient(90deg, rgba(48, 62, 80, 0.12) 0 1px, rgba(255,255,255,0.09) 1px 5px),
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
}

.neo-art--akcesoria::before {
  inset: 18% 12% 22% 12%;
  border: 0;
  border-radius: 18px;
  background:
    radial-gradient(circle at 24% 58%, rgba(255,255,255,0.85), rgba(255,255,255,0) 55%),
    linear-gradient(135deg, #f7f8fd 0%, #dce4f7 75%, #cad5ec 100%);
}

.neo-art--akcesoria::after {
  inset: auto 14% 14% 22%;
  height: 14px;
  border-radius: 999px;
  background: rgba(32, 47, 72, 0.08);
  filter: blur(2px);
}

.neo-cat-tile__glass {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  min-height: 74px;
  border-radius: 18px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 8px;
  background:
    linear-gradient(180deg, rgba(17,24,33,0.04), rgba(17,24,33,0.18)),
    rgba(255,255,255,0.24);
  border: 1px solid rgba(255,255,255,0.24);
  backdrop-filter: blur(12px);
}

.neo-cat-tile__glass h3 {
  margin: 0;
  color: #fff;
  font-size: 1.45rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.neo-cat-tile__glass small {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  font-size: 0.96rem;
}

.neo-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #35270b;
  background: linear-gradient(180deg, #ffc85d, #f1a61e);
  box-shadow: 0 14px 22px rgba(243,165,21,0.2);
  border: 1px solid rgba(255,255,255,0.35);
}

.neo-flow-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 14px;
}

.neo-stream {
  position: relative;
  border-radius: 26px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(31, 51, 77, 0.05);
  background:
    radial-gradient(circle at 80% 15%, rgba(255, 204, 111, 0.14), transparent 35%),
    radial-gradient(circle at 12% 80%, rgba(163, 205, 255, 0.12), transparent 40%),
    rgba(255,255,255,0.32);
  backdrop-filter: blur(12px);
}

.neo-stream::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0)),
    radial-gradient(circle at 100% 100%, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}

.neo-stream--config {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 14px;
}

.neo-stream__copy {
  position: relative;
  z-index: 1;
}

.neo-stream__copy h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 0.98;
  color: #243247;
  font-family: "Space Grotesk", sans-serif;
}

.neo-stream__copy p:not(.neo-kicker) {
  margin: 12px 0 0;
  color: #66758d;
  line-height: 1.45;
}

.neo-config-console {
  position: relative;
  z-index: 1;
  align-self: center;
  border-radius: 20px;
  padding: 12px;
  border: 1px solid rgba(31, 51, 77, 0.07);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.68));
  box-shadow: 0 20px 36px rgba(16, 31, 51, 0.07);
}

.neo-config-console__row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.neo-config-console__row span {
  min-height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  padding: 4px 6px;
  text-align: center;
  background: rgba(37, 50, 71, 0.04);
  color: #70809a;
  font-size: 0.72rem;
  font-weight: 800;
}

.neo-config-console__row .is-active {
  color: #9a6208;
  background: rgba(243, 165, 21, 0.14);
}

.neo-config-console__row .is-ok {
  color: #0b5f59;
  background: rgba(15, 118, 110, 0.1);
}

.neo-config-console__grid {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.neo-config-console__grid > div {
  min-height: 48px;
  border-radius: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(31, 51, 77, 0.05);
  background: rgba(255,255,255,0.62);
  padding: 0 12px;
}

.neo-config-console__grid label {
  color: #76869d;
  font-weight: 700;
  font-size: 0.84rem;
}

.neo-config-console__grid strong {
  color: #243247;
  font-weight: 800;
}

.neo-config-console__price {
  margin-top: 10px;
  min-height: 54px;
  border-radius: 15px;
  background: linear-gradient(180deg, #27354a, #1f2c3f);
  color: #fff;
  padding: 0 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 14px 24px rgba(18, 31, 49, 0.16);
}

.neo-config-console__price strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
}

.neo-panel-links {
  display: grid;
  gap: 12px;
}

.neo-side-link {
  border-radius: 24px;
  padding: 16px;
  border: 1px solid rgba(31, 51, 77, 0.05);
  background:
    radial-gradient(circle at 85% 15%, rgba(167,207,255,0.12), transparent 40%),
    rgba(255,255,255,0.34);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 34px rgba(16, 31, 51, 0.05);
  color: inherit;
}

.neo-side-link h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 0.98;
  color: #243247;
  font-family: "Space Grotesk", sans-serif;
}

.neo-side-link p:not(.neo-kicker) {
  margin: 10px 0 0;
  color: #66758d;
}

.neo-side-link > span:last-child {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #243247;
  font-weight: 800;
}

.neo-side-link--alt {
  background:
    radial-gradient(circle at 80% 16%, rgba(255,204,111,0.12), transparent 38%),
    rgba(255,255,255,0.36);
}

.neo-ribbon--products {
  margin-top: 18px;
}

.neo-product-atlas {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.neo-product-tile {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.38);
  border: 1px solid rgba(31, 51, 77, 0.05);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 30px rgba(16, 31, 51, 0.05);
  transition: transform 140ms ease, box-shadow 160ms ease;
}

.neo-product-tile__art {
  position: relative;
  min-height: 168px;
}

.neo-product-tile__art .neo-art {
  inset: 0;
}

.neo-product-tile__art .neo-art::before {
  inset: 14% 10% 16% 10%;
}

.neo-product-tile__art .neo-art::after {
  height: 28%;
}

.neo-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}

.neo-badge.is-new { background: rgba(69, 194, 150, 0.16); color: #177b5a; }
.neo-badge.is-best { background: rgba(84, 194, 204, 0.16); color: #0e6f7d; }
.neo-badge.is-popular { background: rgba(243, 165, 21, 0.16); color: #9a6208; }
.neo-badge.is-sale { background: rgba(131, 142, 235, 0.16); color: #5d65cb; }

.neo-product-tile__body {
  padding: 12px;
  display: grid;
  gap: 10px;
}

.neo-product-tile__body h3 {
  margin: 0;
  font-size: 1.07rem;
  color: #243247;
  line-height: 1.04;
}

.neo-product-tile__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.neo-price-stack {
  display: grid;
  gap: 2px;
}

.neo-price-stack strong {
  color: #243247;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.neo-price-stack small {
  color: #9aa6b7;
  text-decoration: line-through;
  font-weight: 700;
}

.neo-icon-badge--cart {
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .neo-cat-tile:hover,
  .neo-product-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 36px rgba(16, 31, 51, 0.08);
  }

  .neo-side-link:hover,
  .neo-pill-link:hover {
    box-shadow: 0 16px 28px rgba(16, 31, 51, 0.06);
  }
}

@media (max-width: 1280px) {
  .neo-category-flow,
  .neo-product-atlas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .neo-stage {
    min-height: 410px;
  }

  .site-header--shop .shop-top-search {
    width: min(280px, 22vw);
  }
}

@media (max-width: 1040px) {
  .neo-hero__frame,
  .neo-flow-grid,
  .neo-stream--config {
    grid-template-columns: 1fr;
  }

  .neo-stage {
    min-height: 320px;
  }

  .neo-hero__metrics {
    grid-template-columns: 1fr;
  }

  .site-header--shop .shop-top-search {
    display: none;
  }
}

@media (max-width: 760px) {
  .page-home .site-footer__inner {
    width: calc(100vw - 20px);
  }

  .site-header--shop .site-header__inner.container {
    width: calc(100vw - 20px);
  }

  .site-header--shop .brand__text strong {
    font-size: 1.45rem;
    letter-spacing: 0.12em;
  }

  .site-header--shop .shop-top-nav {
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    margin-left: 0;
    padding: 8px;
    border: 1px solid rgba(31,51,77,0.06);
    background: rgba(255,255,255,0.92);
    box-shadow: 0 18px 28px rgba(16, 31, 51, 0.08);
  }

  .site-header--shop .shop-top-nav a {
    justify-content: flex-start;
    min-height: 44px;
  }

  .site-header--shop .shop-top-actions {
    margin-left: auto;
  }

  .site-header--shop .shop-top-action strong {
    display: none;
  }

  .site-header--shop .shop-top-action--cart em {
    margin-left: -2px;
  }

  .neo-hero,
  .neo-ribbon,
  .neo-flow-grid {
    width: calc(100vw - 20px);
  }

  .neo-hero__frame {
    padding: 12px;
    border-radius: 22px;
  }

  .neo-hero__copy {
    padding: 4px 2px 0;
  }

  .neo-hero__copy h1 {
    font-size: clamp(2rem, 10vw, 3.3rem);
  }

  .neo-hero__lead {
    font-size: 0.95rem;
  }

  .neo-btn {
    width: 100%;
    justify-content: center;
  }

  .neo-stage {
    min-height: 270px;
    border-radius: 18px;
  }

  .neo-stage__badge {
    width: 86px;
    height: 86px;
    font-size: 0.86rem;
  }

  .neo-ribbon__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .neo-category-flow,
  .neo-product-atlas {
    grid-template-columns: 1fr;
  }

  .neo-cat-tile {
    min-height: 190px;
    border-radius: 18px;
  }

  .neo-product-tile {
    border-radius: 18px;
  }

  .neo-stream,
  .neo-side-link {
    border-radius: 18px;
    padding: 12px;
  }

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