:root {
  --ink: #17342f;
  --ink-2: #284943;
  --muted: #6f7f7b;
  --line: #dce4e1;
  --surface: #f3f6f4;
  --paper: #fff;
  --accent: #df8d3e;
  --accent-dark: #bd6d26;
  --sage: #dbe6d9;
  --shadow: 0 18px 50px rgba(25, 56, 49, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #f7f8f6;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.hidden { display: none !important; }

.site-header {
  height: 74px;
  padding: 0 clamp(20px, 5vw, 74px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}
.brand { display: flex; gap: 11px; align-items: center; color: var(--ink); text-decoration: none; }
.brand > span:last-child { display: flex; flex-direction: column; line-height: .9; letter-spacing: .12em; }
.brand strong { font-size: 16px; }
.brand small { font-size: 10px; margin-top: 5px; letter-spacing: .28em; }
.brand-mark { width: 35px; height: 38px; display: flex; align-items: flex-end; gap: 3px; }
.brand-mark i { display: block; width: 7px; border-radius: 1px; background: var(--ink); transform: skewY(-28deg); }
.brand-mark i:nth-child(1) { height: 25px; }
.brand-mark i:nth-child(2) { height: 34px; }
.brand-mark i:nth-child(3) { height: 20px; background: var(--accent); }
.header-nav { display: flex; align-items: center; height: 100%; gap: 25px; }
.nav-link {
  height: 100%; border: 0; background: none; cursor: pointer; padding: 0 5px;
  text-transform: uppercase; letter-spacing: .13em; font-size: 11px; font-weight: 800;
  position: relative;
}
.nav-anchor{display:flex;align-items:center;text-decoration:none}
.nav-link.active::after { content: ""; height: 3px; background: var(--accent); left: 0; right: 0; bottom: 0; position: absolute; }
.icon-button { border: 0; background: var(--surface); border-radius: 50%; width: 38px; height: 38px; padding: 10px; cursor: pointer; }
.icon-button svg { fill: var(--ink); width: 100%; height: 100%; }

main { min-height: calc(100vh - 74px); }
.hero {
  max-width: 1370px;
  margin: 0 auto;
  padding: 48px 34px 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
.eyebrow { color: var(--accent-dark); letter-spacing: .22em; font-size: 10px; font-weight: 900; }
.hero h1, .admin-header h1 {
  font-family: Georgia, serif; font-size: clamp(34px, 4vw, 55px); line-height: 1.03;
  letter-spacing: -.03em; margin: 10px 0 13px; font-weight: 500;
}
.hero h1 em { color: var(--accent-dark); font-style: italic; font-weight: 400; }
.hero p { margin: 0; color: var(--muted); font-size: 15px; max-width: 620px; }
.project-status {
  min-width: 300px; display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 12px; background: white; border: 1px solid var(--line); padding: 16px 18px; border-radius: 3px;
}
.status-dot { width: 9px; height: 9px; background: #5c9a68; border-radius: 50%; box-shadow: 0 0 0 5px #e9f1ea; }
.project-status div { display: flex; flex-direction: column; }
.project-status small { color: var(--muted); font-size: 8px; letter-spacing: .14em; font-weight: 800; }
.project-status strong { margin-top: 3px; font-size: 13px; }
.text-button { background: none; border: 0; color: var(--accent-dark); font-size: 11px; font-weight: 700; cursor: pointer; }

.stepper {
  display: flex; align-items: center; max-width: 1300px; margin: 0 auto 26px; padding: 0 34px;
}
.step { display: flex; align-items: center; gap: 10px; border: 0; background: none; padding: 0; cursor: pointer; opacity: .48; }
.step.active, .step.done { opacity: 1; }
.step b {
  display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid #aab9b4;
  border-radius: 50%; font-family: Georgia, serif; font-weight: 400;
}
.step.active b { background: var(--ink); color: white; border-color: var(--ink); }
.step.done b { background: var(--sage); border-color: var(--sage); font-size: 0; }
.step.done b::after { content: "✓"; font: 700 13px Inter, sans-serif; }
.step span { display: flex; flex-direction: column; text-align: left; white-space: nowrap; font-size: 12px; font-weight: 750; }
.step small { font-size: 7px; letter-spacing: .13em; color: var(--muted); margin-bottom: 3px; }
.step-line { flex: 1; height: 1px; background: var(--line); margin: 0 18px; }

.workspace {
  max-width: 1370px; min-height: 650px; margin: 0 auto; display: grid; grid-template-columns: 390px 1fr;
  background: white; box-shadow: var(--shadow); border: 1px solid var(--line);
}
.config-panel { display: flex; flex-direction: column; border-right: 1px solid var(--line); min-width: 0; }
.panel-section { padding: 32px 30px 18px; flex: 1; overflow: auto; max-height: 570px; }
.section-heading { display: flex; justify-content: space-between; align-items: center; }
.section-heading > div { display: flex; align-items: center; gap: 13px; }
.number { color: var(--accent-dark); font: italic 19px Georgia, serif; }
.section-heading h2 { margin: 0; font: 500 26px Georgia, serif; }
.help-button { border: 1px solid var(--line); width: 26px; height: 26px; background: white; border-radius: 50%; color: var(--muted); cursor: help; }
.section-intro { color: var(--muted); font-size: 12px; line-height: 1.55; margin: 17px 0 21px; }
.segment-list { display: grid; gap: 8px; }
.segment-row {
  display: grid; grid-template-columns: 29px 1fr 25px; align-items: center; gap: 10px;
  border: 1px solid var(--line); padding: 11px 10px; background: #fbfcfb;
}
.segment-row.active { border-color: var(--ink); box-shadow: inset 3px 0 var(--accent); }
.segment-id { display: grid; place-items: center; background: var(--ink); color: white; border-radius: 50%; width: 25px; height: 25px; font-size: 10px; font-weight: 800; }
.segment-fields { display: grid; grid-template-columns: 1fr 90px; gap: 8px; align-items: center; }
.segment-fields span { font-size: 11px; font-weight: 750; }
.unit-input { display: flex; align-items: center; border: 1px solid var(--line); background: white; padding-right: 7px; }
.unit-input input { width: 100%; min-width: 0; border: 0; padding: 6px; font-weight: 750; outline: none; }
.unit-input small { color: var(--muted); font-size: 10px; }
.delete-segment, .delete-gate { border: 0; background: none; color: #99a6a2; font-size: 18px; cursor: pointer; }
.outline-button {
  border: 1px dashed #9dafaa; background: #fafcfb; color: var(--ink); padding: 12px;
  font-size: 11px; font-weight: 800; cursor: pointer; margin-top: 10px;
}
.full { width: 100%; }
.inline-stats { margin-top: 18px; border-top: 1px solid var(--line); padding-top: 15px; display: flex; justify-content: space-between; font-size: 12px; }
.inline-stats span { color: var(--muted); }
.inline-stats strong { font: 500 18px Georgia, serif; }

.panel-actions { border-top: 1px solid var(--line); padding: 17px 23px; display: flex; justify-content: space-between; gap: 10px; }
.primary-button, .back-button, .accent-button {
  border: 0; cursor: pointer; font-size: 11px; font-weight: 850; letter-spacing: .03em; padding: 14px 18px;
}
.primary-button { background: var(--ink); color: white; }
.primary-button span { margin-left: 13px; }
.back-button { background: transparent; color: var(--muted); padding-left: 5px; }
.back-button:disabled { opacity: .3; cursor: default; }

.system-cards { display: grid; gap: 9px; }
.system-card {
  border: 1px solid var(--line); background: white; padding: 12px; cursor: pointer;
  display: grid; grid-template-columns: 70px 1fr auto; gap: 12px; align-items: center; text-align: left;
}
.system-card.has-image { grid-template-columns: 70px 1fr auto; }
.system-thumb.image-thumb { padding: 0; background-size: cover; background-position: center; }
.system-thumb.image-thumb i { display: none; }
.system-card.active { border-color: var(--ink); box-shadow: inset 3px 0 var(--accent); }
.system-thumb { height: 44px; background: #e7ebe8; display: flex; gap: 3px; padding: 5px; overflow: hidden; }
.system-thumb i { flex: 1; background: var(--thumb, #5b6864); border-radius: 1px; }
.system-card:nth-child(2) .system-thumb i { margin: 4px 0; }
.system-card:nth-child(3) .system-thumb { align-items: end; }
.system-card:nth-child(3) .system-thumb i:nth-child(even) { height: 70%; }
.system-card div:nth-child(2) { display: flex; flex-direction: column; gap: 3px; }
.system-card strong { font-size: 12px; }
.system-card small { color: var(--muted); font-size: 9px; }
.system-price { font-size: 9px; font-weight: 800; }
.field-label { display: block; margin: 20px 0 10px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.swatches { display: flex; gap: 9px; margin-bottom: 18px; }
.swatch { width: 30px; height: 30px; border-radius: 50%; border: 4px solid white; box-shadow: 0 0 0 1px var(--line); cursor: pointer; }
.swatch.active { box-shadow: 0 0 0 2px var(--ink); }
.select-label { display: flex; flex-direction: column; gap: 7px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; margin: 12px 0; }
.select-label select, .select-label input {
  width: 100%; padding: 11px 12px; border: 1px solid var(--line); background: white; color: var(--ink); outline: none;
  font-weight: 600; text-transform: none; letter-spacing: normal;
}
.check-row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 8px; padding: 13px 0;
  border-bottom: 1px solid var(--line); font-size: 11px; cursor: pointer;
}
.check-row input { accent-color: var(--ink); }
.check-row strong { color: var(--muted); font-size: 9px; }
.gate-list { display: grid; gap: 8px; margin-top: 18px; }
.gate-item { padding: 12px; background: var(--surface); display: grid; grid-template-columns: 1fr auto; gap: 4px; }
.gate-item strong { font-size: 11px; }
.gate-item span { color: var(--muted); font-size: 9px; }
.gate-item .delete-gate { grid-row: 1 / 3; grid-column: 2; }
.summary-mini { margin-top: 18px; background: var(--surface); padding: 15px; font-size: 11px; display: grid; gap: 8px; }
.summary-mini div { display: flex; justify-content: space-between; }
.component-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin: 10px 0 18px; }
.component-card { border: 1px solid var(--line); background: white; padding: 0; overflow: hidden; cursor: default; }
.component-card img, .component-placeholder { display: block; width: 100%; height: 58px; object-fit: cover; background: #e7ece9; }
.component-placeholder { position: relative; }
.component-placeholder::after { content: ""; position: absolute; inset: 13px 9px; border: 3px solid var(--ink); opacity: .55; }
.component-card span { display: block; padding: 6px 3px; text-align: center; font-size: 7px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }

.visual-panel { display: grid; grid-template-rows: 58px 1fr 74px; min-width: 0; background: #eef2ef; }
.visual-toolbar { background: white; display: flex; align-items: center; justify-content: space-between; padding: 0 23px; border-bottom: 1px solid var(--line); }
.view-tabs { display: flex; height: 100%; gap: 23px; }
.view-tab { border: 0; background: transparent; cursor: pointer; font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .09em; position: relative; }
.view-tab.active::after { content: ""; height: 3px; position: absolute; bottom: 0; left: 0; right: 0; background: var(--accent); }
.tool-actions { display: flex; gap: 8px; }
.tool-actions button { border: 1px solid var(--line); background: white; height: 31px; padding: 0 10px; font-size: 10px; cursor: pointer; }
.canvas-wrap { position: relative; min-height: 515px; overflow: hidden; background: radial-gradient(circle at 50% 44%, #fafbf9 0, #edf2ee 62%, #e2e9e5 100%); }
#plannerCanvas { width: 100%; height: 100%; display: block; touch-action: none; cursor: grab; }
#plannerCanvas:active { cursor: grabbing; }
.canvas-badge { position: absolute; top: 20px; left: 22px; background: rgba(255,255,255,.88); padding: 8px 10px; font-size: 8px; letter-spacing: .13em; font-weight: 900; box-shadow: 0 5px 15px rgba(0,0,0,.05); }
.canvas-badge span { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #67a372; margin-right: 5px; }
.canvas-hint { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); background: rgba(23,52,47,.9); color: white; padding: 8px 13px; font-size: 8px; letter-spacing: .08em; white-space: nowrap; }
.canvas-hint span { font-size: 12px; margin-right: 5px; }
.orientation { position: absolute; right: 23px; bottom: 20px; width: 42px; height: 42px; border: 1px solid rgba(23,52,47,.25); border-radius: 50%; display: grid; place-items: center; }
.orientation i { position: absolute; top: -15px; font: 700 9px Inter; color: var(--ink); }
.orientation b { width: 2px; height: 22px; background: linear-gradient(var(--accent) 50%, var(--ink) 50%); transform: rotate(20deg); }
.visual-footer { display: grid; grid-template-columns: repeat(4, 1fr); background: white; border-top: 1px solid var(--line); }
.visual-footer > div { padding: 17px 20px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 5px; }
.visual-footer small { color: var(--muted); font-size: 7px; letter-spacing: .12em; font-weight: 800; }
.visual-footer strong { font: 500 17px Georgia, serif; }

.estimate-section {
  max-width: 1370px; margin: 35px auto 70px; background: var(--ink); color: white; display: grid;
  grid-template-columns: 1.5fr .8fr; padding: 45px 52px; gap: 65px; box-shadow: var(--shadow);
}
.estimate-copy .eyebrow { color: #e6ae77; }
.estimate-copy h2 { font: 500 34px Georgia, serif; margin: 9px 0 8px; }
.estimate-copy > p { color: #b8c8c4; font-size: 12px; margin: 0 0 26px; }
.estimate-lines { display: grid; gap: 11px; max-width: 560px; }
.estimate-lines div { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: 10px; font-size: 12px; }
.estimate-lines span { color: #c7d2cf; }
.estimate-card { background: white; color: var(--ink); padding: 27px; display: flex; flex-direction: column; align-items: stretch; text-align: center; }
.estimate-card > small { letter-spacing: .14em; color: var(--muted); font-size: 8px; font-weight: 900; }
.estimate-card > strong { font: 500 27px Georgia, serif; margin: 11px 0 3px; }
.estimate-card > span { color: var(--muted); font-size: 9px; margin-bottom: 19px; }
.accent-button { background: var(--accent); color: #1d302c; padding: 15px 19px; }
.accent-button b { margin-left: 15px; }
.share-button { margin-top: 9px; background: none; border: 0; color: var(--ink); font-size: 10px; font-weight: 800; cursor: pointer; padding: 8px; }

.admin-view { max-width: 1370px; margin: 0 auto; padding: 50px 34px 80px; }
.admin-header { display: flex; justify-content: space-between; align-items: flex-end; }
.admin-header h1 { font-size: 42px; margin-bottom: 0; }
.admin-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 35px 0 24px; }
.admin-stats article { background: white; border: 1px solid var(--line); padding: 22px; display: flex; flex-direction: column; }
.admin-stats span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.admin-stats strong { font: 500 32px Georgia, serif; margin: 8px 0; }
.admin-stats small { color: var(--muted); font-size: 10px; }
.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.admin-card { background: white; border: 1px solid var(--line); min-height: 330px; }
.pricing-card { min-height: 0; margin-bottom: 20px; }
.admin-pricing-form { padding: 20px 22px 22px; }
.admin-pricing-note { margin: 4px 0 0; color: var(--muted); font-size: 10px; line-height: 1.55; text-transform: none; letter-spacing: 0; }
.admin-pricing-actions { display: flex; justify-content: flex-end; gap: 10px; }
.admin-pricing-actions button { min-width: 150px; }
.admin-card-head { padding: 20px 22px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.admin-card-head h2 { margin: 0; font: 500 21px Georgia, serif; }
.admin-card-head span { color: var(--muted); font-size: 9px; }
.admin-product, .lead-row { display: grid; grid-template-columns: 40px 1fr auto; gap: 12px; align-items: center; padding: 16px 22px; border-bottom: 1px solid var(--line); }
.product-color { width: 38px; height: 38px; background: var(--color); }
.admin-product div:nth-child(2), .lead-row div { display: flex; flex-direction: column; gap: 4px; }
.admin-product strong, .lead-row strong { font-size: 11px; }
.admin-product small, .lead-row small { color: var(--muted); font-size: 9px; }
.admin-product > span { font-size: 11px; font-weight: 800; }
.admin-product { cursor: pointer; }
.admin-product:hover { background: #f8faf8; }
.admin-product .product-color.image { background-size: cover; background-position: center; }
.lead-row { grid-template-columns: 34px 1fr auto; }
.lead-avatar { background: var(--sage); border-radius: 50%; width: 34px; height: 34px; display: grid; place-items: center; font-weight: 800; }
.lead-row > span { color: var(--accent-dark); font-size: 9px; font-weight: 800; }
.empty-state { min-height: 250px; display: flex; align-items: center; justify-content: center; flex-direction: column; color: var(--muted); gap: 8px; text-align: center; }
.empty-state div { font-size: 28px; }
.empty-state strong { color: var(--ink); font-size: 12px; }
.empty-state span { font-size: 10px; }

dialog { border: 0; padding: 0; width: min(560px, calc(100vw - 30px)); color: var(--ink); box-shadow: 0 25px 80px rgba(0,0,0,.3); }
dialog::backdrop { background: rgba(15,35,31,.72); backdrop-filter: blur(4px); }
#quoteForm { padding: 38px; position: relative; }
#quoteForm h2 { font: 500 29px Georgia, serif; margin: 10px 0 5px; }
#quoteForm > p { color: var(--muted); margin: 0 0 22px; font-size: 11px; }
.dialog-close { position: absolute; right: 16px; top: 14px; border: 0; background: none; font-size: 25px; color: var(--muted); cursor: pointer; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-grid label { display: flex; flex-direction: column; gap: 6px; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.form-grid .wide { grid-column: 1 / -1; }
.form-grid input, .form-grid textarea { border: 1px solid var(--line); padding: 11px; outline: none; resize: vertical; }
.form-grid input:focus, .form-grid textarea:focus { border-color: var(--ink); }
.consent { display: flex; gap: 8px; align-items: center; font-size: 9px; margin: 14px 0; color: var(--muted); }
.consent input { accent-color: var(--ink); }
.dialog-summary { background: var(--surface); padding: 14px; margin: 15px 0; display: flex; justify-content: space-between; font-size: 11px; }
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 30px); opacity: 0;
  background: var(--ink); color: white; padding: 13px 19px; font-size: 11px; z-index: 100;
  transition: .25s ease; pointer-events: none; box-shadow: var(--shadow);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.site-footer { background: #102923; color: white; padding: 26px clamp(20px, 5vw, 74px); }
.site-footer div { max-width: 1370px; margin: auto; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px 18px; font-size: 11px; }
.site-footer span { color: #b9c9c5; }
.site-footer a, .email-fallback { color: #efaa67; font-weight: 800; text-decoration: none; }
.email-fallback { display: block; margin-top: 12px; text-align: center; font-size: 10px; }

.product-dialog { width: min(760px, calc(100vw - 30px)); max-height: 92vh; }
#productForm { padding: 35px; position: relative; }
#productForm h2 { font: 500 29px Georgia, serif; margin: 9px 0 22px; }
.product-form-grid select { border: 1px solid var(--line); padding: 11px; background: white; }
.asset-editor { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.asset-editor h3 { margin: 0 0 5px; font: 500 20px Georgia, serif; }
.asset-editor > p { margin: 0 0 14px; color: var(--muted); font-size: 10px; }
#assetFields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.asset-field { border: 1px solid var(--line); padding: 10px; display: grid; grid-template-columns: 74px 1fr; gap: 10px; align-items: center; }
.asset-preview { width: 74px; height: 64px; background: var(--surface); object-fit: cover; }
.asset-field > div { min-width: 0; }
.asset-field strong { display: block; font-size: 10px; margin-bottom: 6px; }
.asset-field input[type="url"] { width: 100%; border: 1px solid var(--line); padding: 7px; font-size: 9px; }
.asset-upload { display: inline-block; margin-top: 6px; background: var(--surface); padding: 6px 8px; font-size: 8px; font-weight: 800; cursor: pointer; }
.asset-upload input { display: none; }
.product-active { margin-top: 18px; }
.product-form-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 20px; }
.danger-button { border: 1px solid #d9aaa3; background: white; color: #9b3d31; padding: 12px; font-size: 10px; font-weight: 800; cursor: pointer; }

@media (max-width: 900px) {
  .hero { align-items: flex-start; flex-direction: column; }
  .project-status { width: 100%; }
  .step span { display: none; }
  .step-line { margin: 0 10px; }
  .workspace { grid-template-columns: 1fr; margin: 0 14px; }
  .config-panel { border-right: 0; }
  .panel-section { max-height: none; }
  .visual-panel { min-height: 590px; }
  .canvas-wrap { min-height: 460px; }
  .estimate-section { margin: 24px 14px 50px; grid-template-columns: 1fr; padding: 35px 25px; gap: 30px; }
  .admin-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .site-header { padding: 0 17px; height: 64px; }
  .header-nav { gap: 10px; }
  .nav-link { font-size: 9px; }
  .hero { padding: 32px 19px 24px; }
  .hero h1 { font-size: 38px; }
  .stepper { padding: 0 25px; }
  .workspace { margin: 0; border-left: 0; border-right: 0; }
  .panel-section { padding: 28px 20px 16px; }
  .visual-panel { grid-template-rows: 53px 1fr auto; }
  .canvas-wrap { min-height: 390px; }
  .visual-footer { grid-template-columns: repeat(2, 1fr); }
  .visual-footer > div:nth-child(2) { border-right: 0; }
  .visual-footer > div { padding: 13px 18px; border-bottom: 1px solid var(--line); }
  .canvas-hint { font-size: 7px; }
  .estimate-section { margin-left: 0; margin-right: 0; }
  .admin-view { padding: 35px 17px 60px; }
  .admin-header { align-items: flex-start; flex-direction: column; gap: 18px; }
  .admin-stats { grid-template-columns: 1fr; }
  .admin-header h1 { font-size: 35px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .wide { grid-column: auto; }
  .admin-pricing-actions { flex-direction: column-reverse; }
  .admin-pricing-actions button { width: 100%; }
  #quoteForm { padding: 31px 22px; }
  #productForm { padding: 30px 18px; }
  #assetFields { grid-template-columns: 1fr; }
  .component-gallery { grid-template-columns: repeat(2, 1fr); }
}
