:root {
  --accent: #0f766e;
  --accent-dark: #115e59;
  --secondary: #f5b84b;
  --ink: #18212f;
  --muted: #667085;
  --line: #d9e1ea;
  --bg: #f6f3ee;
  --panel: #ffffff;
  --soft: #edf4f2;
  --green: #168a64;
  --danger: #c2415b;
  --header: #101827;
  --rose: #d95f59;
  --shadow-sm: 0 1px 2px rgb(16 24 40 / .07);
  --shadow: 0 14px 34px rgb(16 24 40 / .12);
  --shadow-lg: 0 28px 70px rgb(16 24 40 / .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}
@media (prefers-reduced-motion: no-preference) {
  @keyframes riseIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes drift {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -8px, 0); }
  }
  @keyframes scan {
    from { transform: translateX(-35%); }
    to { transform: translateX(35%); }
  }
  @keyframes glowPane {
    0%, 100% { opacity: .42; transform: translateX(-22%); }
    50% { opacity: .72; transform: translateX(22%); }
  }
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .5; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 3px solid rgb(15 118 110 / .24); outline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgb(255 255 255 / .9);
  border-bottom: 1px solid rgb(217 225 234 / .82);
  backdrop-filter: blur(18px);
}
.topbar {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 7px 18px;
  background: #18212f;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}
.main-nav {
  width: min(1240px, calc(100% - 36px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 4vw, 48px);
}
.brand {
  color: #111827;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}
.brand::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 10px;
  border-radius: 3px;
  background: var(--secondary);
  box-shadow: 8px 8px 0 var(--accent);
  transform: translateY(-3px);
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: #273244;
  font-size: 14px;
  font-weight: 780;
}
.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { border-color: var(--secondary); color: var(--accent-dark); }
.cart-button {
  justify-self: end;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  background: #18212f;
  color: #fff;
  padding: 0 18px;
  font-weight: 900;
  box-shadow: var(--shadow);
  transition: transform .2s ease, background .2s ease;
}
.cart-button:hover { background: var(--accent-dark); transform: translateY(-1px); }
.cart-button span {
  min-width: 26px;
  min-height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--secondary);
  color: #171717;
}

main { overflow: hidden; }
.payment-result {
  width: min(1240px, calc(100% - 36px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 18px auto 0;
  border: 1px solid #cfe2dc;
  border-radius: 8px;
  background: #eef8f4;
  color: #172033;
  padding: 14px 16px;
}
.payment-result strong { font-weight: 950; }
.payment-result span { color: var(--muted); font-size: 14px; }
.hero, .trust-grid, .section, .about, footer {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
}
.hero {
  min-height: min(720px, calc(100vh - 96px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 545px);
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
  padding: clamp(44px, 6vw, 76px) 0 52px;
}
.hero-copy > span, .section-head > span, .about span {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  border: 1px solid rgb(22 138 100 / .18);
  border-radius: 999px;
  background: #e7f3ef;
  color: var(--green);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.section-head > span, .about span {
  width: 58px;
  min-height: 6px;
  padding: 0;
  border: 0;
  background: var(--secondary);
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  color: #121a27;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 950;
  line-height: 1.02;
}
.hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: #5b6678;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.72;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 142px));
  gap: 12px;
  margin-top: 30px;
}
.hero-proof div {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(255 255 255 / .82);
  padding: 15px 16px;
  box-shadow: var(--shadow-sm);
}
.hero-proof strong { color: #111827; font-size: 26px; line-height: 1; font-weight: 950; }
.hero-proof span, .hero-note {
  color: #667085;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-actions a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 25px;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.hero-actions a:first-child { background: var(--accent); color: #fff; box-shadow: var(--shadow); }
.hero-actions a:first-child:hover { background: var(--accent-dark); transform: translateY(-2px); }
.hero-actions a:last-child { border: 1px solid var(--line); background: #fff; color: #18212f; }
.hero-actions a:last-child:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-1px); }
.hero-note { display: inline-block; margin-top: 16px; }
.hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow-lg);
  animation: drift 7s ease-in-out infinite;
}
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform .55s ease;
}
.hero-media:hover img { transform: scale(1.035); }
.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(0deg, rgb(12 18 28 / .70), transparent);
}
.hero-strip {
  position: absolute;
  inset: 18px 18px auto;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-strip span {
  border-radius: 999px;
  background: rgb(255 255 255 / .92);
  color: #172033;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.hero-float {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  max-width: calc(100% - 40px);
  border: 1px solid rgb(255 255 255 / .54);
  border-radius: 8px;
  background: rgb(255 255 255 / .95);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.hero-float span { display: block; color: var(--rose); font-size: 11px; font-weight: 950; text-transform: uppercase; }
.hero-float strong { display: block; margin-top: 7px; color: #18212f; font-size: 20px; font-weight: 950; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 14px 0 70px;
}
.trust-grid article {
  min-height: 154px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.trust-grid article::before {
  content: "";
  display: block;
  width: 38px;
  height: 6px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--secondary);
}
.trust-grid article:nth-child(2)::before { background: var(--accent); }
.trust-grid article:nth-child(3)::before { background: var(--rose); }
.trust-grid article:hover, .product-card:hover {
  border-color: rgb(15 118 110 / .26);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.trust-grid article,
.product-card,
.visual-showcase,
.process-band article {
  animation: riseIn .55s ease both;
}
.trust-grid strong { display: block; color: #172033; font-size: 18px; font-weight: 950; }
.trust-grid p, .section-head p, .product-body p, .about p, .newsletter p, footer p {
  color: var(--muted);
  line-height: 1.7;
}

.section { padding: 78px 0; }
.featured-windows {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: 78px 0;
}
.window-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.window-card {
  position: relative;
  overflow: hidden;
  border: 10px solid #172033;
  border-radius: 8px;
  background: #fff;
  box-shadow:
    0 18px 40px rgb(16 24 40 / .18),
    inset 0 0 0 1px rgb(255 255 255 / .34);
  animation: riseIn .62s ease both;
  animation-delay: var(--delay, 0ms);
}
.window-card::before,
.window-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  pointer-events: none;
  background: #172033;
}
.window-card::before {
  inset: 0 auto 0 50%;
  width: 8px;
  transform: translateX(-50%);
}
.window-card::after {
  inset: 46% 0 auto;
  height: 8px;
}
.window-glass {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: #dfe8e7;
}
.window-glass img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  transition: transform .55s ease, filter .55s ease;
}
.window-card:hover .window-glass img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.055);
}
.window-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 30%, rgb(255 255 255 / .36) 42%, transparent 56% 100%),
    linear-gradient(35deg, rgb(255 255 255 / .20), transparent 34%);
  mix-blend-mode: screen;
  animation: glowPane 6s ease-in-out infinite;
}
.window-card-body {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 10px;
  min-height: 246px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / .96), #fff),
    linear-gradient(90deg, rgb(15 118 110 / .07), rgb(245 184 75 / .10));
}
.window-card-body span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}
.window-card-body h3 {
  margin: 0;
  color: #172033;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.08;
  font-weight: 950;
}
.window-card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}
.window-card-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: auto;
}
.window-card-bottom strong {
  color: #172033;
  font-size: 22px;
  font-weight: 950;
}
.window-card button {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  padding: 0 16px;
  font-weight: 950;
}
.window-card button:hover {
  background: var(--accent-dark);
}
.window-card.is-empty button {
  border: 1px solid var(--line);
  background: #f8fafb;
  color: var(--muted);
}
.shop { position: relative; padding-bottom: 94px; }
.shop::before {
  content: "";
  position: absolute;
  inset: 34px max(-48px, -4vw) 0;
  z-index: -1;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / .56);
}
.section-head {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(260px, 430px);
  gap: 10px 22px;
  align-items: start;
  margin-bottom: 30px;
}
.section-head h2, .about h2 {
  margin: 0;
  color: #172033;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.07;
  font-weight: 950;
}
.section-head p { margin: 0; }
.filters {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(170px, .45fr) minmax(140px, .38fr) minmax(0, 1.3fr);
  gap: 14px;
  margin-bottom: 24px;
}
.filters input, .filters select, .newsletter input, .checkout-form input, .checkout-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 14px 16px;
  outline: none;
  box-shadow: var(--shadow-sm);
}
.filters input:focus, .filters select:focus, .newsletter input:focus, .checkout-form input:focus, .checkout-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgb(15 118 110 / .12);
}
.filters div { display: flex; flex-wrap: wrap; gap: 8px; }
.filters button {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #243047;
  padding: 0 16px;
  font-weight: 850;
}
.filters button:hover { border-color: var(--accent); color: var(--accent); }
.filters button.active { border-color: var(--accent); background: var(--accent); color: #fff; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 24px;
}
.product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-image { position: relative; aspect-ratio: 1 / .78; overflow: hidden; background: var(--soft); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-image img { transform: scale(1.045); }
.product-flags {
  position: absolute;
  inset: 12px 12px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-flags span {
  border-radius: 999px;
  background: rgb(255 255 255 / .94);
  color: #182033;
  padding: 6px 11px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.product-body {
  min-height: 248px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  padding: 20px;
}
.product-meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.product-meta span, .product-meta small {
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}
.product-meta small { color: var(--muted); text-align: right; }
.product-body h3 { margin: 10px 0; color: #172033; font-size: 21px; font-weight: 950; line-height: 1.2; }
.product-body p { margin: 0; font-size: 14px; }
.product-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}
.product-bottom strong { color: #111827; font-size: 21px; font-weight: 950; white-space: nowrap; }
.product-actions {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 10px;
}
.product-bottom button, .checkout-form button, .newsletter button {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  padding: 0 16px;
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}
.product-bottom button:hover, .checkout-form button:hover, .newsletter button:hover { background: var(--accent-dark); }
.product-bottom .ghost-button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--accent);
  box-shadow: none;
}
.product-bottom .ghost-button:hover {
  border-color: var(--accent);
  background: #eef8f4;
  color: var(--accent-dark);
}
.empty {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px dashed #bdc8d5;
  border-radius: 8px;
  background: rgb(255 255 255 / .78);
  color: var(--muted);
  text-align: center;
  padding: 36px 18px;
}

.visual-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, .48fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  overflow: hidden;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #172033;
  color: #fff;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow-lg);
}
.visual-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0 35%, rgb(255 255 255 / .10) 50%, transparent 65% 100%);
  animation: scan 9s ease-in-out infinite alternate;
}
.showcase-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 12px;
}
.showcase-copy span {
  color: var(--secondary);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.showcase-copy h2 {
  margin: 0;
  font-size: clamp(25px, 3.6vw, 42px);
  line-height: 1.08;
  font-weight: 950;
}
.showcase-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.showcase-tile,
.showcase-placeholder {
  min-height: 190px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / .16);
  border-radius: 8px;
  background: rgb(255 255 255 / .08);
  color: #fff;
  text-align: left;
  padding: 0;
  animation: riseIn .55s ease both;
  animation-delay: var(--delay, 0ms);
}
.showcase-tile {
  display: grid;
  grid-template-rows: 118px auto auto;
}
.showcase-tile img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  transition: transform .35s ease;
}
.showcase-tile:hover img { transform: scale(1.06); }
.showcase-tile span,
.showcase-tile strong {
  padding: 0 13px;
}
.showcase-tile span {
  margin-top: 12px;
  color: var(--secondary);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}
.showcase-tile strong {
  margin: 4px 0 14px;
  font-size: 15px;
  line-height: 1.25;
}
.showcase-placeholder {
  grid-column: 1 / -1;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
}
.showcase-placeholder strong { font-size: 24px; }
.showcase-placeholder span { color: rgb(255 255 255 / .74); line-height: 1.55; }

.process-band {
  width: min(1240px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto 60px;
}
.process-band article {
  min-height: 170px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.process-band article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.process-band span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #eef8f4;
  color: var(--accent);
  font-weight: 950;
}
.process-band strong {
  display: block;
  margin-top: 16px;
  color: #172033;
  font-size: 18px;
  font-weight: 950;
}
.process-band p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  background: rgb(15 23 42 / .58);
  backdrop-filter: blur(6px);
}
.modal-backdrop.is-open { display: block; }
.quick-modal {
  position: fixed;
  inset: 50% auto auto 50%;
  z-index: 75;
  width: min(880px, calc(100% - 32px));
  max-height: calc(100vh - 36px);
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(0, 1fr);
  overflow: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, -50%);
  animation: riseIn .22s ease both;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #172033;
}
.quick-media {
  min-height: 430px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 10px;
  background: var(--soft);
}
.quick-media > img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
}
.quick-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.quick-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
}
.quick-media video {
  width: 100%;
  max-height: 220px;
  border-radius: 8px;
  background: #111827;
}
.quick-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}
.quick-copy > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.quick-copy h2 {
  margin: 0;
  color: #172033;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  font-weight: 950;
}
.quick-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}
.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.quick-facts div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafb;
  padding: 14px;
}
.quick-facts strong,
.quick-facts small {
  display: block;
}
.quick-facts strong {
  color: #172033;
  font-weight: 950;
}
.quick-facts small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}
.quick-copy > button {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 950;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .7fr);
  gap: clamp(28px, 6vw, 58px);
  padding: 88px 0;
}
.about p { margin-bottom: 0; }
.newsletter {
  align-self: start;
  border-radius: 8px;
  background: #18212f;
  color: #fff;
  padding: clamp(24px, 4vw, 34px);
  box-shadow: var(--shadow-lg);
}
.newsletter h3 { margin: 0 0 8px; font-size: 28px; font-weight: 950; }
.newsletter p { color: rgb(255 255 255 / .78); }
.newsletter form { display: grid; grid-template-columns: 1fr auto; gap: 12px; margin-top: 20px; }
.newsletter input { border-color: rgb(255 255 255 / .2); }
.newsletter button { background: var(--secondary); color: #171717; }
.newsletter button:hover { background: #fff; color: var(--accent-dark); }

footer { border-top: 1px solid var(--line); padding: 42px 0 56px; }
.footer-content { display: flex; align-items: center; justify-content: space-between; gap: 38px; }
.footer-main { flex: 1; }
.footer-main strong { color: #111827; font-size: 24px; font-weight: 950; }
.footer-main a { color: var(--accent); font-weight: 850; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-legal a { color: var(--muted); font-size: 14px; font-weight: 850; }
.footer-legal a:hover, .footer-main a:hover { color: var(--accent-dark); }

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: none;
  background: rgb(15 23 42 / .52);
  backdrop-filter: blur(5px);
}
.cart-backdrop.is-open { display: block; }
.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 50;
  width: min(500px, 100%);
  overflow: auto;
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  transform: translateX(105%);
  transition: transform .28s ease;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.cart-head h2 { margin: 0; font-size: 25px; font-weight: 950; }
.cart-head button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #1f2937;
  font-size: 18px;
}
.cart-head button:hover { border-color: var(--danger); color: var(--danger); }
.cart-line {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.cart-line img { width: 70px; height: 70px; border-radius: 8px; object-fit: cover; }
.cart-line span { display: block; margin-top: 4px; color: var(--muted); font-size: 14px; }
.qty { display: grid; grid-template-columns: 36px 34px 36px; align-items: center; text-align: center; }
.qty button { width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: #101827; }
.qty button:hover { border-color: var(--accent); color: var(--accent); }
.cart-totals { display: grid; gap: 12px; margin: 24px 0; }
.cart-totals div { display: flex; justify-content: space-between; gap: 16px; }
.cart-totals div:last-child { border-top: 1px solid var(--line); padding-top: 16px; font-size: 22px; font-weight: 950; }
.payment-choice {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafb;
  padding: 14px;
}
.payment-choice > strong { font-size: 14px; }
.payment-choice label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 12px;
  cursor: pointer;
}
.payment-choice label.active { border-color: var(--accent); box-shadow: 0 0 0 3px rgb(15 118 110 / .10); }
.payment-choice input { width: auto; margin-top: 3px; }
.payment-choice b, .payment-choice small { display: block; }
.payment-choice small { margin-top: 3px; color: var(--muted); font-size: 12px; }
.checkout-form { display: grid; gap: 16px; }
.checkout-form h3 { margin: 12px 0 0; font-size: 20px; font-weight: 950; }
.checkout-form label { display: grid; gap: 7px; color: var(--muted); font-size: 13px; font-weight: 850; }
.checkout-form textarea { min-height: 86px; resize: vertical; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 42px; }
  .hero-media, .hero-media img { min-height: 420px; }
  .section-head { grid-template-columns: 54px minmax(0, 1fr); }
  .section-head p { grid-column: 2; }
}
@media (max-width: 860px) {
  .main-nav { min-height: auto; grid-template-columns: minmax(0, 1fr) auto; gap: 8px 14px; padding: 12px 0; }
  .nav-links { grid-column: 1 / -1; grid-row: 2; justify-content: space-between; gap: 10px; overflow-x: auto; padding-top: 4px; scrollbar-width: none; }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { min-height: 38px; white-space: nowrap; }
  .cart-button { grid-column: 2; grid-row: 1; min-height: 46px; padding: 0 16px; }
  .trust-grid, .about, .filters, .window-grid { grid-template-columns: 1fr; }
  .trust-grid { padding-bottom: 44px; }
  .section { padding: 56px 0; }
  .newsletter form, .footer-content { grid-template-columns: 1fr; }
  .footer-content { display: grid; align-items: start; }
}
@media (max-width: 760px) {
  .visual-showcase,
  .quick-modal,
  .process-band {
    grid-template-columns: 1fr;
  }
  .showcase-track {
    grid-template-columns: 1fr 1fr;
  }
  .quick-media {
    min-height: 300px;
  }
}
@media (max-width: 560px) {
  .hero, .trust-grid, .section, .about, footer, .main-nav { width: min(100% - 32px, 1240px); }
  .topbar { font-size: 12px; }
  .brand { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
  .hero { gap: 28px; padding-top: 36px; }
  .hero h1 { font-size: clamp(36px, 11vw, 44px); line-height: 1.06; }
  .hero p { font-size: 16px; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions a { min-width: 0; padding: 0 12px; text-align: center; }
  .hero-media, .hero-media img { min-height: 340px; }
  .hero-float { right: 18px; bottom: 18px; left: 34%; padding: 14px 16px; }
  .section-head { grid-template-columns: 1fr; }
  .section-head p { grid-column: auto; }
  .filters div { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
  .filters div::-webkit-scrollbar { display: none; }
  .filters button { flex: 0 0 auto; }
  .product-bottom { align-items: stretch; flex-direction: column; }
  .product-actions { grid-template-columns: 1fr; }
  .product-bottom button { width: 100%; }
  .cart-drawer { padding: 18px; }
  .cart-line { grid-template-columns: 64px 1fr; align-items: start; }
  .cart-line img { width: 64px; height: 64px; }
  .qty { grid-column: 2; justify-self: start; margin-top: 8px; }
}
@media (max-width: 380px) {
  .cart-button { gap: 7px; padding: 0 12px; }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-float { left: 24px; max-width: calc(100% - 48px); }
}

/* Purple-black direction */
:root {
  --accent: #8b5cf6;
  --accent-dark: #6d28d9;
  --secondary: #f0abfc;
  --ink: #f7f2ff;
  --muted: #b8a8d9;
  --line: rgba(196, 181, 253, .18);
  --bg: #07030f;
  --panel: #12091f;
  --soft: #1d1230;
  --green: #34d399;
  --danger: #fb7185;
  --header: #08040f;
  --rose: #f0abfc;
  --shadow-sm: 0 1px 2px rgb(0 0 0 / .25);
  --shadow: 0 18px 42px rgb(0 0 0 / .34);
  --shadow-lg: 0 32px 90px rgb(0 0 0 / .48);
}

body {
  background:
    linear-gradient(135deg, rgba(139, 92, 246, .20) 0, transparent 34rem),
    linear-gradient(180deg, #090414 0, #07030f 38rem, #05020b 100%);
  color: var(--ink);
}

.site-header {
  background: rgba(8, 4, 15, .86);
  border-bottom-color: var(--line);
}

.topbar {
  background: linear-gradient(90deg, #12091f, #2b0f54, #12091f);
  color: #f6edff;
}

.brand,
.hero h1,
.section-head h2,
.about h2,
.trust-grid strong,
.product-body h3,
.window-card-body h3,
.spotlight-body h3,
.process-band strong,
.footer-main strong,
.quick-copy h2 {
  color: #fff;
}

.brand::before {
  background: var(--secondary);
  box-shadow: 8px 8px 0 var(--accent);
}

.nav-links,
.nav-links a,
.hero p,
.trust-grid p,
.section-head p,
.product-body p,
.about p,
.footer-legal a,
.payment-result span {
  color: var(--muted);
}

.nav-links a:hover {
  color: #fff;
  border-color: var(--secondary);
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-button,
.hero-actions a:first-child,
.product-bottom button,
.checkout-form button,
.quick-copy > button,
.spotlight-card button,
.window-card button {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 18px 42px rgba(109, 40, 217, .36);
}

.cart-button:hover,
.hero-actions a:first-child:hover,
.product-bottom button:hover,
.checkout-form button:hover,
.quick-copy > button:hover,
.spotlight-card button:hover {
  background: linear-gradient(135deg, #a78bfa, var(--accent-dark));
}

.cart-button span {
  background: var(--secondary);
  color: #160827;
}

.hero {
  min-height: min(760px, calc(100vh - 96px));
}

.hero-copy > span,
.section-head > span,
.about span {
  border-color: rgba(240, 171, 252, .25);
  background: rgba(139, 92, 246, .14);
  color: #f0abfc;
}

.section-head > span,
.about span {
  background: var(--secondary);
}

.hero-proof div,
.trust-grid article,
.product-card,
.process-band article,
.newsletter,
.cart-drawer,
.quick-modal,
.payment-choice,
.payment-choice label,
.quick-facts div,
.empty {
  border-color: var(--line);
  background: rgba(18, 9, 31, .78);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.hero-proof strong,
.product-bottom strong,
.window-card-bottom strong,
.spotlight-bottom strong,
.quick-facts strong {
  color: #fff;
}

.hero-actions a:last-child,
.product-bottom .ghost-button,
.filters input,
.filters select,
.newsletter input,
.checkout-form input,
.checkout-form textarea {
  border-color: var(--line);
  background: rgba(255,255,255,.06);
  color: #fff;
}

.hero-actions a:last-child:hover,
.product-bottom .ghost-button:hover,
.filters button:hover {
  border-color: var(--secondary);
  background: rgba(240, 171, 252, .12);
  color: #fff;
}

.hero-media {
  display: grid;
  align-content: end;
  background:
    linear-gradient(145deg, rgba(139, 92, 246, .35), rgba(7, 3, 15, .15)),
    var(--soft);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(240, 171, 252, .20);
  border-radius: 8px;
  pointer-events: none;
}

.hero-strip span,
.hero-float,
.product-flags span {
  border: 1px solid rgba(240, 171, 252, .20);
  background: rgba(12, 5, 24, .78);
  color: #fff;
  backdrop-filter: blur(12px);
}

.visual-showcase {
  border-color: rgba(240, 171, 252, .20);
  background:
    linear-gradient(135deg, rgba(139, 92, 246, .30), rgba(18, 9, 31, .96)),
    #0b0415;
}

.showcase-copy h2,
.showcase-tile strong,
.showcase-placeholder strong {
  color: #fff;
}

.showcase-tile,
.showcase-placeholder {
  background: rgba(255,255,255,.06);
  border-color: rgba(240, 171, 252, .14);
}

.window-card::before,
.window-card::after {
  content: none !important;
  display: none !important;
}

.spotlight-card::before,
.spotlight-card::after {
  content: none !important;
  display: none !important;
}

.window-card,
.spotlight-card {
  overflow: hidden;
  border: 1px solid rgba(240, 171, 252, .18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(139, 92, 246, .12), rgba(18, 9, 31, .92)),
    var(--panel);
  box-shadow: var(--shadow);
}

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

.spotlight-card {
  display: grid;
  grid-template-rows: 290px 1fr;
  animation: riseIn .62s ease both;
  animation-delay: var(--delay, 0ms);
}

.spotlight-media {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  background:
    linear-gradient(135deg, rgba(139,92,246,.24), rgba(240,171,252,.08)),
    #140920;
}

.spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
  transition: transform .45s ease, opacity .45s ease;
}

.spotlight-card:hover .spotlight-media img {
  transform: scale(1.045);
  opacity: 1;
}

.spotlight-body {
  display: grid;
  gap: 10px;
  min-height: 230px;
  padding: 22px;
}

.spotlight-body span,
.product-meta span,
.showcase-copy span,
.showcase-tile span,
.quick-copy > span,
.hero-float span {
  color: var(--secondary);
}

.spotlight-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.spotlight-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: auto;
}

.shop::before {
  border-color: var(--line);
  background: rgba(18, 9, 31, .50);
}

.filters button {
  border-color: var(--line);
  background: rgba(255,255,255,.05);
  color: var(--muted);
}

.filters button.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.newsletter {
  background: linear-gradient(135deg, #150925, #2b0f54);
}

.signature-choice {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(139, 92, 246, .10);
  padding: 14px;
  cursor: pointer;
}

.signature-choice input {
  width: auto;
  margin-top: 4px;
}

.signature-choice b,
.signature-choice small {
  display: block;
}

.signature-choice small {
  margin-top: 4px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .nav-actions {
    grid-column: 2;
  }
  .spotlight-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav-actions {
    width: 100%;
    grid-column: 1 / -1;
    justify-content: stretch;
  }
  .nav-actions > * {
    flex: 1;
  }
  .spotlight-card {
    grid-template-rows: 220px 1fr;
  }
  .spotlight-media {
    min-height: 220px;
  }
}

/* V2 visual direction: darker, sharper, more premium without touching behavior. */
:root {
  --accent: #8b5cf6;
  --accent-dark: #5b21b6;
  --secondary: #22d3ee;
  --hot: #f472b6;
  --acid: #bef264;
  --ink: #f8f4ff;
  --muted: #b7a9ce;
  --line: rgba(255,255,255,.12);
  --bg: #05020a;
  --panel: rgba(17, 8, 29, .86);
  --soft: #13091f;
  --shadow-sm: 0 1px 0 rgba(255,255,255,.08), 0 12px 32px rgba(0,0,0,.28);
  --shadow: 0 1px 0 rgba(255,255,255,.10), 0 22px 58px rgba(0,0,0,.42);
  --shadow-lg: 0 1px 0 rgba(255,255,255,.12), 0 38px 100px rgba(0,0,0,.58);
}

html {
  background: #05020a;
}

body {
  min-height: 100vh;
  background:
    linear-gradient(115deg, rgba(139,92,246,.18), transparent 28%),
    linear-gradient(245deg, rgba(34,211,238,.12), transparent 26%),
    linear-gradient(180deg, #07030e 0, #05020a 44%, #090312 100%);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.78), transparent 72%);
}

.site-header {
  background: rgba(5, 2, 10, .72);
  border-bottom: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 40px rgba(0,0,0,.28);
}

.topbar {
  min-height: 36px;
  background: linear-gradient(90deg, #1b0734, #44148b 42%, #063040 100%);
  color: #fff;
}

.main-nav {
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(24px, 2.2vw, 32px);
}

.brand::before {
  width: 16px;
  height: 16px;
  margin-right: 0;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--hot), var(--secondary));
  box-shadow: 8px 8px 0 rgba(139,92,246,.95);
  transform: translateY(-2px) rotate(8deg);
}

.nav-links {
  gap: clamp(14px, 3vw, 32px);
}

.nav-links a {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 12px;
}

.nav-links a:hover {
  border-color: rgba(34,211,238,.25);
  background: rgba(34,211,238,.08);
  color: #fff;
}

.cart-button {
  min-height: 50px;
  border-radius: 8px;
}

.cart-button {
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, #9f5cff, #6d28d9 58%, #0ea5e9);
  box-shadow: 0 18px 50px rgba(109,40,217,.42), inset 0 1px 0 rgba(255,255,255,.22);
}

.cart-button span {
  background: #fff;
  color: #341058;
}

.hero,
.trust-grid,
.section,
.about,
footer,
.visual-showcase,
.featured-windows,
.process-band {
  width: min(1240px, calc(100% - 40px));
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 92px));
  grid-template-columns: minmax(0, .96fr) minmax(390px, .84fr);
  gap: clamp(34px, 7vw, 96px);
  padding: clamp(54px, 7vw, 92px) 0 58px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 46px -30px auto auto;
  width: min(52vw, 620px);
  height: 72%;
  border: 1px solid rgba(34,211,238,.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(139,92,246,.10), rgba(34,211,238,.055)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.045) 0 1px, transparent 1px 16px);
  transform: skewY(-4deg);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy > span,
.section-head > span,
.about span {
  border: 1px solid rgba(244,114,182,.26);
  background: linear-gradient(135deg, rgba(244,114,182,.14), rgba(34,211,238,.10));
  color: #ffd7ef;
}

.hero h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .94;
  text-wrap: balance;
  text-shadow: 0 18px 72px rgba(139,92,246,.26);
}

.hero p {
  max-width: 640px;
  color: #cfc3df;
}

.hero-proof {
  grid-template-columns: repeat(3, minmax(118px, 152px));
  gap: 12px;
}

.hero-proof div,
.trust-grid article,
.process-band article {
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035)),
    rgba(16, 7, 29, .74);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.hero-proof strong {
  color: #fff;
}

.hero-proof span,
.hero-note {
  color: #c8bad9;
}

.hero-actions a {
  border-radius: 8px;
  min-height: 54px;
}

.hero-actions a:first-child,
.product-bottom button:not(.ghost-button),
.checkout-form button,
.quick-copy > button,
.spotlight-card button:not(:disabled) {
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, #f472b6, #8b5cf6 46%, #22d3ee);
  box-shadow: 0 20px 46px rgba(139,92,246,.34), inset 0 1px 0 rgba(255,255,255,.26);
}

.hero-actions a:last-child,
.product-bottom .ghost-button,
.filters input,
.filters select,
.newsletter input,
.checkout-form input,
.checkout-form textarea {
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.065);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.hero-actions a:hover,
.product-bottom button:hover,
.quick-copy > button:hover,
.spotlight-card button:hover {
  transform: translateY(-2px);
}

.hero-media {
  min-height: 560px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(244,114,182,.22), rgba(34,211,238,.12)),
    #0d0618;
  box-shadow: 0 30px 90px rgba(0,0,0,.54), 0 0 0 8px rgba(255,255,255,.025);
  transform: perspective(1100px) rotateY(-5deg) rotateX(2deg);
}

.hero-media::before {
  inset: 14px;
  border-color: rgba(255,255,255,.20);
}

.hero-media::after {
  background: linear-gradient(90deg, transparent, rgba(34,211,238,.22), transparent);
}

.hero-media img {
  min-height: 560px;
  filter: saturate(1.08) contrast(1.04);
}

.hero-strip {
  left: 20px;
  right: 20px;
  top: 20px;
}

.hero-strip span,
.hero-float,
.product-flags span {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(6, 2, 12, .72);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
}

.hero-float {
  max-width: min(340px, calc(100% - 40px));
  right: 20px;
  bottom: 20px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.06)),
    rgba(10, 3, 20, .82);
}

.hero-float span,
.product-meta span,
.spotlight-body span,
.showcase-copy span,
.quick-copy > span {
  color: var(--secondary);
}

.trust-grid {
  gap: 16px;
  margin-top: -12px;
}

.trust-grid article {
  position: relative;
  overflow: hidden;
}

.trust-grid article::before {
  width: 54px;
  height: 4px;
  background: linear-gradient(90deg, var(--hot), var(--secondary));
}

.visual-showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(115deg, rgba(244,114,182,.18), rgba(139,92,246,.16) 36%, rgba(34,211,238,.10)),
    rgba(9, 3, 18, .82);
  box-shadow: var(--shadow);
}

.visual-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(255,255,255,.07) 24% 24.5%, transparent 24.5% 49%, rgba(255,255,255,.05) 49% 49.4%, transparent 49.4% 100%);
  pointer-events: none;
}

.showcase-copy,
.showcase-track {
  position: relative;
  z-index: 1;
}

.showcase-copy h2 {
  max-width: 430px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  text-wrap: balance;
}

.showcase-track {
  align-items: stretch;
}

.showcase-tile,
.showcase-placeholder {
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    rgba(15, 6, 28, .88);
  box-shadow: var(--shadow-sm);
}

.showcase-tile {
  min-height: 230px;
  transform: translateY(0);
}

.showcase-tile:nth-child(2n) {
  margin-top: 28px;
}

.showcase-tile:nth-child(3n) {
  margin-top: -12px;
}

.showcase-tile:hover {
  border-color: rgba(34,211,238,.48);
  transform: translateY(-8px) rotate(.8deg);
  box-shadow: 0 26px 70px rgba(34,211,238,.16), var(--shadow);
}

.showcase-tile img {
  filter: saturate(1.08) contrast(1.06);
}

.section-head h2,
.about h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  text-wrap: balance;
}

.section-head p,
.about p,
.trust-grid p,
.product-body p,
.spotlight-body p,
.muted-dark {
  color: #bdb0cd;
}

.shop {
  position: relative;
}

.shop::before {
  border-color: rgba(255,255,255,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
    rgba(9, 3, 18, .60);
}

.filters {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  background: rgba(255,255,255,.045);
  padding: 12px;
  box-shadow: var(--shadow-sm);
}

.filters button {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  color: #d9cdec;
}

.filters button.active {
  border-color: rgba(34,211,238,.45);
  background: linear-gradient(135deg, rgba(139,92,246,.95), rgba(34,211,238,.82));
  color: #fff;
}

.product-grid {
  gap: 18px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.025)),
    rgba(15, 6, 28, .86);
  box-shadow: var(--shadow-sm);
  animation: riseIn .48s ease both;
  animation-delay: var(--delay, 0ms);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.12), transparent 32%);
  opacity: .45;
}

.product-card:hover {
  border-color: rgba(244,114,182,.42);
  transform: translateY(-8px);
  box-shadow: 0 30px 78px rgba(139,92,246,.20), var(--shadow);
}

.product-image {
  background: #10071d;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(5,2,10,.78));
  pointer-events: none;
}

.product-image img {
  filter: saturate(1.06) contrast(1.06);
}

.product-body {
  position: relative;
  z-index: 1;
}

.product-meta {
  color: #dcd0ef;
}

.product-bottom {
  gap: 14px;
}

.product-bottom strong,
.spotlight-bottom strong {
  color: #fff;
  font-size: 22px;
}

.product-actions {
  align-items: stretch;
}

.product-actions button {
  min-height: 42px;
}

.featured-windows {
  padding-top: 80px;
}

.spotlight-grid {
  gap: 18px;
}

.spotlight-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.13);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    rgba(15, 6, 28, .86);
  box-shadow: var(--shadow);
}

.spotlight-card:hover {
  border-color: rgba(34,211,238,.40);
  transform: translateY(-7px);
}

.spotlight-media {
  background:
    linear-gradient(135deg, rgba(244,114,182,.22), rgba(34,211,238,.10)),
    #10071d;
}

.spotlight-body {
  min-height: 250px;
}

.process-band {
  margin: 82px auto 0;
}

.process-band article {
  min-height: 170px;
}

.process-band span {
  color: var(--acid);
}

.newsletter {
  border: 1px solid rgba(255,255,255,.13);
  background:
    linear-gradient(135deg, rgba(244,114,182,.16), rgba(34,211,238,.10)),
    #12081f;
}

footer {
  border-top-color: rgba(255,255,255,.10);
}

.cart-drawer,
.quick-modal {
  border-left: 1px solid rgba(255,255,255,.13);
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    #0b0414;
}

.payment-choice,
.payment-choice label,
.signature-choice,
.quick-facts div {
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
}

.modal-close,
.cart-head button {
  background: rgba(255,255,255,.07);
  color: #fff;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero::before {
    inset: auto -24px 120px auto;
    height: 360px;
  }

  .hero-media {
    min-height: 440px;
    transform: none;
  }

  .hero-media img {
    min-height: 440px;
  }

  .showcase-tile:nth-child(2n),
  .showcase-tile:nth-child(3n) {
    margin-top: 0;
  }

}

@media (max-width: 720px) {
  .main-nav {
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: 128px;
    padding: 14px 0;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 4px;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
    font-size: 12px;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 8px;
  }

  .nav-actions {
    grid-column: auto;
  }

  .cart-button {
    min-height: 48px;
    padding: 0 12px;
  }

  .hero,
  .trust-grid,
  .section,
  .about,
  footer,
  .visual-showcase,
  .featured-windows,
  .process-band {
    width: min(100% - 28px, 1240px);
  }

  .hero {
    padding-top: 36px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: .98;
  }

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

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

  .hero-media,
  .hero-media img {
    min-height: 340px;
  }

  .hero-strip {
    align-items: start;
    flex-direction: column;
  }

  .filters {
    padding: 10px;
  }

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

}

/* TAPI BOLT reference skin */
body {
  background:
    linear-gradient(115deg, rgba(166, 47, 255, .18), transparent 34%),
    linear-gradient(245deg, rgba(117, 31, 255, .14), transparent 38%),
    linear-gradient(180deg, #07070b 0, #040407 52%, #0a0611 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(168, 85, 247, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, .04) 1px, transparent 1px);
  background-size: 58px 58px;
}

.site-header {
  width: min(1314px, calc(100% - 278px));
  margin: 18px 0 0 max(16px, calc((100% - 1560px) / 2));
  border: 1px solid rgba(172, 92, 255, .28);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(6, 6, 10, .90);
  box-shadow: 0 0 0 1px rgba(255,255,255,.04), 0 28px 90px rgba(0,0,0,.54);
}

.topbar {
  display: none;
}

.main-nav {
  width: 100%;
  min-height: 112px;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  gap: 16px;
  padding: 0 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-style: italic;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(168,85,247,.62);
}

.brand::after {
  content: "";
  width: 84px;
  height: 22px;
  margin-left: 10px;
  background:
    linear-gradient(90deg, transparent 0 8px, rgba(168,85,247,.95) 8px 10px, transparent 10px 18px, rgba(237,230,255,.75) 18px 20px, transparent 20px 28px, rgba(168,85,247,.95) 28px 32px, transparent 32px 100%);
  clip-path: polygon(0 48%, 16% 48%, 20% 18%, 26% 82%, 34% 48%, 50% 48%, 56% 28%, 62% 74%, 70% 48%, 100% 48%, 100% 55%, 70% 55%, 62% 100%, 56% 0, 50% 55%, 34% 55%, 26% 100%, 20% 0, 16% 55%, 0 55%);
  opacity: .86;
}

.nav-search {
  min-height: 42px;
  display: grid;
  grid-template-columns: 1fr 42px;
  align-items: center;
  border: 1px solid rgba(172, 92, 255, .26);
  border-radius: 8px;
  background: rgba(255,255,255,.035);
  overflow: hidden;
}

.nav-search input {
  min-width: 0;
  height: 42px;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0 14px;
}

.nav-search button {
  height: 42px;
  border: 0;
  border-left: 1px solid rgba(172, 92, 255, .25);
  background: linear-gradient(135deg, #5b21b6, #8b2fff);
  color: #fff;
  font-size: 22px;
}

.nav-actions {
  min-width: 120px;
}

.cart-button {
  width: 100%;
  min-height: 48px;
  justify-content: center;
  background: linear-gradient(135deg, #44148b, #7c22f4);
}

.nav-links {
  grid-column: 1 / -1;
  min-height: 44px;
  margin: 0 -18px;
  padding: 0 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.nav-links a,
.nav-links button {
  min-height: 42px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #f2ecff;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 900;
}

.nav-links button.active,
.nav-links a:hover,
.nav-links button:hover {
  color: #c084fc;
  background: transparent;
}

.tapi-shell {
  width: min(1560px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 16px;
  align-items: start;
  margin: 18px auto 0;
  overflow: visible;
}

.shop-console,
.side-rail {
  border: 1px solid rgba(172, 92, 255, .22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
    rgba(7, 7, 12, .88);
  box-shadow: 0 24px 70px rgba(0,0,0,.44), inset 0 1px 0 rgba(255,255,255,.06);
}

.side-rail {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 18px;
  padding: 18px;
}

.shop-console {
  overflow: hidden;
}

.shop-console > .hero,
.shop-console > .trust-grid,
.shop-console > .section,
.shop-console > .about,
.shop-console > .visual-showcase,
.shop-console > .featured-windows,
.shop-console > .process-band {
  width: 100%;
}

.shop-console .hero {
  min-height: 360px;
  grid-template-columns: minmax(0, .58fr) minmax(320px, .82fr);
  align-items: center;
  gap: 18px;
  padding: 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(110deg, rgba(7,7,12,.96) 0 42%, rgba(88,28,135,.36) 65%, rgba(34,211,238,.10)),
    linear-gradient(90deg, rgba(7,7,12,.96), rgba(35, 10, 62, .58));
}

.shop-console .hero::before {
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.055), transparent 1px) 0 0 / 64px 100%,
    linear-gradient(0deg, rgba(255,255,255,.035), transparent 1px) 0 0 / 100% 64px;
  transform: none;
  opacity: .45;
}

.shop-console .hero h1 {
  font-size: clamp(42px, 5vw, 72px);
  text-transform: uppercase;
}

.shop-console .hero-copy {
  align-self: center;
  padding: 0;
}

.shop-console .hero p {
  max-width: 420px;
  font-size: 16px;
  line-height: 1.52;
}

.shop-console .hero-proof {
  display: none;
}

.shop-console .hero-actions {
  margin-top: 22px;
}

.shop-console .hero-media {
  min-height: 300px;
  border: 0;
  border-radius: 8px;
  transform: none;
  background: transparent;
  box-shadow: none;
}

.shop-console .hero-media::before {
  border-color: rgba(168,85,247,.35);
}

.shop-console .hero-media img {
  min-height: 300px;
  border-radius: 8px;
  opacity: .78;
  mix-blend-mode: normal;
  filter: saturate(1.35) contrast(1.08) brightness(.78);
}

.visual-showcase {
  margin: 0;
  border-width: 0 0 1px;
  border-radius: 0;
  grid-template-columns: minmax(190px, .35fr) 1fr;
  padding: 18px;
  background: rgba(9, 9, 15, .88);
}

.showcase-copy h2 {
  font-size: 22px;
}

.showcase-track {
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 10px;
}

.showcase-tile {
  min-height: 150px;
  border-radius: 8px;
}

.showcase-tile img {
  height: 118px;
}

.showcase-tile strong {
  font-size: 15px;
}

.featured-windows,
.shop,
.about,
.process-band,
.trust-grid {
  margin: 0;
  padding: 18px;
}

.spotlight-grid {
  gap: 10px;
}

.spotlight-card {
  grid-template-rows: 170px 1fr;
}

.spotlight-media,
.spotlight-media img {
  min-height: 170px;
}

.spotlight-body {
  min-height: 190px;
  padding: 16px;
}

.product-grid {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}

.product-card {
  border-radius: 8px;
}

.product-image {
  min-height: 154px;
}

.product-image img {
  height: 154px;
}

.product-body {
  padding: 12px;
}

.product-body h3 {
  font-size: 15px;
  min-height: 38px;
}

.product-body p {
  display: none;
}

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

.product-actions {
  display: grid;
  grid-template-columns: 1fr 44px;
}

.product-bottom .ghost-button {
  display: none;
}

.product-actions button:not(.ghost-button) {
  min-width: 44px;
  padding: 0;
  font-size: 12px;
}

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

.trust-grid article {
  min-height: 74px;
  padding: 14px;
}

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

.side-rail {
  gap: 12px;
  padding: 12px;
}

.rail-hero,
.rail-products,
.rail-benefits,
.rail-cta {
  border: 1px solid rgba(172, 92, 255, .22);
  border-radius: 8px;
  background: rgba(255,255,255,.035);
  padding: 12px;
}

.rail-hero {
  min-height: 190px;
  background:
    linear-gradient(135deg, rgba(88,28,135,.78), rgba(7,7,12,.82)),
    url("https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?auto=format&fit=crop&w=700&q=80") center / cover;
}

.rail-hero span,
.rail-cta span {
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.rail-hero strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
}

.rail-hero p,
.rail-cta p {
  color: #efe8ff;
  font-size: 12px;
  line-height: 1.45;
}

.rail-hero a,
.rail-cta a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 7px;
  background: linear-gradient(135deg, #8b2fff, #6417c9);
  color: #fff;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 950;
}

.rail-products h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
}

.rail-products > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.rail-products article {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.rail-products img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 7px;
  object-fit: cover;
}

.rail-products strong {
  color: #fff;
  font-size: 12px;
  line-height: 1.25;
}

.rail-products span {
  color: #f5efff;
  font-size: 12px;
  font-weight: 850;
}

.rail-products button {
  min-height: 32px;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, #8b2fff, #6417c9);
  color: #fff;
  font-size: 12px;
}

.rail-benefits {
  display: grid;
  gap: 10px;
}

.rail-benefits p {
  margin: 0;
  color: #d9ccf0;
  font-size: 13px;
}

.rail-benefits p::before {
  content: "✦";
  color: #a855f7;
  margin-right: 8px;
}

.rail-cta {
  background:
    linear-gradient(135deg, rgba(168,85,247,.30), rgba(10,10,16,.86)),
    linear-gradient(315deg, rgba(34,211,238,.18), transparent 62%);
}

@media (max-width: 1120px) {
  .site-header {
    width: min(1180px, calc(100% - 32px));
    margin: 18px auto 0;
  }

  .tapi-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .side-rail {
    display: none;
  }

}

@media (max-width: 980px) {
  .site-header {
    margin-top: 10px;
  }

  .main-nav {
    grid-template-columns: 1fr auto;
    min-height: 132px;
  }

  .nav-search {
    grid-column: 1 / -1;
    order: 3;
  }

  .nav-links {
    order: 4;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .nav-links a,
  .nav-links button {
    flex: 0 0 auto;
  }

  .tapi-shell {
    width: min(100% - 20px, 760px);
    grid-template-columns: 1fr;
  }

  .shop-console {
    order: 1;
  }

  .shop-console .hero {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .shop-console .hero-media,
  .shop-console .hero-media img {
    min-height: 280px;
  }

  .visual-showcase {
    grid-template-columns: 1fr;
  }

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

  .trust-grid,
  .process-band {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: min(100% - 16px, 1180px);
  }

  .main-nav {
    min-height: 154px;
    padding: 12px;
  }

  .brand::after {
    display: none;
  }

  .nav-actions {
    min-width: 96px;
  }

  .cart-button {
    padding: 0 10px;
  }

  .shop-console .hero h1 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .shop-console > .hero {
    min-height: auto;
    gap: 14px;
  }

  .shop-console > .hero .hero-media,
  .shop-console > .hero .hero-media img {
    height: 220px;
    min-height: 220px;
  }

  .showcase-track,
  .trust-grid,
  .process-band,
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid {
    gap: 8px;
  }

  .product-image,
  .product-image img {
    height: 138px;
    min-height: 138px;
  }

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

.shop-console > .hero {
  min-height: 420px;
  align-items: center;
}

.shop-console > .hero .hero-copy,
.shop-console > .hero .hero-media {
  align-self: center;
}

.shop-console > .hero .hero-media {
  height: 300px;
  min-height: 300px;
  max-height: 360px;
  animation: none;
  transform: none;
}

.shop-console > .hero .hero-media img {
  height: 300px;
  min-height: 300px;
  max-height: 360px;
}

@media (min-width: 1121px) {
  .shop-console > .hero {
    height: auto;
    max-height: 520px;
  }
}

.nav-actions {
  min-width: 230px;
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 10px;
}

.account-button,
.cart-button {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(172, 92, 255, .35);
  border-radius: 8px;
  color: #fff;
  font-weight: 950;
}

.account-button {
  background: rgba(255,255,255,.045);
}

.account-button:hover {
  border-color: rgba(192,132,252,.7);
  background: rgba(168,85,247,.16);
}

.loyalty-panel {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(320px, .95fr);
  gap: 18px;
  padding: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(120deg, rgba(168,85,247,.14), rgba(255,255,255,.02) 42%),
    rgba(10,10,16,.76);
}

.loyalty-copy,
.loyalty-account,
.loyalty-auth-card,
.points-redeem,
.auth-modal {
  border: 1px solid rgba(172, 92, 255, .22);
  border-radius: 8px;
  background: rgba(255,255,255,.035);
}

.loyalty-copy {
  padding: 22px;
}

.loyalty-copy span,
.auth-modal > span {
  color: #c084fc;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.loyalty-copy h2,
.auth-modal h2 {
  margin: 8px 0 12px;
  color: #fff;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.loyalty-copy p,
.loyalty-auth-card p,
.loyalty-account p,
.points-redeem p,
.points-redeem small {
  color: #d9ccf0;
  line-height: 1.5;
}

.loyalty-account {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}

.loyalty-account article {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 6px;
  border-radius: 8px;
  background: rgba(0,0,0,.22);
  padding: 12px;
}

.loyalty-account article span {
  color: #b9a8d7;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.loyalty-account article strong {
  color: #fff;
  font-size: 22px;
  word-break: break-word;
}

.loyalty-progress {
  grid-column: 1 / -1;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}

.loyalty-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ec4899, #8b5cf6, #22d3ee);
}

.loyalty-account p,
.loyalty-account button {
  grid-column: 1 / -1;
}

.loyalty-account button,
.loyalty-auth-card button,
.auth-modal button[type="submit"] {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #ec4899, #7c3aed, #22d3ee);
  color: #fff;
  font-weight: 950;
}

.loyalty-auth-card {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 18px;
}

.loyalty-auth-card button:last-child,
.auth-switch {
  border: 1px solid rgba(172,92,255,.35);
  background: rgba(255,255,255,.045);
}

.points-redeem {
  display: grid;
  gap: 9px;
  padding: 14px;
  margin: 14px 0;
}

.points-redeem strong {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.points-redeem label {
  display: grid;
  gap: 6px;
  color: #d9ccf0;
  font-size: 13px;
}

.points-redeem input,
.auth-modal input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(172,92,255,.25);
  border-radius: 8px;
  background: rgba(0,0,0,.22);
  color: #fff;
  padding: 0 12px;
}

.auth-modal {
  position: fixed;
  z-index: 70;
  top: 50%;
  left: 50%;
  width: min(420px, calc(100% - 32px));
  transform: translate(-50%, -50%);
  padding: 22px;
  box-shadow: 0 32px 90px rgba(0,0,0,.66);
}

.auth-modal form {
  display: grid;
  gap: 12px;
}

.auth-modal label {
  display: grid;
  gap: 7px;
  color: #ede6ff;
  font-size: 13px;
  font-weight: 850;
}

.auth-switch {
  width: 100%;
  min-height: 40px;
  margin-top: 12px;
  border-radius: 8px;
  color: #f5efff;
  font-weight: 850;
}

@media (max-width: 980px) {
  .nav-actions {
    min-width: 190px;
  }

  .loyalty-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav-actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    min-width: 0;
  }

  .loyalty-account {
    grid-template-columns: 1fr;
  }

  .shop-console > .hero {
    min-height: auto;
    gap: 14px;
  }

  .shop-console > .hero h1 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .shop-console > .hero .hero-media,
  .shop-console > .hero .hero-media img {
    height: 220px;
    min-height: 220px;
    max-height: 240px;
  }
}
