:root {
  --bg: #07080d;
  --surface: #10131a;
  --surface-2: #171c25;
  --surface-3: #202631;
  --text: #fff8ec;
  --muted: #aeb8c7;
  --ink: #111318;
  --line: rgba(255, 255, 255, .14);
  --yellow: #ffd427;
  --cyan: #35f2ff;
  --pink: #ff3da6;
  --green: #50ef9b;
  --orange: #ff9d2e;
  --danger: #ff7373;
  --shadow: 0 22px 60px rgba(0, 0, 0, .34);
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 13, .88);
  backdrop-filter: blur(14px) saturate(150%);
}

.notice {
  min-height: 34px;
  padding: 7px 20px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--ink);
  background: linear-gradient(90deg, var(--yellow), #ffe88c 48%, var(--cyan));
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav {
  width: min(1220px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 184px;
  height: auto;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  padding: 10px 0;
}

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

.nav-toggle,
.cart-button,
.icon-action {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
  color: var(--text);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.nav-toggle svg,
.cart-button svg,
.icon-action svg,
.button svg,
.search-field svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-button {
  min-height: 44px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
}

.cart-button strong {
  min-width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 6px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 12px;
}

.hero-shop {
  min-height: 780px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-photo,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-photo {
  object-fit: cover;
  object-position: 58% 50%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 8, 13, .98) 0%, rgba(7, 8, 13, .82) 42%, rgba(7, 8, 13, .2) 78%),
    linear-gradient(180deg, rgba(7, 8, 13, .12), var(--bg));
}

.hero-inner {
  position: relative;
  width: min(1220px, calc(100% - 32px));
  min-height: 780px;
  margin: 0 auto;
  padding: 90px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 680px) 360px;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: 68px;
  line-height: 1.02;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 30px;
  color: #dce4ef;
  font-size: 20px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 900;
  color: var(--text);
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.button:hover,
.button:focus-visible,
.cart-button:hover,
.cart-button:focus-visible,
.icon-action:hover,
.icon-action:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, .38);
}

.button.primary {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 16px 40px rgba(255, 212, 39, .2);
}

.button.ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, .08);
}

.button.ghost.light {
  color: var(--ink);
  border-color: rgba(10, 12, 18, .25);
  background: rgba(255, 255, 255, .34);
}

.button.wide {
  width: 100%;
}

.hero-offer {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: rgba(14, 17, 24, .82);
  box-shadow: var(--shadow);
}

.offer-badge,
.product-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-offer h2 {
  margin: 14px 0 8px;
  font-size: 28px;
}

.hero-offer p {
  color: var(--muted);
}

.hero-offer strong {
  display: block;
  margin: 16px 0;
  font-size: 30px;
}

.trust-strip {
  width: min(1220px, calc(100% - 32px));
  margin: -36px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.trust-strip div {
  min-height: 76px;
  padding: 14px;
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(16, 19, 26, .96);
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 15px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.shop-section,
.process-section {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 0;
}

.section-title {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title h2,
.designer-copy h2,
.business-band h2,
.cta-band h2 {
  margin-bottom: 12px;
  font-size: 42px;
  line-height: 1.08;
}

.section-title p,
.designer-copy p,
.business-band p,
.cta-band p {
  color: var(--muted);
}

.shop-toolbar {
  position: sticky;
  top: 106px;
  z-index: 10;
  margin-bottom: 22px;
  padding: 12px;
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 14, 20, .92);
  backdrop-filter: blur(12px);
}

.search-field {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, .06);
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.category-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.category-tabs button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, .06);
  font-weight: 900;
}

.category-tabs button.is-active {
  color: var(--ink);
  background: var(--yellow);
}

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

.product-card {
  min-height: 430px;
  display: grid;
  grid-template-rows: 196px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.product-visual {
  position: relative;
  padding: 16px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, 0)),
    var(--visual-bg, #141820);
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--radius);
}

.neon-art {
  position: relative;
  max-width: 100%;
  color: var(--product-color, var(--yellow));
  font-size: var(--product-size, 42px);
  font-weight: 900;
  text-align: center;
  overflow-wrap: anywhere;
  text-shadow: 0 0 8px currentColor, 0 0 22px currentColor, 0 0 44px currentColor;
}

.neon-svg {
  position: relative;
  width: min(128px, 78%);
  height: auto;
  color: var(--product-color, var(--yellow));
  fill: none;
  stroke: currentColor;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px currentColor) drop-shadow(0 0 18px currentColor) drop-shadow(0 0 36px currentColor);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 11px;
  font-weight: 900;
}

.product-copy {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.product-copy h3 {
  margin-bottom: 0;
  font-size: 20px;
}

.product-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.product-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.product-meta span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.product-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-foot strong {
  font-size: 20px;
}

.product-actions {
  display: flex;
  gap: 8px;
}

.small-action {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 11px;
  color: var(--text);
  background: rgba(255, 255, 255, .07);
  font-weight: 900;
}

.icon-action {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.designer-section {
  width: min(1220px, calc(100% - 32px));
  margin: 96px auto 0;
  padding: 40px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 212, 39, .09), rgba(53, 242, 255, .07) 45%, rgba(255, 61, 166, .08)),
    var(--surface);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 24px;
  position: relative;
  color: #d9e1ec;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
}

.builder.compact {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 16px;
}

.builder-controls,
.builder-preview,
.cart-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 8, 13, .64);
  box-shadow: var(--shadow);
}

.builder-controls {
  padding: 20px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  color: var(--text);
  background: rgba(255, 255, 255, .07);
  outline: none;
}

.field textarea {
  padding: 11px 12px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(53, 242, 255, .16);
}

fieldset.field {
  border: 0;
  padding: 0;
}

.field legend {
  padding: 0;
  margin-bottom: 8px;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.swatch {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--swatch);
}

.swatch.is-active {
  outline: 3px solid rgba(255, 255, 255, .72);
  outline-offset: 2px;
}

.range-field span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

input[type="range"] {
  accent-color: var(--yellow);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.toggle-row {
  min-height: 46px;
  margin: 2px 0 17px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 900;
}

.toggle-row input {
  width: 20px;
  height: 20px;
  accent-color: var(--yellow);
}

.builder-preview {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.preview-stage {
  min-height: 330px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
    #0b0d13;
  background-size: 28px 28px;
  overflow: hidden;
}

.preview-sign {
  max-width: 88%;
  color: var(--neon-color, var(--yellow));
  font-size: 72px;
  font-weight: 900;
  text-align: center;
  overflow-wrap: anywhere;
  text-shadow: 0 0 8px currentColor, 0 0 22px currentColor, 0 0 52px currentColor;
}

.price-panel {
  min-height: 90px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.price-panel span,
.price-panel small {
  display: block;
  color: var(--muted);
}

.price-panel strong {
  display: block;
  margin: 2px 0;
  font-size: 32px;
}

.business-band {
  width: min(1220px, calc(100% - 32px));
  margin: 96px auto 0;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  border-radius: var(--radius);
  color: var(--ink);
  background: linear-gradient(110deg, var(--yellow), #f0c04b 48%, var(--cyan));
}

.business-band .eyebrow,
.cta-band .eyebrow {
  color: #15393d;
}

.business-band p,
.cta-band p {
  color: rgba(17, 19, 24, .78);
  font-weight: 800;
}

.business-cards {
  display: grid;
  gap: 10px;
}

.business-cards article {
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(17, 19, 24, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .28);
}

.business-cards strong,
.business-cards span {
  display: block;
}

.business-cards span {
  color: rgba(17, 19, 24, .74);
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 6px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 900;
}

.steps h3 {
  margin-bottom: 8px;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-band {
  width: min(1220px, calc(100% - 32px));
  margin: 96px auto 0;
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  border-radius: var(--radius);
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .26), transparent 35%),
    linear-gradient(90deg, var(--yellow), #f5b948 50%, var(--cyan));
}

.cta-band p {
  margin-bottom: 0;
  max-width: 700px;
}

.footer {
  width: min(1220px, calc(100% - 32px));
  margin: 78px auto 0;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.footer div {
  display: grid;
  gap: 2px;
  text-align: right;
}

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

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  justify-content: flex-end;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.cart-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  width: min(480px, 100%);
  height: 100%;
  border-radius: 0;
  overflow-y: auto;
  background: #0d1017;
}

.cart-head {
  min-height: 74px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.cart-head span,
.cart-head strong {
  display: block;
}

.cart-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.cart-items {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.cart-empty {
  padding: 22px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
}

.cart-item h4 {
  margin: 0 0 4px;
  font-size: 15px;
}

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

.cart-item strong {
  white-space: nowrap;
}

.cart-remove {
  align-self: end;
  border: 0;
  color: #ff9d9d;
  background: transparent;
  font-weight: 900;
}

.checkout-form {
  padding: 16px;
  border-top: 1px solid var(--line);
}

.checkout-total {
  margin-bottom: 16px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--yellow);
  font-weight: 900;
}

.checkout-message {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.checkout-message.is-error {
  color: var(--danger);
}

.checkout-message.is-success {
  color: var(--green);
}

.product-modal {
  width: min(920px, calc(100% - 28px));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  color: var(--text);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-modal::backdrop {
  background: rgba(0, 0, 0, .68);
}

.modal-shell {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 0;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.modal-visual {
  min-height: 430px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0)),
    var(--visual-bg, #141820);
}

.modal-copy {
  padding: 34px;
}

.modal-copy h2 {
  margin: 16px 0 12px;
  font-size: 34px;
}

.modal-copy p {
  color: var(--muted);
}

.spec-list {
  display: grid;
  gap: 8px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #dbe3ef;
  background: rgba(255, 255, 255, .05);
}

.modal-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.modal-price-row strong {
  font-size: 28px;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 54px;
  }

  .hero-inner,
  .designer-section,
  .builder.compact,
  .business-band,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: center;
  }

  .hero-offer {
    max-width: 460px;
  }

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

  .shop-toolbar {
    position: static;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav {
    min-height: 66px;
    gap: 10px;
  }

  .brand img {
    width: 158px;
  }

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

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 16px;
    background: rgba(7, 8, 13, .98);
    border-bottom: 1px solid var(--line);
  }

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

  .nav-links a {
    padding: 14px 0;
  }

  .cart-button span {
    display: none;
  }

  .hero-shop,
  .hero-inner {
    min-height: 710px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(7, 8, 13, .68), rgba(7, 8, 13, .96) 58%, var(--bg));
  }

  .hero-inner {
    padding-top: 210px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-text {
    font-size: 17px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .section-title h2,
  .designer-copy h2,
  .business-band h2,
  .cta-band h2 {
    font-size: 34px;
  }

  .designer-section {
    padding: 24px;
  }

  .preview-stage {
    min-height: 300px;
  }

  .preview-sign {
    font-size: 56px;
  }

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

  .modal-visual {
    min-height: 270px;
  }

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

  .footer div {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .notice {
    justify-content: flex-start;
  }

  .hero-shop,
  .hero-inner {
    min-height: 680px;
  }

  .hero-inner {
    padding-top: 180px;
  }

  h1 {
    font-size: 35px;
  }

  .hero-actions,
  .contact-actions,
  .split,
  .product-grid.rich,
  .steps,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .shop-section,
  .process-section {
    padding-top: 72px;
  }

  .category-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

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

  .designer-section,
  .business-band,
  .cta-band {
    margin-top: 72px;
    padding: 22px;
  }

  .product-foot,
  .modal-price-row {
    align-items: stretch;
    flex-direction: column;
  }

  .modal-copy {
    padding: 24px;
  }
}
