:root {
  --bg: #fbfaf8;
  --panel: #ffffff;
  --panel-soft: #f6f3ef;
  --panel-glow: rgba(255, 252, 247, 0.92);
  --line: #e6e0d8;
  --line-strong: #d8d0c6;
  --text: #24211d;
  --muted: #7d776f;
  --button: #26231f;
  --shadow: 0 18px 40px rgba(35, 28, 19, 0.06);
  --shadow-soft: 0 14px 34px rgba(49, 37, 21, 0.055);
  --shadow-lift: 0 22px 44px rgba(49, 37, 21, 0.09);
  --radius: 18px;
  --container: 1110px;
  --font-display: "Cormorant Garamond", serif;
}

.admin-preview-page {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(249, 245, 239, 0.96), transparent 28%),
    linear-gradient(180deg, #fbf8f4 0%, #f6f1eb 100%);
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
}

.admin-sidebar {
  padding: 24px 18px;
  background: rgba(255, 255, 255, 0.82);
  border-right: 1px solid rgba(225, 216, 206, 0.9);
  backdrop-filter: blur(16px);
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.admin-brand img {
  width: 54px;
  height: auto;
}

.admin-brand strong,
.admin-overview-card strong,
.admin-panel-head h2,
.admin-topbar h1 {
  color: #25201a;
}

.admin-brand strong,
.admin-panel-head h2 {
  display: block;
  font-size: 16px;
  line-height: 1.15;
}

.admin-brand span,
.admin-panel-head span,
.admin-topbar-kicker,
.admin-overview-card span,
.admin-overview-card p,
.admin-log-item p,
.admin-log-item span {
  color: #7d776f;
}

.admin-brand span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
}

.admin-nav {
  display: grid;
  gap: 4px;
  margin-top: 22px;
}

.admin-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #514b44;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  border: 1px solid transparent;
}

.admin-nav a:hover,
.admin-nav a.is-active {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(223, 214, 204, 0.92);
  color: #25201a;
}

.admin-side-card,
.admin-panel-card,
.admin-overview-card,
.admin-preview-card {
  border: 1px solid rgba(227, 218, 209, 0.92);
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 14px 28px rgba(37, 29, 18, 0.04);
}

.admin-side-card {
  margin-top: 22px;
  padding: 14px;
  border-radius: 14px;
}

.admin-side-kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8d867d;
}

.admin-side-card strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  color: #25201a;
}

.admin-side-card p {
  margin: 8px 0 0;
  color: #6d665f;
  font-size: 13px;
  line-height: 1.55;
}

.admin-main {
  padding: 24px;
}

.admin-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.admin-topbar-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-topbar h1 {
  margin: 0;
  font-size: 40px;
  font-family: var(--font-display);
  line-height: 0.95;
}

.admin-topbar-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.admin-status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(251, 245, 235, 0.98);
  border: 1px solid rgba(231, 214, 184, 0.92);
  color: #8a6b3c;
  font-size: 13px;
  font-weight: 700;
}

.admin-button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  font: inherit;
  cursor: pointer;
}

.admin-button-ghost {
  background: #fff;
  border-color: rgba(214, 205, 195, 0.92);
  color: #453f38;
}

.admin-button-soft {
  background: rgba(250, 246, 241, 0.98);
  border-color: rgba(224, 213, 200, 0.95);
  color: #453f38;
}

.admin-button-solid {
  background: #3d362f;
  color: #fff;
}

.admin-editor-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(420px, 1.08fr);
  gap: 16px;
  align-items: start;
}

.admin-editor-column,
.admin-preview-column {
  display: grid;
  gap: 18px;
}

.admin-panel-card,
.admin-preview-card {
  padding: 18px;
  border-radius: 14px;
}

.admin-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.admin-panel-head span {
  font-size: 12px;
  line-height: 1.4;
  text-align: right;
}

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

.admin-form-grid-compact {
  margin-top: 14px;
}

.admin-choice-strip {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(229, 220, 210, 0.9);
}

.admin-choice-strip-soft {
  margin-top: 0;
  margin-bottom: 14px;
  padding-top: 0;
  padding-bottom: 14px;
  border-top: 0;
  border-bottom: 1px solid rgba(229, 220, 210, 0.9);
}

.admin-choice-title {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #787167;
}

.admin-choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-choice-chip {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(218, 208, 198, 0.94);
  background: rgba(255, 255, 255, 0.96);
  color: #5b554d;
  font: inherit;
  cursor: pointer;
}

.admin-choice-chip.is-active {
  background: rgba(248, 243, 236, 0.98);
  border-color: rgba(197, 184, 170, 0.96);
  color: #25201a;
}

.admin-inline-note {
  margin: 14px 0 0;
  color: #6d665f;
  font-size: 13px;
  line-height: 1.6;
}

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

.admin-form-grid label,
.admin-toggle-row {
  display: grid;
  gap: 7px;
}

.admin-form-grid label span,
.admin-toggle-row span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #787167;
}

.admin-form-grid input,
.admin-form-grid select,
.admin-form-grid textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(217, 207, 196, 0.94);
  background: rgba(255, 255, 255, 0.98);
  font: inherit;
  color: #2f2923;
  resize: vertical;
  box-sizing: border-box;
}

.admin-toggle-list {
  display: grid;
  gap: 10px;
}

.admin-toggle-row {
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 12px;
  background: rgba(250, 247, 243, 0.96);
  border: 1px solid rgba(225, 216, 205, 0.9);
}

.admin-locale-tabs button,
.admin-preview-tabs button,
.admin-variant-item,
.admin-preview-swatches button {
  font: inherit;
}

.admin-locale-tabs button,
.admin-preview-tabs button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(215, 206, 196, 0.94);
  background: #fff;
  color: #5e5750;
}

.admin-locale-tabs button.is-active,
.admin-preview-tabs button.is-active {
  background: #3d362f;
  border-color: #3d362f;
  color: #fff;
}

.admin-variant-toolbar {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.admin-variant-list,
.admin-log-list {
  display: grid;
  gap: 10px;
}

.admin-orders-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.86fr) minmax(0, 1.14fr);
  gap: 14px;
}

.admin-orders-list {
  display: grid;
  gap: 10px;
}

.admin-order-item {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(220, 210, 199, 0.94);
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.admin-order-item.is-active {
  border-color: rgba(196, 181, 165, 0.96);
  background: rgba(248, 244, 239, 0.94);
}

.admin-order-item strong,
.admin-order-detail h3,
.admin-order-box strong {
  color: #25201a;
}

.admin-order-item span,
.admin-order-item p,
.admin-order-box p,
.admin-order-footer p {
  margin: 0;
  color: #6f675f;
  font-size: 13px;
  line-height: 1.55;
}

.admin-order-detail {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(226, 217, 208, 0.94);
  background: rgba(252, 249, 245, 0.98);
}

.admin-order-headline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.admin-order-headline h3 {
  margin: 8px 0 0;
  font-size: 24px;
  line-height: 1.05;
}

.admin-order-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.admin-order-status.is-new {
  background: rgba(246, 233, 205, 0.9);
  border: 1px solid rgba(224, 200, 143, 0.9);
  color: #7f6336;
}

.admin-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

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

.admin-order-box {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(224, 214, 203, 0.92);
  background: #fff;
}

.admin-order-box span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #787167;
}

.admin-order-footer {
  padding-top: 2px;
}

.admin-variant-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(220, 210, 199, 0.94);
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.admin-variant-item.is-active {
  border-color: rgba(196, 181, 165, 0.96);
  background: rgba(248, 244, 239, 0.94);
}

.admin-variant-item strong,
.admin-log-item strong {
  color: #25201a;
}

.admin-variant-item span {
  color: #80786f;
  font-size: 13px;
}

.admin-site-preview {
  border-radius: 16px;
  border: 1px solid rgba(226, 217, 208, 0.94);
  background: linear-gradient(180deg, rgba(252, 250, 247, 0.99), rgba(247, 242, 236, 0.98));
  overflow: hidden;
}

.admin-site-preview-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(229, 221, 211, 0.9);
  background: rgba(255, 255, 255, 0.74);
}

.admin-site-preview-bar span,
.admin-site-preview-bar a {
  font-size: 13px;
}

.admin-site-preview-bar a {
  color: #5d554c;
}

.admin-site-card-preview {
  padding: 16px;
}

.admin-preview-product-card {
  max-width: 260px;
  margin: 0 auto;
  overflow: hidden;
}

.admin-preview-product-card .store-badge-popular {
  top: 10px;
  left: -30px;
  width: 106px;
  min-height: 20px;
  padding: 0 8px;
  font-size: 7px;
  letter-spacing: 0.05em;
  transform: rotate(-45deg);
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
}

.admin-preview-product-card .store-badge-sale {
  top: 8px;
  right: 8px;
  min-height: 24px;
  padding: 0 10px;
  font-size: 8px;
}

.admin-preview-product-card .store-price-pill {
  bottom: 4px;
  min-height: 30px;
  padding: 0 12px;
  font-size: 11px;
}

.admin-preview-product-page {
  display: grid;
  grid-template-columns: minmax(220px, 240px) minmax(0, 1fr);
  gap: 20px;
  padding: 0 16px 16px;
}

.admin-preview-product-image {
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(223, 214, 204, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.admin-preview-product-image img {
  max-width: 88%;
  max-height: 280px;
  object-fit: contain;
}

.admin-preview-product-copy h3 {
  margin: 8px 0 10px;
  font-size: 34px;
  font-family: var(--font-display);
  line-height: 0.98;
}

.admin-preview-product-copy p {
  margin: 0;
  color: #615a52;
  line-height: 1.65;
}

.admin-preview-series {
  display: inline-block;
  color: #7a726a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-preview-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 14px;
}

.admin-preview-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(248, 241, 227, 0.98);
  border: 1px solid rgba(224, 206, 171, 0.92);
  color: #8a6530;
  font-size: 12px;
  font-weight: 700;
}

.admin-preview-swatches {
  display: flex;
  gap: 10px;
  margin: 0 0 18px;
}

.admin-preview-swatches button {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(208, 198, 188, 0.96);
  background: linear-gradient(145deg, #fefefe, #e7ddd1);
  cursor: pointer;
}

.admin-preview-swatches button:nth-child(2) {
  background: linear-gradient(145deg, #d9c7b1, #b09172);
}

.admin-preview-swatches button:nth-child(3) {
  background: linear-gradient(145deg, #757d84, #4f555b);
}

.admin-preview-swatches button.is-active {
  box-shadow: 0 0 0 3px rgba(28, 25, 22, 0.08);
}

.admin-log-item {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(248, 244, 239, 0.84);
  border: 1px solid rgba(225, 216, 205, 0.9);
}

.admin-log-item span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}

.admin-log-item p {
  margin: 8px 0 0;
  font-size: 12px;
}

@media (max-width: 1200px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(225, 216, 206, 0.9);
  }

  .admin-editor-grid,
  .admin-preview-product-page {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .admin-main {
    padding: 18px;
  }

  .admin-topbar,
  .admin-panel-head,
  .admin-site-preview-bar,
  .admin-variant-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 28%),
    linear-gradient(180deg, #fcfbfa 0%, #f8f5f1 100%);
  color: var(--text);
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(251, 250, 248, 0.88);
  border-bottom: 1px solid rgba(230, 224, 216, 0.7);
}

.header-row,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-row {
  min-height: 102px;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex: 1 1 auto;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  flex: 0 0 auto;
}

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

.brand-logo {
  width: auto;
  height: 128px;
  object-fit: contain;
}

.brand-copy {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.05;
  margin-top: -16px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  font-size: 16px;
  color: #575148;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(226, 219, 210, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 8px 18px rgba(49, 37, 21, 0.05);
}

.lang-option {
  min-width: 42px;
  height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #6c655d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.lang-option:hover {
  background: rgba(248, 244, 239, 0.96);
  color: var(--text);
}

.lang-option.is-active {
  background: #2b2825;
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(25, 20, 16, 0.18);
}

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

.hero {
  width: 100%;
  padding: 0 0 28px;
}

.hero-stage {
  position: relative;
  width: 100%;
  height: 310px;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    url("./banner-room-wide.png?v=7") center center / cover no-repeat;
  box-shadow: none;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0) 46%, rgba(255, 255, 255, 0.02));
  pointer-events: none;
}

.hero-stage-windows {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    url("./windows-banner-diagonal-2048x768.png") center center / cover no-repeat;
}

.hero-stage-blinds {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    url("./rulo_banner.png") center 42% / cover no-repeat;
}

.section {
  padding: 26px 0;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

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

.featured-container {
  position: relative;
  width: min(calc(100% - 84px), 1680px);
}

.featured-container::before {
  content: "";
  display: block;
  width: min(100%, 420px);
  height: 1px;
  margin: 0 auto 20px;
  background: linear-gradient(
    90deg,
    rgba(222, 214, 204, 0),
    rgba(214, 204, 192, 0.92) 18%,
    rgba(214, 204, 192, 0.92) 82%,
    rgba(222, 214, 204, 0)
  );
}

.section-head-stack {
  flex-direction: column;
  align-items: flex-start;
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.section-copy {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.94;
}

.featured-grid,
.catalog-grid {
  display: grid;
  gap: 12px;
}

.section-intro {
  margin: 2px 0 0;
  max-width: 760px;
  color: #6d665f;
  font-size: 15px;
  line-height: 1.6;
}

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

.blinds-category-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(233, 227, 219, 0.95);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 245, 240, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 14px 28px rgba(49, 37, 21, 0.05);
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.blinds-category-card:hover,
.blinds-category-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(214, 201, 188, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 18px 34px rgba(49, 37, 21, 0.08);
  outline: none;
}

.blinds-category-media {
  height: 206px;
}

.blinds-category-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
}

.blinds-category-card p {
  margin: 0;
  color: #756d64;
  font-size: 14px;
  line-height: 1.5;
}

.featured-grid {
  grid-template-columns: repeat(10, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
}

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

.featured-card-link {
  display: block;
}

.product-card-link {
  display: block;
}

.product-card-link.is-hidden {
  display: none;
}

.featured-card-link:focus-visible {
  outline: 2px solid rgba(64, 56, 47, 0.22);
  outline-offset: 4px;
}

.product-card-link:focus-visible {
  outline: 2px solid rgba(64, 56, 47, 0.22);
  outline-offset: 4px;
}

.product-card {
  position: relative;
  padding: 14px 14px 16px;
  background: var(--panel);
  border: 1px solid rgba(233, 227, 219, 0.95);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 38px rgba(49, 37, 21, 0.06);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.product-card h3 {
  position: relative;
  margin: 14px 0 4px;
  padding-top: 14px;
  font-size: 16px;
  line-height: 1.22;
}

.product-card h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  right: 10px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(222, 214, 204, 0),
    rgba(214, 204, 192, 0.92) 18%,
    rgba(214, 204, 192, 0.92) 82%,
    rgba(222, 214, 204, 0)
  );
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.product-card strong {
  display: inline-block;
  margin-top: 12px;
  font-size: 25px;
  line-height: 1;
}

.product-card.is-hidden {
  display: none;
}

.featured-card {
  min-width: 0;
  padding: 12px 12px 14px;
  border-radius: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 10px 22px rgba(49, 37, 21, 0.04);
}

.featured-card .door-preview {
  height: 168px;
  border-radius: 8px;
}

.featured-card .door-thumb-media {
  height: 168px;
  border-radius: 8px;
  background: #fff;
}

.featured-card .door-thumb-image {
  padding: 2px 4px 10px;
  transform: scale(1.02);
}

.featured-card h3 {
  margin: 10px 0 4px;
  padding-top: 12px;
  font-size: 14px;
  line-height: 1.2;
}

.featured-card .store-badge-popular {
  top: 12px;
  left: -34px;
  width: 118px;
  min-height: 18px;
  padding: 0 6px;
  font-size: 7px;
  letter-spacing: 0.04em;
  transform: rotate(-45deg);
  transform-origin: center;
}

.featured-card .store-badge-sale {
  top: 6px;
  right: 6px;
  min-height: 24px;
  padding: 0 11px;
  font-size: 8px;
  letter-spacing: 0.04em;
}

.featured-card .store-price-pill {
  bottom: 1px;
  min-height: 30px;
  padding: 0 12px;
  font-size: 11px;
}

.featured-card p {
  font-size: 12px;
  line-height: 1.3;
}

.catalog-grid .product-card {
  scroll-margin-top: 150px;
  padding: 14px 14px 16px;
  border-radius: 12px;
}

.catalog-grid .store-badge,
.catalog-grid .store-price-pill {
  display: none;
}

.catalog-grid .product-card h3 {
  margin: 10px 0 3px;
  padding-top: 12px;
  font-size: 15px;
  line-height: 1.24;
}

.catalog-grid .product-card p {
  font-size: 12px;
  line-height: 1.25;
}

.catalog-grid .door-preview,
.catalog-grid .door-thumb-media {
  height: 208px;
}

.catalog-grid .door-thumb-image {
  transform: scale(1.03);
}

.featured-card-link:hover .product-card,
.featured-card-link:focus-visible .product-card,
.catalog-grid .product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 201, 188, 0.98);
  background:
    linear-gradient(180deg, var(--panel-glow), var(--panel));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    var(--shadow-lift);
}

.door-preview {
  position: relative;
  height: 218px;
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 236, 230, 0.96));
  border: 1px solid rgba(213, 204, 193, 0.82);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -18px 30px rgba(185, 172, 157, 0.08);
}

.door-thumb-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 218px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: none;
  box-shadow: none;
}

.door-thumb-media::before,
.door-thumb-media::after {
  display: none;
}

.door-thumb-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 2px 4px 10px;
  transform: scale(1.02);
  transform-origin: center center;
  filter: none;
}

.store-badge {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(40, 28, 16, 0.1);
}

.store-badge-popular {
  top: 12px;
  left: -18px;
  width: 104px;
  transform: rotate(-45deg);
  background: linear-gradient(135deg, #7f6bff, #6550d8);
  color: #fff;
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
}

.store-badge-sale {
  top: 10px;
  right: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe27a, #f4c94d);
  color: #5b4204;
  border: 1px solid rgba(224, 186, 66, 0.9);
}

.store-price-pill {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 3;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(221, 212, 202, 0.94);
  color: #4b443c;
  font-size: 12px;
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 10px 20px rgba(44, 32, 19, 0.06);
  white-space: nowrap;
}

.window-preview {
  position: relative;
  height: 218px;
  border-radius: 8px;
  border: 1px solid rgba(218, 210, 200, 0.92);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(227, 236, 246, 0.94), rgba(247, 245, 241, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -20px 30px rgba(198, 204, 212, 0.1);
}

.window-preview::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 9px solid rgba(251, 249, 246, 0.96);
  box-shadow: inset 0 0 0 1px rgba(210, 205, 199, 0.72);
}

.window-preview::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 6px;
  height: 32px;
  border-radius: 999px;
  background: rgba(120, 113, 105, 0.54);
  transform: translateY(-50%);
}

.window-classic::before {
  background:
    linear-gradient(90deg, transparent 0 49.2%, rgba(210, 205, 199, 0.72) 49.2% 50.8%, transparent 50.8%);
}

.window-double::before {
  background:
    linear-gradient(90deg, transparent 0 49.2%, rgba(210, 205, 199, 0.72) 49.2% 50.8%, transparent 50.8%),
    linear-gradient(180deg, transparent 0 49.2%, rgba(210, 205, 199, 0.72) 49.2% 50.8%, transparent 50.8%);
}

.window-triple::before {
  background:
    linear-gradient(90deg, transparent 0 32.8%, rgba(210, 205, 199, 0.72) 32.8% 34.2%, transparent 34.2% 65.8%, rgba(210, 205, 199, 0.72) 65.8% 67.2%, transparent 67.2%);
}

.window-panorama::before {
  background:
    linear-gradient(90deg, transparent 0 67%, rgba(210, 205, 199, 0.72) 67% 68.4%, transparent 68.4%);
}

.window-soft {
  background:
    linear-gradient(180deg, rgba(241, 236, 225, 0.96), rgba(248, 245, 239, 0.98));
}

.window-soft::before {
  background:
    linear-gradient(90deg, transparent 0 49.2%, rgba(211, 203, 191, 0.7) 49.2% 50.8%, transparent 50.8%);
}

.window-premium {
  background:
    linear-gradient(180deg, rgba(214, 229, 242, 0.98), rgba(241, 245, 248, 0.98));
}

.window-premium::before {
  background:
    linear-gradient(90deg, transparent 0 49.2%, rgba(196, 203, 211, 0.72) 49.2% 50.8%, transparent 50.8%),
    linear-gradient(180deg, transparent 0 37%, rgba(196, 203, 211, 0.72) 37% 38.4%, transparent 38.4%);
}

.window-balcony::before {
  background:
    linear-gradient(90deg, transparent 0 61%, rgba(210, 205, 199, 0.72) 61% 62.4%, transparent 62.4%);
}

.window-balcony::after {
  right: 35%;
}

.window-anthracite {
  background:
    linear-gradient(180deg, rgba(125, 132, 142, 0.94), rgba(85, 92, 101, 0.96));
}

.window-anthracite::before {
  border-color: rgba(77, 83, 91, 0.95);
  box-shadow: inset 0 0 0 1px rgba(240, 244, 247, 0.2);
  background:
    linear-gradient(90deg, transparent 0 49.2%, rgba(240, 244, 247, 0.26) 49.2% 50.8%, transparent 50.8%);
}

.window-anthracite::after {
  background: rgba(244, 247, 250, 0.46);
}

.window-wood {
  background:
    linear-gradient(180deg, rgba(188, 153, 116, 0.98), rgba(157, 122, 86, 0.98));
}

.window-wood::before {
  border-color: rgba(242, 235, 225, 0.72);
  box-shadow: inset 0 0 0 1px rgba(134, 98, 63, 0.46);
  background:
    linear-gradient(90deg, transparent 0 49.2%, rgba(134, 98, 63, 0.46) 49.2% 50.8%, transparent 50.8%);
}

.window-lightmax::before {
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(210, 205, 199, 0.72) 24% 25.4%, transparent 25.4% 74.6%, rgba(210, 205, 199, 0.72) 74.6% 76%, transparent 76%);
}

.window-showcase-head {
  max-width: 860px;
  margin-bottom: 26px;
}

.window-showcase-kicker {
  margin: 0 0 10px;
  color: #7b746b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.window-showcase-intro {
  max-width: 780px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.window-system-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.window-system-tab {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(223, 214, 205, 0.94);
  background: rgba(255, 255, 255, 0.82);
  color: #615a52;
  text-align: left;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 28px rgba(49, 37, 21, 0.04);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.window-system-tab strong,
.window-system-tab span {
  display: block;
}

.window-system-tab strong {
  font-size: 16px;
  line-height: 1.15;
}

.window-system-tab span {
  margin-top: 5px;
  font-size: 12px;
  color: var(--muted);
}

.window-system-tab:hover,
.window-system-tab.is-active {
  transform: translateY(-2px);
  border-color: rgba(201, 188, 174, 0.98);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(255, 255, 255, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 18px 38px rgba(49, 37, 21, 0.08);
}

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

.window-system-visual,
.window-system-info {
  min-width: 0;
}

.window-system-stage {
  --window-shell: #f4f2ee;
  --window-shell-soft: #ffffff;
  --window-core: #d9d3cc;
  --window-trim: #a89d92;
  --window-accent: #ece7df;
  --window-shadow: rgba(73, 57, 39, 0.12);
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.94), transparent 34%),
    linear-gradient(180deg, #f8f5f0 0%, #f3ede5 100%);
  border: 1px solid rgba(226, 219, 211, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 22px 44px rgba(49, 37, 21, 0.06);
}

.window-tech-card {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(229, 220, 210, 0.92);
  padding: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 20px 42px rgba(49, 37, 21, 0.05);
}

.window-tech-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.window-tech-card-head strong {
  font-size: 18px;
  line-height: 1.1;
}

.window-tech-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(248, 243, 236, 0.98);
  border: 1px solid rgba(227, 216, 205, 0.95);
  color: #665f57;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.window-tech-layout {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(220px, 0.76fr);
  gap: 18px;
  align-items: center;
}

.window-profile-visual,
.window-front-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 236, 0.94));
  border: 1px solid rgba(228, 219, 209, 0.95);
}

.window-profile-cutaway {
  position: relative;
  width: min(100%, 320px);
  aspect-ratio: 0.86;
  border-radius: 34px;
  background:
    linear-gradient(135deg, var(--window-shell-soft) 0%, var(--window-shell) 36%, var(--window-accent) 100%);
  box-shadow:
    inset -18px -18px 28px rgba(0, 0, 0, 0.05),
    inset 22px 22px 30px rgba(255, 255, 255, 0.72),
    0 28px 46px var(--window-shadow);
}

.window-profile-cutaway::before,
.window-profile-cutaway::after {
  content: "";
  position: absolute;
  border-radius: 28px;
  pointer-events: none;
}

.window-profile-cutaway::before {
  inset: 12% 10% 12% 22%;
  border: 28px solid var(--window-core);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.42),
    0 0 0 10px var(--window-shell-soft);
}

.window-profile-cutaway::after {
  inset: 22% 18% 24% 44%;
  background:
    linear-gradient(180deg, rgba(237, 247, 255, 0.95), rgba(205, 226, 240, 0.7));
  border: 3px solid rgba(241, 249, 255, 0.98);
  box-shadow:
    inset 0 0 0 1px rgba(134, 159, 176, 0.34),
    0 0 0 8px rgba(227, 239, 246, 0.62);
}

.window-profile-pane,
.window-profile-core,
.window-profile-seal,
.window-profile-gasket,
.window-profile-shadow {
  position: absolute;
  display: block;
}

.window-profile-pane {
  right: 8%;
  top: 20%;
  width: 14%;
  bottom: 18%;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(235, 246, 255, 0.94), rgba(178, 205, 224, 0.72));
  box-shadow:
    inset 0 0 0 2px rgba(245, 251, 255, 0.86),
    0 0 0 3px rgba(189, 212, 227, 0.5);
}

.window-profile-pane-back {
  transform: translateX(-78%);
  opacity: 0.85;
}

.window-profile-pane-mid {
  transform: translateX(-38%);
}

.window-profile-pane-front {
  transform: translateX(0);
  opacity: 0.92;
}

.window-profile-core {
  border-radius: 18px;
  background: linear-gradient(145deg, var(--window-core), var(--window-shell));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.window-profile-core-outer {
  left: 9%;
  top: 10%;
  width: 32%;
  bottom: 10%;
}

.window-profile-core-inner {
  left: 24%;
  top: 24%;
  width: 22%;
  bottom: 24%;
}

.window-profile-seal {
  left: 33%;
  width: 7%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(76, 82, 92, 0.82), rgba(38, 41, 48, 0.96));
}

.window-profile-seal-top {
  top: 17%;
  height: 18%;
}

.window-profile-seal-bottom {
  bottom: 17%;
  height: 18%;
}

.window-profile-gasket {
  width: 16%;
  height: 6.5%;
  right: 14%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(40, 44, 49, 0.88), rgba(17, 18, 20, 0.98));
}

.window-profile-gasket-outer {
  top: 16%;
}

.window-profile-gasket-inner {
  bottom: 16%;
}

.window-profile-shadow {
  left: 12%;
  right: 28%;
  bottom: 8%;
  height: 10%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(72, 57, 41, 0.18), transparent 70%);
  filter: blur(8px);
}

.window-front-visual {
  flex-direction: column;
  gap: 18px;
}

.window-front-frame {
  position: relative;
  width: min(100%, 220px);
  aspect-ratio: 0.84;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(140deg, var(--window-shell-soft), var(--window-shell));
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.62),
    0 22px 42px var(--window-shadow);
}

.window-front-sash {
  width: 100%;
  height: 100%;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(140deg, var(--window-shell), var(--window-accent));
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.6),
    inset 0 0 0 10px var(--window-core);
}

.window-front-glass {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(245, 250, 255, 0.92), rgba(202, 223, 238, 0.75)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.34), transparent 48%, rgba(255, 255, 255, 0.22));
  box-shadow: inset 0 0 0 2px rgba(235, 247, 255, 0.85);
}

.window-front-handle {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 10px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--window-trim), rgba(109, 100, 90, 0.76));
  transform: translateY(-50%);
}

.window-front-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.window-system-info {
  padding: 18px 2px 0;
}

.window-system-family {
  margin: 0 0 10px;
  color: #776e65;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.window-system-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 0.94;
}

.window-system-copy {
  margin: 18px 0 0;
  color: #5c564f;
  font-size: 17px;
  line-height: 1.68;
}

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

.window-metric-card,
.window-color-panel,
.window-benefit-panel,
.window-request-panel,
.window-application-card {
  border-radius: 18px;
  border: 1px solid rgba(229, 220, 210, 0.92);
  background: rgba(255, 255, 255, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 16px 34px rgba(49, 37, 21, 0.045);
}

.window-metric-card {
  padding: 16px 18px;
}

.window-metric-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.window-metric-card strong {
  display: block;
  font-size: 19px;
  line-height: 1.2;
}

.window-color-panel,
.window-benefit-panel,
.window-request-panel {
  margin-top: 16px;
  padding: 18px 20px;
}

.window-color-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.window-color-head h3,
.window-benefit-panel h3,
.window-request-panel h3,
.window-application-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
}

.window-color-head p,
.window-request-panel p,
.window-application-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.window-color-head strong {
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
}

.window-color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.window-color-swatch {
  display: inline-grid;
  grid-template-columns: 26px auto;
  align-items: center;
  gap: 10px;
  min-width: 138px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(225, 216, 205, 0.92);
  background: rgba(255, 255, 255, 0.92);
  color: #59524a;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.window-color-swatch:hover,
.window-color-swatch.is-active {
  transform: translateY(-2px);
  border-color: rgba(203, 190, 177, 0.96);
  box-shadow: 0 16px 28px rgba(49, 37, 21, 0.08);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(255, 255, 255, 0.98));
}

.window-color-dot {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--window-swatch-shell), var(--window-swatch-core));
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.76),
    0 0 0 1px var(--window-swatch-trim);
}

.window-benefit-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.window-benefit-list li {
  position: relative;
  padding-left: 20px;
  color: #59524a;
  font-size: 14px;
  line-height: 1.6;
}

.window-benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #b6936c;
}

.window-request-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.window-request-panel .solid-button {
  white-space: nowrap;
}

.window-application-section {
  margin-top: 34px;
}

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

.window-application-card {
  padding: 20px 20px 22px;
}

.perfect-window-page {
  padding-top: 26px;
}

.perfect-window-top {
  margin-bottom: 18px;
}

.perfect-window-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(226, 217, 207, 0.84);
}

.perfect-window-logo {
  width: min(100%, 280px);
  height: auto;
}

.perfect-window-subtitle {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  text-align: right;
}

.perfect-window-colour-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 34px;
  align-items: start;
  margin-top: 20px;
}

.perfect-window-colour-panel h1,
.perfect-window-specs-head h2 {
  margin: 0;
  font-size: 58px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

.perfect-window-colour-panel h1::after,
.perfect-window-specs-head h2::after {
  content: "";
  display: block;
  width: 74px;
  height: 3px;
  margin-top: 18px;
  border-radius: 999px;
  background: #5d59cb;
}

.perfect-window-note {
  max-width: 540px;
  margin: 18px 0 0;
  color: #4c473f;
  font-size: 16px;
  line-height: 1.55;
}

.perfect-window-swatches {
  margin-top: 28px;
  display: grid;
  gap: 20px;
}

.perfect-window-group {
  display: grid;
  gap: 10px;
}

.perfect-window-group-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.perfect-window-group-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.perfect-window-swatch {
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 2px solid rgba(214, 207, 198, 0.95);
  border-radius: 0;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(48, 36, 19, 0.05);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.perfect-window-swatch:hover,
.perfect-window-swatch.is-active {
  transform: translateY(-1px);
  border-color: #5d59cb;
  box-shadow: 0 10px 20px rgba(48, 36, 19, 0.1);
}

.perfect-window-swatch-thumb,
.perfect-window-swatch-thumb img {
  display: block;
  width: 100%;
  height: 100%;
}

.perfect-window-swatch-thumb img {
  object-fit: cover;
}

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

.perfect-window-preview-panel {
  min-width: 0;
}

.perfect-window-preview-stage {
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 6px 10px 30px;
  background: #fff;
}

.perfect-window-preview-image {
  max-width: 100%;
  max-height: 540px;
  object-fit: contain;
  filter: drop-shadow(0 30px 30px rgba(37, 24, 8, 0.09));
}

.perfect-window-specs {
  margin-top: 30px;
}

.perfect-window-specs-head {
  margin-bottom: 28px;
  text-align: center;
}

.perfect-window-specs-head h2::after {
  margin-left: auto;
  margin-right: auto;
}

.perfect-window-specs-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
  gap: 32px;
  align-items: start;
}

.perfect-window-specs-variant {
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(223, 214, 206, 0.84);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.perfect-window-spec-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(232, 224, 216, 0.88);
}

.perfect-window-spec-label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.perfect-window-spec-value ul {
  margin: 0;
  padding-left: 18px;
  color: #433e37;
  font-size: 15px;
  line-height: 1.6;
}

.perfect-window-drawing-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.perfect-window-drawing {
  max-width: 100%;
  height: auto;
}

.blind-preview {
  position: relative;
  height: 218px;
  border-radius: 8px;
  border: 1px solid rgba(219, 210, 198, 0.92);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(252, 250, 246, 0.98), rgba(238, 233, 226, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -20px 30px rgba(185, 172, 157, 0.08);
}

.blind-preview::before {
  content: "";
  position: absolute;
  inset: 10px 16px 18px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 0 0 1px rgba(209, 199, 188, 0.62),
    inset 0 -14px 18px rgba(174, 162, 148, 0.12);
}

.blind-preview::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  width: 54%;
  height: 8px;
  border-radius: 999px;
  background: rgba(198, 188, 176, 0.82);
  transform: translateX(-50%);
  box-shadow: 0 2px 10px rgba(114, 101, 88, 0.08);
}

.blind-roller-soft::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 239, 232, 0.92)),
    repeating-linear-gradient(90deg, rgba(214, 206, 196, 0.18) 0 2px, transparent 2px 16px);
}

.blind-zebra::before {
  background:
    repeating-linear-gradient(
      180deg,
      rgba(237, 230, 220, 0.96) 0 18px,
      rgba(255, 255, 255, 0.98) 18px 36px
    );
}

.blind-blackout {
  background:
    linear-gradient(180deg, rgba(115, 117, 122, 0.96), rgba(83, 86, 92, 0.98));
}

.blind-blackout::before {
  background:
    linear-gradient(180deg, rgba(93, 97, 104, 0.98), rgba(61, 65, 72, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(236, 239, 243, 0.16),
    inset 0 -16px 18px rgba(255, 255, 255, 0.04);
}

.blind-blackout::after {
  background: rgba(235, 239, 242, 0.24);
}

.blind-sheer::before {
  inset: 12px 28px 12px;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(244, 241, 236, 0.74), rgba(255, 255, 255, 0.88));
  box-shadow:
    inset 0 0 0 1px rgba(217, 209, 199, 0.44),
    inset -18px 0 26px rgba(229, 220, 207, 0.48),
    inset 18px 0 26px rgba(255, 255, 255, 0.42);
}

.blind-sheer::after {
  width: 64%;
}

.blind-roman::before {
  background:
    repeating-linear-gradient(
      180deg,
      rgba(235, 228, 217, 0.98) 0 30px,
      rgba(226, 218, 206, 0.98) 30px 34px,
      rgba(239, 234, 227, 0.98) 34px 64px
    );
}

.blind-dimout::before {
  background:
    linear-gradient(180deg, rgba(227, 216, 196, 0.98), rgba(211, 199, 177, 0.96));
}

.blind-screen::before {
  background:
    linear-gradient(180deg, rgba(229, 236, 236, 0.96), rgba(213, 224, 224, 0.94)),
    repeating-linear-gradient(90deg, rgba(151, 164, 164, 0.14) 0 2px, transparent 2px 10px);
}

.blind-drape::before {
  inset: 12px 26px 12px;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(197, 164, 132, 0.98), rgba(172, 137, 102, 0.98), rgba(197, 164, 132, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(134, 99, 67, 0.24),
    inset -18px 0 0 rgba(145, 111, 80, 0.12),
    inset -36px 0 0 rgba(145, 111, 80, 0.08),
    inset 18px 0 0 rgba(255, 239, 221, 0.08);
}

.blind-classic-white::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 241, 236, 0.96));
}

.blind-acoustic::before {
  background:
    linear-gradient(180deg, rgba(222, 213, 205, 0.98), rgba(198, 188, 177, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 3px, transparent 3px 12px);
}

.door-preview::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(188, 178, 166, 0.32);
}

.door-preview::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(119, 110, 100, 0.6);
  transform: translateY(-50%);
}

.door-white {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 240, 235, 0.98)),
    linear-gradient(90deg, rgba(230, 225, 217, 0.6), transparent);
}

.door-white::before {
  box-shadow:
    inset 0 0 0 1px rgba(191, 182, 171, 0.28),
    inset 0 -54px 0 rgba(248, 246, 243, 0.6);
}

.door-graphite {
  background:
    linear-gradient(180deg, rgba(114, 117, 121, 0.95), rgba(76, 79, 85, 0.96)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
}

.door-graphite::before {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 -52px 0 rgba(255, 255, 255, 0.05),
    inset 0 -104px 0 rgba(255, 255, 255, 0.03);
}

.door-glass {
  background:
    linear-gradient(180deg, rgba(42, 42, 42, 0.92), rgba(17, 17, 17, 0.96)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent);
}

.door-glass::before {
  inset: 10px;
  background:
    linear-gradient(90deg, transparent 0 32%, rgba(217, 222, 228, 0.85) 32% 36%, transparent 36% 64%, rgba(217, 222, 228, 0.85) 64% 68%, transparent 68%),
    linear-gradient(180deg, transparent 0 16%, rgba(217, 222, 228, 0.82) 16% 18%, transparent 18% 48%, rgba(217, 222, 228, 0.82) 48% 50%, transparent 50% 80%, rgba(217, 222, 228, 0.82) 80% 82%, transparent 82%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.door-ivory {
  background:
    linear-gradient(180deg, rgba(224, 216, 203, 0.95), rgba(208, 198, 184, 0.96)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent);
}

.door-ivory::before {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.32),
    inset 0 -52px 0 rgba(235, 228, 218, 0.54);
}

.door-light {
  background:
    linear-gradient(180deg, rgba(249, 249, 248, 0.96), rgba(233, 229, 223, 0.95)),
    linear-gradient(90deg, rgba(206, 199, 190, 0.2), transparent);
}

.door-light::before {
  box-shadow:
    inset 0 0 0 1px rgba(188, 178, 166, 0.24),
    inset -42px 0 0 rgba(255, 255, 255, 0.36);
}

.door-oak {
  background:
    linear-gradient(180deg, rgba(177, 136, 94, 0.96), rgba(141, 104, 66, 0.98)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 0 5px,
      rgba(93, 64, 37, 0.08) 5px 10px
    );
}

.door-oak::before {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 -52px 0 rgba(95, 65, 37, 0.13);
}

.door-sage {
  background:
    linear-gradient(180deg, rgba(169, 178, 169, 0.98), rgba(140, 151, 141, 0.98)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
}

.door-sage::before {
  box-shadow:
    inset 0 0 0 1px rgba(244, 247, 243, 0.18),
    inset 0 -52px 0 rgba(255, 255, 255, 0.06);
}

.door-dark {
  background:
    linear-gradient(180deg, rgba(69, 72, 78, 0.98), rgba(37, 39, 43, 1)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
}

.door-dark::before {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    inset 0 -52px 0 rgba(255, 255, 255, 0.05);
}

.product-page {
  padding-top: 36px;
  padding-bottom: 44px;
}

.product-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 22px;
}

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

.product-shell {
  padding: 10px 0 0;
}

.product-shell.is-pending {
  visibility: hidden;
  min-height: 760px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
  gap: 28px;
  align-items: start;
}

.product-visual-panel,
.product-info-panel {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.product-visual-panel {
  padding: 0;
}

.product-visual-stage {
  min-height: 760px;
  border-radius: 0;
  padding: 0 18px 0 0;
  background: transparent;
  box-shadow: none;
  display: grid;
  place-items: center;
}

.product-hero-media {
  width: min(100%, 680px);
  aspect-ratio: 1;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.product-hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 12px 18px rgba(35, 28, 19, 0.05));
}

.product-variant-row {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.product-section-caption {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: #6e685f;
  margin-bottom: 10px;
}

.product-variant-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-swatch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(213, 204, 193, 0.86);
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.product-swatch:hover {
  transform: translateY(-1px);
  border-color: rgba(171, 158, 142, 0.88);
  box-shadow: 0 6px 14px rgba(49, 37, 21, 0.06);
}

.product-swatch.is-active {
  border-color: rgba(180, 67, 67, 0.6);
  box-shadow: 0 0 0 2px rgba(196, 74, 74, 0.12);
}

.product-swatch-chip {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(183, 172, 160, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.swatch-white {
  background: linear-gradient(180deg, #faf9f6, #ebe5de);
}

.swatch-cashmere {
  background: linear-gradient(180deg, #ddd0bd, #c7b6a0);
}

.swatch-sage {
  background: linear-gradient(180deg, #b9c3ba, #97a497);
}

.swatch-graphite {
  background: linear-gradient(180deg, #6f747b, #4f545b);
}

.swatch-silver {
  background: linear-gradient(180deg, #d7d8db, #9ca2a9);
}

.swatch-brass {
  background: linear-gradient(180deg, #d0b073, #9e7637);
}

.swatch-bronze {
  background: linear-gradient(180deg, #a66f51, #7a4d37);
}

.swatch-oak {
  background: linear-gradient(180deg, #b98b5b, #92673f);
}

.product-swatch-meta {
  display: none;
}

.product-info-panel {
  padding: 2px 0 0;
}

.product-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b8379;
  font-weight: 700;
}

.product-title {
  margin-bottom: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.product-rating {
  margin: 0 0 14px;
  color: #c24e4e;
  letter-spacing: 0.14em;
  font-size: 13px;
}

.product-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.product-info-divider {
  height: 1px;
  margin: 16px 0;
  background: rgba(229, 222, 213, 0.72);
}

.product-spec-list {
  display: grid;
  gap: 12px;
}

.product-spec-row {
  display: grid;
  gap: 5px;
}

.product-spec-row--text {
  gap: 8px;
}

.product-spec-label {
  font-size: 11px;
  color: #8a837b;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.product-spec-value {
  font-size: 14px;
  line-height: 1.45;
}

.product-spec-text {
  margin: 0;
  color: #5f5850;
  font-size: 13px;
  line-height: 1.55;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}

.product-price {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.product-price-note {
  color: var(--muted);
  font-size: 12px;
}

.product-price-row--quote {
  display: grid;
  gap: 5px;
}

.product-price--quote {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.product-meta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 0;
}

.product-meta-card {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.product-meta-label {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-description-box {
  display: none;
}

.product-section-title {
  font-size: 28px;
  margin-bottom: 10px;
}

.product-description-copy {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.product-empty-state {
  padding: 60px 0 80px;
}

.product-empty-state h1 {
  margin-bottom: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  line-height: 1.05;
}

.product-empty-state p {
  margin: 0;
  max-width: 540px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.product-primary-button,
.product-secondary-button {
  min-width: 170px;
  min-height: 46px;
  justify-content: center;
}

.icon-button,
.filter-tab,
.outline-button,
.primary-button,
.chat-button {
  cursor: pointer;
  border: 0;
}

.icon-button {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid rgba(226, 219, 210, 0.96);
  box-shadow: var(--shadow);
  color: #615b54;
}

.icon-button:hover,
.filter-tab:hover,
.outline-button:hover,
.primary-button:hover,
.chat-button:hover {
  transform: translateY(-1px);
}

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

.filter-tab {
  padding: 10px 14px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
}

.filter-tab.is-active {
  background: var(--panel);
  border-color: rgba(225, 217, 207, 0.95);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.outline-button,
.primary-button {
  min-height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.outline-button {
  background: var(--panel);
  border: 1px solid rgba(214, 206, 197, 0.95);
  color: var(--text);
  box-shadow: 0 10px 20px rgba(49, 37, 21, 0.04);
}

.primary-button {
  background: var(--button);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(25, 20, 16, 0.14);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.contact-form-wrap,
.feature-list {
  background: transparent;
}

.contact-form {
  margin-top: 18px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid rgba(223, 215, 205, 0.95);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(48, 42, 35, 0.12);
  border-color: rgba(131, 120, 107, 0.44);
}

.form-note {
  margin: 12px 0 0;
  text-align: center;
  color: #8b857d;
  font-size: 12px;
}

.form-success {
  margin: 12px 0 0;
  text-align: center;
  color: #4d6b4e;
  font-size: 13px;
}

.feature-list {
  display: grid;
  gap: 14px;
  padding-top: 42px;
}

.feature-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(231, 225, 217, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    var(--shadow-soft);
}

.feature-card h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

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

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--panel-soft);
  color: #3e3831;
  font-size: 15px;
  font-weight: 700;
  flex: 0 0 auto;
}

.has-modal-open {
  overflow: hidden;
}

.request-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.request-modal[hidden] {
  display: none;
}

.request-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 19, 15, 0.42);
  backdrop-filter: blur(6px);
}

.request-modal-dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(90vh, 920px);
  overflow: auto;
  padding: 30px;
  border-radius: 24px;
  background: rgba(255, 251, 246, 0.98);
  border: 1px solid rgba(228, 221, 212, 0.95);
  box-shadow: 0 24px 60px rgba(22, 18, 14, 0.2);
}

.request-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(214, 206, 197, 0.95);
  border-radius: 999px;
  background: #fff;
  color: #4d463f;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.request-modal-head {
  padding-right: 44px;
}

.request-modal-head h2 {
  margin: 0 0 8px;
}

.request-modal-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.request-form {
  margin-top: 22px;
}

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

.request-summary-item {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(226, 218, 208, 0.95);
  background: rgba(255, 255, 255, 0.78);
}

.request-summary-item strong {
  display: block;
  margin-top: 4px;
  font-size: 15px;
}

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

.request-form select,
.request-form input,
.request-form textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid rgba(223, 215, 205, 0.95);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font: inherit;
}

.request-form textarea {
  min-height: 110px;
  margin-top: 12px;
  resize: vertical;
}

.request-form select:focus,
.request-form input:focus,
.request-form textarea:focus {
  outline: 2px solid rgba(48, 42, 35, 0.12);
  border-color: rgba(131, 120, 107, 0.44);
}

.request-form-actions {
  margin-top: 16px;
}

.site-footer {
  padding: 28px 0 48px;
  color: var(--muted);
  font-size: 13px;
}

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

.chat-pill {
  position: fixed;
  right: 92px;
  bottom: 30px;
  z-index: 10;
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 219, 210, 0.96);
  box-shadow: 0 18px 36px rgba(43, 35, 25, 0.12);
  font-size: 13px;
  color: #4e4841;
}

.chat-button {
  position: fixed;
  right: 28px;
  bottom: 24px;
  z-index: 11;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #2b2825;
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(23, 19, 15, 0.18);
  font-size: 22px;
}

.repairs-hero {
  padding-top: 28px;
}

.repairs-hero-head {
  gap: 6px;
  margin-bottom: 22px;
}

.repairs-intro {
  max-width: 760px;
  font-size: 16px;
}

.repairs-rotator {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: 72px 94px 86px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(232, 224, 214, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 22px 48px rgba(43, 32, 18, 0.08);
}

.repairs-backdrop {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(1px) saturate(0.9) brightness(0.95);
  transform: scale(1.04);
  transition: background-image 0.45s ease;
}

.repairs-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.36) 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.28));
}

.repairs-stage {
  position: relative;
  min-height: 560px;
}

.repairs-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(540px, 44vw);
  aspect-ratio: 1.62;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 28px 48px rgba(30, 24, 18, 0.18);
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
  transition:
    transform 0.48s ease,
    opacity 0.48s ease,
    box-shadow 0.48s ease,
    filter 0.48s ease;
}

.repairs-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.repairs-card.is-active {
  z-index: 4;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 36px 60px rgba(30, 24, 18, 0.24);
}

.repairs-card.is-prev,
.repairs-card.is-next {
  z-index: 3;
  opacity: 0.84;
  filter: saturate(0.9) brightness(0.96);
}

.repairs-card.is-prev {
  transform: translate(-110%, -50%) scale(0.82);
}

.repairs-card.is-next {
  transform: translate(10%, -50%) scale(0.82);
}

.repairs-card.is-hidden-left,
.repairs-card.is-hidden-right {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.repairs-card.is-hidden-left {
  transform: translate(-150%, -50%) scale(0.68);
}

.repairs-card.is-hidden-right {
  transform: translate(50%, -50%) scale(0.68);
}

.repairs-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(100, 91, 81, 0.58);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(23, 20, 17, 0.18);
  transform: translateY(-50%);
  font-size: 34px;
  line-height: 1;
}

.repairs-arrow-prev {
  left: 22px;
}

.repairs-arrow-next {
  right: 22px;
}

.repairs-arrow:hover {
  background: rgba(55, 48, 42, 0.72);
}

.repairs-dots-shell {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  z-index: 5;
  display: flex;
  justify-content: center;
}

.repairs-dots {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.repairs-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 3px 10px rgba(41, 31, 20, 0.15);
  cursor: pointer;
}

.repairs-dot.is-active {
  background: #2d2823;
}

.repairs-about {
  padding-top: 18px;
}

.repairs-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.repairs-copy {
  padding-top: 6px;
}

.repairs-feature-list {
  padding-top: 0;
}

@media (max-width: 1100px) {
  .product-shell {
    padding: 20px;
  }

  .perfect-window-colour-grid,
  .perfect-window-specs-grid {
    grid-template-columns: 1fr;
  }

  .perfect-window-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .perfect-window-subtitle {
    text-align: left;
  }

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

  .window-system-shell {
    grid-template-columns: 1fr;
  }

  .window-tech-layout {
    grid-template-columns: 1fr 0.78fr;
  }

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

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

  .featured-container {
    width: min(calc(100% - 48px), 1680px);
  }

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

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

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

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

  .repairs-about-grid {
    grid-template-columns: 1fr;
  }

  .feature-list {
    padding-top: 0;
  }
}

@media (max-width: 900px) {
  .product-visual-stage {
    min-height: 600px;
  }

  .perfect-window-colour-panel h1,
  .perfect-window-specs-head h2 {
    font-size: 46px;
  }

  .perfect-window-preview-stage {
    min-height: 420px;
    padding-left: 10px;
  }

  .window-showcase-intro {
    font-size: 16px;
  }

  .window-system-name {
    font-size: 48px;
  }

  .window-tech-layout {
    grid-template-columns: 1fr;
  }

  .window-profile-visual,
  .window-front-visual {
    min-height: auto;
  }

  .window-metric-grid {
    grid-template-columns: 1fr 1fr;
  }

  .window-request-panel {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .header-row,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-tools {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .brand-logo {
    height: 96px;
  }

  .nav {
    gap: 16px;
  }

  .hero-stage {
    height: 280px;
    background-position: center 56%;
  }

  .repairs-rotator {
    min-height: 620px;
    padding: 54px 72px 78px;
  }

  .repairs-stage {
    min-height: 460px;
  }

  .repairs-card {
    width: min(470px, 58vw);
  }

  .repairs-card.is-prev {
    transform: translate(-102%, -50%) scale(0.78);
  }

  .repairs-card.is-next {
    transform: translate(2%, -50%) scale(0.78);
  }

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

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

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

  .chat-pill {
    display: none;
  }
}

@media (max-width: 640px) {
  .product-page {
    padding-top: 24px;
  }

  .perfect-window-colour-panel h1,
  .perfect-window-specs-head h2 {
    font-size: 34px;
  }

  .perfect-window-heading {
    padding-bottom: 14px;
  }

  .perfect-window-logo {
    width: min(100%, 220px);
  }

  .perfect-window-note {
    font-size: 15px;
  }

  .perfect-window-group-grid {
    gap: 8px;
  }

  .perfect-window-swatch {
    width: 44px;
    height: 44px;
  }

  .perfect-window-preview-stage {
    min-height: 280px;
    padding: 0;
  }

  .perfect-window-spec-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .window-system-tabs,
  .window-application-grid,
  .window-metric-grid {
    grid-template-columns: 1fr;
  }

  .window-system-stage {
    padding: 16px;
    border-radius: 20px;
  }

  .window-tech-card {
    padding: 16px;
    border-radius: 18px;
  }

  .window-tech-card-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .window-system-name {
    font-size: 40px;
  }

  .window-color-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .window-color-swatch {
    min-width: 0;
    width: 100%;
  }

  .product-shell {
    border-radius: 18px;
    padding: 16px;
  }

  .product-visual-stage {
    min-height: 440px;
    padding: 18px;
    border-radius: 16px;
  }

  .product-hero-media {
    width: min(100%, 280px);
  }

  .product-variant-grid,
  .product-meta-grid {
    grid-template-columns: 1fr;
  }

  .product-variant-row {
    margin-top: 16px;
    padding-top: 16px;
  }

  .product-swatch {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .product-swatch-chip {
    width: 42px;
    height: 42px;
  }

  .product-price {
    font-size: 34px;
  }

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

  .featured-container {
    width: min(calc(100% - 28px), 1680px);
  }

  .brand-logo {
    height: 78px;
  }

  .language-switcher {
    gap: 2px;
    padding: 3px;
  }

  .lang-option {
    min-width: 38px;
    height: 32px;
    padding: 0 10px;
    font-size: 11px;
  }

  .hero {
    padding-top: 0;
  }

  .hero-stage {
    height: 220px;
    background-position: center 54%;
  }

  h2 {
    font-size: 34px;
  }

  h1 {
    font-size: 42px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .repairs-rotator {
    min-height: 420px;
    padding: 28px 16px 58px;
    border-radius: 18px;
  }

  .repairs-stage {
    min-height: 290px;
  }

  .repairs-card {
    width: min(82vw, 360px);
    border-radius: 12px;
  }

  .repairs-card.is-prev {
    transform: translate(-96%, -50%) scale(0.74);
  }

  .repairs-card.is-next {
    transform: translate(-4%, -50%) scale(0.74);
  }

  .repairs-arrow {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .repairs-arrow-prev {
    left: 10px;
  }

  .repairs-arrow-next {
    right: 10px;
  }

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

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

  .blinds-category-grid {
    grid-template-columns: 1fr;
  }

  .request-modal {
    padding: 14px;
  }

  .request-modal-dialog {
    padding: 22px 18px;
    border-radius: 18px;
  }

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

  .site-footer {
    padding-bottom: 92px;
  }
}
