/* Artwork consultation ?? matches apparels customize cards */
.acw-root {
  --acw-brand: var(--ci-brand, #a52422);
  --acw-brand-hover: var(--ci-brand-hover, #8e1f1d);
  --acw-brand-light: var(--ci-brand-light, rgba(165, 36, 34, 0.08));
  --acw-ink: var(--ci-text, #111827);
  --acw-muted: var(--ci-text-muted, #6b7280);
  --acw-surface: var(--ci-card-bg, #ffffff);
  --acw-page: var(--ci-page-bg, #f9fafb);
  --acw-line: var(--ci-border, #e5e7eb);
  --acw-shadow: var(--ci-card-shadow, 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.05));
  --acw-shadow-hover: var(--ci-card-shadow-hover, 0 8px 24px rgba(0, 0, 0, 0.08));
  color: var(--acw-ink);
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.acw-root *,
.acw-root *::before,
.acw-root *::after { box-sizing: border-box; }

.acw-page {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.acw-page-header { margin: 0; }

.acw-page-title {
  margin: 0 0 0.35rem;
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--acw-ink);
}

.acw-page-subtitle {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--acw-muted);
  max-width: 42rem;
}

.acw-layout,
.acw-main {
  width: 100%;
  min-width: 0;
}

.acw-layout--split {
  display: block;
  width: 100%;
}

.acw-aside {
  display: none !important;
}

.acw-summary-card {
  padding: 1.35rem 1.35rem 1.25rem;
  background: linear-gradient(165deg, #ffffff 0%, #faf8f7 100%);
  border-color: rgba(165, 36, 34, 0.12);
}

.acw-summary__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--acw-ink);
}

.acw-summary__lead {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--acw-muted);
}

.acw-checklist {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.acw-checklist__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--acw-muted);
}

.acw-checklist__mark {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  border: 1.5px solid var(--acw-line);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: transparent;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.acw-checklist__item.is-done {
  color: var(--acw-ink);
}

.acw-checklist__item.is-done .acw-checklist__mark {
  background: var(--acw-brand);
  border-color: var(--acw-brand);
  color: #fff;
}

.acw-summary__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 0 0 1rem;
  padding: 0.85rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--acw-line);
}

.acw-summary__meta > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.acw-summary__meta span {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--acw-muted);
}

.acw-summary__meta strong {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--acw-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.acw-summary__status {
  margin: 0 0 0.85rem;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fde68a;
}

.acw-summary__status.is-ready {
  color: #166534;
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.acw-summary__footnote {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--acw-muted);
  text-align: center;
}

.acw-summary-card #acw-submit {
  margin-top: 0.15rem;
}

.acw-page-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.acw-section {
  scroll-margin-top: 1.25rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.acw-section[hidden] {
  display: none !important;
}

.acw-section:hover {
  /* keep calm on long one-page form */
  box-shadow: var(--acw-shadow);
}

/* Section cards ?? same language as apparels .card.p-8 */
.acw-card {
  background: var(--acw-surface);
  border: 1px solid var(--acw-line);
  border-radius: 14px;
  box-shadow: var(--acw-shadow);
  padding: 2rem;
  width: 100%;
}

.acw-card__head { margin-bottom: 1.5rem; }

.acw-card__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.acw-card__title {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--acw-ink);
}

.acw-section-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  flex-shrink: 0;
}

.acw-section-badge--pick { background: #eff6ff; color: #1d4ed8; }
.acw-section-badge--qty { background: #f5f3ff; color: #6d28d9; }
.acw-section-badge--detail { background: #fdf2f8; color: #be185d; }
.acw-section-badge--toggle { background: #f0fdf4; color: #15803d; }
.acw-section-badge--upload { background: #fff7ed; color: #c2410c; }
.acw-section-badge--write { background: #f8fafc; color: #475569; }
.acw-section-badge--money { background: #ecfdf5; color: #047857; }
.acw-section-badge--time { background: #fef3c7; color: #b45309; }
.acw-section-badge--contact { background: var(--acw-brand-light); color: var(--acw-brand); }

.acw-section--pick { border-left: 3px solid #3b82f6; }
.acw-section--qty { border-left: 3px solid #8b5cf6; }
.acw-section--detail { border-left: 3px solid #ec4899; }
.acw-section--toggle { border-left: 3px solid #22c55e; }
.acw-section--upload { border-left: 3px solid #f97316; }
.acw-section--write { border-left: 3px solid #94a3b8; }
.acw-section--money { border-left: 3px solid #10b981; }
.acw-section--time { border-left: 3px solid #f59e0b; }
.acw-section--contact { border-left: 3px solid var(--acw-brand); }

.acw-card__icon {
  display: inline-flex;
  color: var(--acw-brand);
  flex-shrink: 0;
}

.acw-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.acw-card__lead {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--acw-muted);
}

.acw-card__body { display: block; }

.acw-block { margin-bottom: 1.5rem; }
.acw-block:last-child { margin-bottom: 0; }

.acw-block__label {
  display: block;
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--acw-ink);
}

.acw-block__hint {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: var(--acw-muted);
}

.acw-artworks-stack { margin: 1.5rem 0; }

/* Choice tiles ?? apparels option-tile feel */
.acw-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .acw-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .acw-grid--compact { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .acw-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.acw-grid--prefs {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.acw-choice {
  appearance: none;
  border: 1px solid var(--acw-line);
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.85rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--acw-ink);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  min-height: 3rem;
}

.acw-choice__label { display: block; }
.acw-choice__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.acw-choice__hint {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--acw-muted);
  line-height: 1.35;
}
.acw-choice__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: var(--acw-muted);
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.acw-choice__icon svg {
  width: 1.05rem;
  height: 1.05rem;
}
.acw-choice--tile {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  min-height: 4.5rem;
  padding: 0.95rem;
}
.acw-choice--tile.is-selected {
  box-shadow: 0 6px 18px rgba(165, 36, 34, 0.12);
  transform: translateY(-1px);
}
.acw-choice--tile.is-selected .acw-choice__icon {
  background: var(--acw-brand);
  color: #fff;
}
.acw-choice--tile.is-selected .acw-choice__hint {
  color: rgba(165, 36, 34, 0.75);
}

.acw-choice__swatch {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.acw-choice--pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.acw-choice__yn-icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  background: #f3f4f6;
  color: var(--acw-muted);
}
.acw-choice--yn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-align: center;
  min-height: 2.75rem;
  border-radius: 999px;
  font-weight: 700;
}
.acw-grid--yn .acw-choice[data-choice="yes"].is-selected {
  background: #dcfce7;
  border-color: #16a34a;
  color: #166534;
}
.acw-grid--yn .acw-choice[data-choice="yes"].is-selected .acw-choice__yn-icon {
  background: #16a34a;
  color: #fff;
}
.acw-grid--yn .acw-choice[data-choice="no"].is-selected {
  background: #fee2e2;
  border-color: #dc2626;
  color: #991b1b;
}
.acw-grid--yn .acw-choice[data-choice="no"].is-selected .acw-choice__yn-icon {
  background: #dc2626;
  color: #fff;
}

.acw-choice__qty {
  font-size: 1.2rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.acw-grid--qty .acw-choice.is-selected {
  background: #6d28d9;
  border-color: #6d28d9;
  color: #fff;
  box-shadow: 0 6px 16px rgba(109, 40, 217, 0.22);
}

.acw-choice__budget-mark {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #059669;
  margin-bottom: 0.15rem;
}
.acw-choice--budget {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.1rem;
}
.acw-grid--budget .acw-choice.is-selected {
  background: #059669;
  border-color: #059669;
  color: #fff;
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.2);
}
.acw-grid--budget .acw-choice.is-selected .acw-choice__budget-mark {
  color: rgba(255, 255, 255, 0.85);
}

.acw-grid--priority .acw-choice--tile {
  min-height: 4rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.acw-grid--priority .acw-choice.is-selected .acw-choice__icon {
  color: #fff;
}
.acw-grid--priority .acw-choice[data-choice="standard"].is-selected {
  border-color: #64748b;
  background: #f1f5f9;
  color: #334155;
  box-shadow: none;
}
.acw-grid--priority .acw-choice[data-choice="standard"].is-selected .acw-choice__icon {
  background: #64748b;
}
.acw-grid--priority .acw-choice[data-choice="express"].is-selected {
  border-color: #d97706;
  background: #fffbeb;
  color: #92400e;
}
.acw-grid--priority .acw-choice[data-choice="express"].is-selected .acw-choice__icon {
  background: #d97706;
}
.acw-grid--priority .acw-choice[data-choice="urgent"].is-selected {
  border-color: var(--acw-brand);
  background: var(--acw-brand-light);
  color: var(--acw-brand);
}
.acw-grid--priority .acw-choice[data-choice="urgent"].is-selected .acw-choice__icon {
  background: var(--acw-brand);
}

.acw-grid--pills .acw-choice.is-selected {
  background: var(--acw-ink);
  border-color: var(--acw-ink);
  color: #fff;
}
.acw-grid--dual .acw-choice.is-selected {
  background: var(--acw-brand);
  border-color: var(--acw-brand);
  color: #fff;
}

.acw-grid--tiles {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .acw-grid--tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .acw-grid--tiles { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.acw-grid--yn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  max-width: 18rem;
}
.acw-grid--dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  max-width: 22rem;
}
.acw-grid--dual .acw-choice {
  text-align: center;
  justify-content: center;
  min-height: 2.85rem;
  font-weight: 700;
}

.acw-grid--qty {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 28rem;
}
@media (min-width: 640px) {
  .acw-grid--qty { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
.acw-grid--qty .acw-choice {
  text-align: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 800;
  min-height: 3.15rem;
  border-radius: 12px;
  font-variant-numeric: tabular-nums;
}
.acw-grid--qty .acw-choice[data-choice="custom"] {
  font-size: 0.8rem;
  font-weight: 700;
}

.acw-grid--budget {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .acw-grid--budget { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.acw-grid--budget .acw-choice {
  text-align: center;
  justify-content: center;
  font-variant-numeric: tabular-nums;
  background: #fff;
  min-height: 3.5rem;
}

.acw-grid--priority {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 34rem;
}
.acw-grid--priority .acw-choice {
  text-align: center;
  justify-content: center;
}

.acw-grid--pills {
  grid-template-columns: repeat(auto-fill, minmax(7.5rem, 1fr));
}
.acw-grid--pills .acw-choice {
  text-align: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 2.5rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.8125rem;
}

.acw-choice:hover {
  border-color: #d1d5db;
  background: #fafafa;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.acw-choice.is-selected {
  border-color: var(--acw-brand);
  background: var(--acw-brand-light);
  color: var(--acw-brand);
  box-shadow: inset 0 0 0 1px var(--acw-brand);
}

.acw-section.is-focus {
  border-color: rgba(165, 36, 34, 0.35);
  box-shadow: 0 0 0 3px rgba(165, 36, 34, 0.1), var(--acw-shadow-hover);
}

.acw-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
  padding: 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.acw-field:last-child { margin-bottom: 0; }

.acw-field label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--acw-ink);
  text-transform: none;
  letter-spacing: normal;
}

.acw-field__label-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.acw-field__glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 8px;
  flex-shrink: 0;
}

.acw-field__glyph svg {
  width: 0.95rem;
  height: 0.95rem;
}

.acw-field__glyph--pick { background: #eff6ff; color: #1d4ed8; }
.acw-field__glyph--qty { background: #f5f3ff; color: #6d28d9; }
.acw-field__glyph--type { background: #f8fafc; color: #475569; }
.acw-field__glyph--write { background: #fafafa; color: #64748b; }
.acw-field__glyph--date { background: #fffbeb; color: #b45309; }
.acw-field__glyph--upload { background: #fff7ed; color: #c2410c; }
.acw-field__glyph--toggle { background: #f0fdf4; color: #15803d; }
.acw-field__glyph--select { background: #eef2ff; color: #4338ca; }
.acw-field__glyph--money { background: #ecfdf5; color: #047857; }
.acw-field__glyph--time { background: #fef3c7; color: #b45309; }
.acw-field__glyph--color { background: #fdf2f8; color: #be185d; }
.acw-field__glyph--size { background: #f0f9ff; color: #0369a1; }

.acw-field__name {
  min-width: 0;
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--acw-ink);
}

.acw-field__kind {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
  flex-shrink: 0;
}

.acw-field__kind--pick { background: #eff6ff; color: #1d4ed8; }
.acw-field__kind--qty { background: #f5f3ff; color: #6d28d9; }
.acw-field__kind--type { background: #f1f5f9; color: #334155; }
.acw-field__kind--write { background: #f8fafc; color: #475569; }
.acw-field__kind--date { background: #fef3c7; color: #b45309; }
.acw-field__kind--upload { background: #fff7ed; color: #c2410c; }
.acw-field__kind--toggle { background: #f0fdf4; color: #15803d; }
.acw-field__kind--select { background: #eef2ff; color: #4338ca; }
.acw-field__kind--money { background: #ecfdf5; color: #047857; }
.acw-field__kind--time { background: #fef3c7; color: #b45309; }
.acw-field__kind--color { background: #fdf2f8; color: #be185d; }
.acw-field__kind--size { background: #ecfeff; color: #0e7490; }

/* Unique shells per interaction type */
.acw-field--choice,
.acw-field--pick,
.acw-field--toggle,
.acw-field--qty,
.acw-field--money,
.acw-field--time,
.acw-field--size,
.acw-field:has(> .acw-grid) {
  padding: 0.9rem;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.acw-field--toggle,
.acw-field:has(> .acw-grid--yn) {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.acw-field--qty,
.acw-field:has(> .acw-grid--qty) {
  background: #f5f3ff;
  border-color: #ddd6fe;
}

.acw-field--money,
.acw-field:has(> .acw-grid--budget) {
  background: #ecfdf5;
  border-color: #a7f3d0;
}

.acw-field--time,
.acw-field:has(> .acw-grid--priority) {
  background: #fffbeb;
  border-color: #fde68a;
}

.acw-field--pick:has(> .acw-grid--tiles),
.acw-field--choice:has(> .acw-grid--tiles),
.acw-field:has(> .acw-grid--tiles) {
  background: linear-gradient(165deg, #fff 0%, #faf8f7 100%);
  border-color: rgba(165, 36, 34, 0.16);
}

.acw-field--pick:has(> .acw-grid--pills),
.acw-field:has(> .acw-grid--pills) {
  background: #fff;
  border-color: #e2e8f0;
}

.acw-field--text,
.acw-field--type {
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--acw-line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.acw-field--area,
.acw-field--write {
  padding: 0.85rem;
  border-radius: 12px;
  background: #fafafa;
  border: 1px dashed #cbd5e1;
}

.acw-field--date {
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: #fffbeb;
  border: 1px solid #fde68a;
}

.acw-field--upload {
  padding: 0.85rem;
  border-radius: 12px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

.acw-field--select {
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
}

.acw-field--color {
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: #fdf2f8;
  border: 1px solid #fbcfe8;
}

.acw-input-affix {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--acw-line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.acw-input-affix__prefix {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  padding: 0 0.65rem;
  background: #f8fafc;
  border-right: 1px solid var(--acw-line);
  color: var(--acw-muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.acw-input-affix__prefix svg {
  width: 1rem;
  height: 1rem;
}

.acw-input-affix input {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.acw-contact-sheet {
  padding: 1.1rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #faf8f7 100%);
  border: 1px solid rgba(165, 36, 34, 0.14);
}

.acw-contact-sheet__lead {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: var(--acw-muted);
}

.acw-art-groups,
.acw-art-flow {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.acw-art-group,
.acw-art-block {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

.acw-art-group__title,
.acw-art-block__label {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--acw-muted);
}

.acw-art-block__hint,
.acw-art-group__hint {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--acw-muted);
  line-height: 1.45;
}

.acw-subcard--artwork {
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.acw-subcard {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin: 0 0 1.25rem;
}

.acw-subcard__head {
  margin-bottom: 0.85rem;
  padding: 0;
}

.acw-subcard__title {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.acw-subcard__title svg {
  width: 1rem;
  height: 1rem;
  color: var(--acw-brand);
}

.acw-field input,
.acw-field select,
.acw-field textarea,
.acw-select {
  border: 1px solid var(--acw-line);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  font: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: var(--acw-ink);
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}

.acw-field input:focus,
.acw-field select:focus,
.acw-field textarea:focus,
.acw-select:focus {
  outline: none;
  border-color: var(--acw-brand);
  box-shadow: 0 0 0 2px var(--acw-brand-light);
}

.acw-field input::placeholder,
.acw-field textarea::placeholder { color: #9ca3af; }

.acw-field textarea { min-height: 96px; resize: vertical; }

.acw-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .acw-row--2 { grid-template-columns: 1fr 1fr; }
  .acw-row--3 { grid-template-columns: 1fr 1fr 1fr; }
  .acw-row--4 { grid-template-columns: repeat(4, 1fr); }
}

.acw-subcard {
  border: 1px solid var(--acw-line);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: #fff;
}

.acw-wall { border-style: dashed; background: #fafafa; }

.acw-subcard__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1rem;
}

.acw-empty {
  padding: 1.75rem 1rem;
  text-align: center;
  border: 1.5px dashed var(--acw-line);
  border-radius: 12px;
  background: #fafafa;
  color: var(--acw-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.acw-btn {
  appearance: none;
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, border-color 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  font-family: inherit;
}

.acw-btn:active { transform: scale(0.98); }
.acw-btn--primary { background: var(--acw-brand); color: #fff; }
.acw-btn--primary:hover { background: var(--acw-brand-hover); }
.acw-btn--primary:disabled { opacity: 0.55; cursor: not-allowed; }
.acw-btn--block { width: 100%; }
.acw-btn--ghost {
  background: #fff;
  color: var(--acw-ink);
  border: 1px solid var(--acw-line);
}
.acw-btn--ghost:hover { background: #fafafa; }
.acw-btn--soft {
  background: var(--acw-brand-light);
  color: var(--acw-brand);
  border: 1px solid transparent;
  margin-top: 0.25rem;
}
.acw-btn--soft:hover { border-color: rgba(165, 36, 34, 0.2); }
.acw-btn--danger {
  background: transparent;
  color: var(--acw-brand);
  border: 1px solid rgba(165, 36, 34, 0.22);
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  border-radius: 999px;
}

.acw-checks { display: grid; gap: 0.75rem; }

.acw-checkrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--acw-line);
  border-radius: 0.75rem;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.acw-checkrow:has(input:checked) {
  border-color: var(--acw-brand);
  background: var(--acw-brand-light);
  color: var(--acw-brand);
}

.acw-checkrow input { accent-color: var(--acw-brand); width: 1.05rem; height: 1.05rem; }

.acw-checks--formats {
  grid-template-columns: repeat(auto-fill, minmax(7.5rem, 1fr));
}

.acw-field__hint {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--acw-muted, #64748b);
}

.acw-upload {
  border: 1.5px dashed #cbd5e1;
  border-radius: 14px;
  padding: 1.35rem 1rem;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
  margin-top: 0.35rem;
}

.acw-upload__glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: #eef2ff;
  color: #4f46e5;
  margin-bottom: 0.55rem;
}

.acw-upload__glyph svg {
  width: 1.15rem;
  height: 1.15rem;
}

.acw-upload:hover {
  border-color: rgba(165, 36, 34, 0.45);
  background: var(--acw-brand-light);
  transform: translateY(-1px);
}

.acw-upload--ref .acw-upload__glyph { background: #fff7ed; color: #c2410c; }
.acw-upload--theme .acw-upload__glyph { background: #f5f3ff; color: #7c3aed; }
.acw-upload--art .acw-upload__glyph { background: #fdf2f8; color: #be185d; }
.acw-upload--wall .acw-upload__glyph { background: #eff6ff; color: #1d4ed8; }
.acw-upload--room .acw-upload__glyph { background: #ecfdf5; color: #047857; }

.acw-upload strong { display: block; font-size: 0.92rem; font-weight: 700; }

.acw-upload-hint {
  color: var(--acw-muted);
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

.acw-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.acw-thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--acw-line);
}

.acw-thumb-wrap { position: relative; }

.acw-thumb-remove {
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  width: 1.25rem;
  height: 1.25rem;
  border: none;
  border-radius: 999px;
  background: var(--acw-brand);
  color: #fff;
  font-size: 0.85rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.acw-thumb-remove:hover { background: var(--acw-brand-hover); }

.acw-thumb-cat {
  display: block;
  font-size: 0.55rem;
  color: var(--acw-muted);
  text-align: center;
  margin-top: 2px;
  max-width: 64px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.acw-color-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.acw-color-row input[type="color"] {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--acw-line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
}

.acw-color-row input[type="text"] { flex: 1; }

.acw-error {
  color: var(--acw-brand);
  font-size: 0.88rem;
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: var(--acw-brand-light);
  border: 1px solid rgba(165, 36, 34, 0.18);
}

.acw-summary-card .acw-error {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  padding: 0.65rem 0.75rem;
}

.acw-footer-actions {
  display: flex;
  width: 100%;
  margin-top: 0.25rem;
}

.acw-footer-actions .acw-btn {
  width: 100%;
  min-height: 3.15rem;
  font-size: 1rem;
  border-radius: 12px;
}

.acw-success {
  text-align: center;
  max-width: 32rem;
  margin: 2rem auto;
}

.acw-success h2 {
  margin: 0 0 0.4rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.acw-token {
  display: inline-block;
  margin: 0.85rem 0;
  padding: 0.6rem 0.9rem;
  background: #f3f4f6;
  border-radius: 10px;
  font-family: ui-monospace, monospace;
  font-size: 0.8rem;
  word-break: break-all;
}

.acw-nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  justify-content: center;
}

/* Legacy step chrome (unused on single-page form; left harmless) */
.acw-progress,
.acw-step-nav { display: none; }

.acw-reveal {
  margin-top: 0.85rem;
  padding: 1rem;
  border-radius: 10px;
  background: var(--acw-brand-light);
  border: 1px solid rgba(165, 36, 34, 0.1);
  animation: acw-reveal-in 0.22s ease;
}

.acw-section.acw-reveal {
  margin-top: 0;
  padding: 2rem;
  background: var(--acw-surface);
  border: 1px solid var(--acw-line);
}

@keyframes acw-reveal-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.acw-error.acw-hidden,
.acw-hidden { display: none !important; }

/* Customer page chrome */
body.page-customize-artwork {
  background: var(--ci-page-bg, #f9fafb);
}

body.page-customize-artwork main {
  background: var(--ci-page-bg, #f9fafb);
  max-width: none;
  width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body.page-customize-artwork main::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body.page-customize-artwork #artwork-consultation-root {
  max-width: none;
  width: 100%;
}

body.page-customize-artwork .co-vertical-header h1 {
  color: var(--ci-text, #111827);
  font-weight: 700;
}

body.page-customize-artwork .no-page-subtitle {
  color: var(--ci-text-muted, #6b7280);
}

/* Public customize page */
body.ac-page {
  -ms-overflow-style: none;
  scrollbar-width: none;
  background: #f9fafb;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

body.ac-page::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body.ac-page .ac-shell {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 1.5rem 1rem 4rem;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  body.ac-page .ac-shell {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ???? Single-page form (legacy step chrome unused) ???? */
.acw-step { margin-bottom: 0; }
.acw-size-preview {
  margin: 0.35rem 0 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  background: var(--acw-brand-light);
  border: 1px solid rgba(165,36,34,0.15);
  color: var(--acw-brand);
  font-size: 0.9rem;
  font-weight: 600;
}

.acw-size-picker {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  max-width: 28rem;
}
@media (min-width: 480px) {
  .acw-size-picker {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .acw-size-picker {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 36rem;
  }
}

.acw-size-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  margin: 0;
  padding: 0.75rem 0.85rem;
  border: 1.5px solid var(--acw-line, #e2e8f0);
  border-radius: 12px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  font: inherit;
  color: inherit;
}
.acw-size-card:hover {
  border-color: rgba(165, 36, 34, 0.45);
  background: #fffaf9;
}
.acw-size-card:focus-visible {
  outline: 2px solid var(--acw-brand, #a52422);
  outline-offset: 2px;
}
.acw-size-card.is-selected {
  border-color: var(--acw-brand, #a52422);
  background: var(--acw-brand-light, #fdf2f2);
  box-shadow: 0 0 0 1px var(--acw-brand, #a52422);
}
.acw-size-card__frame {
  flex: 0 0 3.25rem;
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
}
.acw-size-card.is-selected .acw-size-card__frame {
  background: #fff;
  border-color: rgba(165, 36, 34, 0.35);
}
.acw-size-card__rect {
  display: block;
  border-radius: 3px;
  background: linear-gradient(145deg, #e2e8f0 0%, #f1f5f9 100%);
  border: 1.5px solid #94a3b8;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.65);
}
.acw-size-card.is-selected .acw-size-card__rect {
  background: linear-gradient(145deg, rgba(165,36,34,0.18) 0%, rgba(165,36,34,0.08) 100%);
  border-color: var(--acw-brand, #a52422);
}
.acw-size-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.acw-size-card__dims {
  font-size: 0.95rem;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  color: #0f172a;
}
.acw-size-card.is-selected .acw-size-card__dims {
  color: var(--acw-brand, #a52422);
}
.acw-size-card__unit {
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
}
.acw-size-card__check {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  border: 1.5px solid #cbd5e1;
  background: #fff;
}
.acw-size-card.is-selected .acw-size-card__check {
  border-color: var(--acw-brand, #a52422);
  background: var(--acw-brand, #a52422);
  box-shadow: inset 0 0 0 2px #fff;
}

.acw-review { display: flex; flex-direction: column; gap: 0.75rem; }
.acw-review__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--acw-line);
  border-radius: 12px;
  background: #fafafa;
}
@media (min-width: 640px) {
  .acw-review__row {
    grid-template-columns: 9rem 1fr auto;
    align-items: center;
    gap: 1rem;
  }
}
.acw-review__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--acw-muted);
}
.acw-review__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--acw-ink);
  line-height: 1.4;
  white-space: pre-wrap;
}
.acw-review__edit {
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  min-width: auto;
}

/* ???? Consultation hierarchy nest ???? */
.acw-nest--room {
  border-left: 3px solid rgba(165, 36, 34, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, #faf9f8 100%);
}

.acw-nest--wall {
  margin-left: 0.5rem;
  border-left: 3px solid rgba(165, 36, 34, 0.2);
  background: #fafafa;
}

.acw-nest--art {
  margin-left: 0.65rem;
  border-left: 3px solid rgba(165, 36, 34, 0.12);
  background: #fff;
  box-shadow: none;
}

.acw-nest-label {
  margin: 1rem 0 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--acw-muted);
}

@media (min-width: 768px) {
  .acw-nest--wall { margin-left: 0.85rem; padding-left: 1.35rem; }
  .acw-nest--art { margin-left: 1rem; }
}

/* ???? Recommendation panel ???? */
.acw-reco {
  margin: 1rem 0 1.25rem;
  padding: 1.15rem 1.2rem;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(165, 36, 34, 0.06) 0%, #fff8f5 55%, #ffffff 100%);
  border: 1px solid rgba(165, 36, 34, 0.18);
  animation: acw-reveal-in 0.28s ease;
}

.acw-reco__head { margin-bottom: 0.85rem; }

.acw-reco__title {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--acw-ink);
  letter-spacing: -0.01em;
}

.acw-reco__lead {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--acw-muted);
}

.acw-reco__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 0.75rem;
  margin-bottom: 0.85rem;
}

@media (min-width: 640px) {
  .acw-reco__grid { grid-template-columns: repeat(3, 1fr); }
}

.acw-reco__grid > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.acw-reco__grid span {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--acw-muted);
}

.acw-reco__grid strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--acw-ink);
  line-height: 1.35;
}

.acw-reco__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--acw-muted);
  margin-bottom: 0.4rem;
}

.acw-reco__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.acw-reco__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  background: #fff;
  border: 1px solid rgba(165, 36, 34, 0.2);
  color: var(--acw-brand);
}

.acw-reco__why {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--acw-muted);
}

.acw-choice--reco {
  border-color: rgba(165, 36, 34, 0.35);
  background: rgba(165, 36, 34, 0.04);
}

/* ???? Frame swatches ???? */
.acw-frame-swatches {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .acw-frame-swatches { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.acw-frame-swatch {
  appearance: none;
  border: 1px solid var(--acw-line);
  background: #fff;
  border-radius: 10px;
  padding: 0.55rem 0.45rem 0.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.acw-frame-swatch:hover {
  border-color: #d1d5db;
  background: #fafafa;
}

.acw-frame-swatch.is-selected {
  border-color: var(--acw-brand);
  background: var(--acw-brand-light);
  box-shadow: inset 0 0 0 1px var(--acw-brand);
}

.acw-frame-swatch__inner {
  width: 100%;
  max-width: 4.5rem;
  aspect-ratio: 4 / 5;
  background: #f3ebe3;
  box-sizing: border-box;
}

.acw-frame-swatch__label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--acw-ink);
  text-align: center;
  line-height: 1.2;
}

.acw-frame-swatch--black .acw-frame-swatch__inner {
  border: 6px solid #1a1a1a;
  box-shadow: inset 0 0 0 2px #f5f5f5;
}

.acw-frame-swatch--white .acw-frame-swatch__inner {
  border: 6px solid #f5f5f5;
  box-shadow: inset 0 0 0 1px #d4d4d4, 0 0 0 1px #e5e5e5;
}

.acw-frame-swatch--natural_wood .acw-frame-swatch__inner {
  border: 7px solid #c4a574;
  box-shadow: inset 0 0 0 2px #f8f1e7;
}

.acw-frame-swatch--walnut .acw-frame-swatch__inner {
  border: 7px solid #5c3d2e;
  box-shadow: inset 0 0 0 2px #f3ebe3;
}

.acw-frame-swatch--golden .acw-frame-swatch__inner {
  border: 6px solid #c9a227;
  box-shadow: inset 0 0 0 2px #fff8e7;
}

.acw-frame-swatch--floating_frame .acw-frame-swatch__inner {
  border: 5px solid #3d2914;
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px #3d2914;
}

.acw-frame-swatch--metal .acw-frame-swatch__inner {
  border: 5px solid #8a9199;
  background: linear-gradient(135deg, #e8ebef, #f3ebe3);
  box-shadow: inset 0 0 0 1px #c5cad0;
}

.acw-frame-swatch--custom .acw-frame-swatch__inner {
  border: 5px dashed #9ca3af;
  background: repeating-linear-gradient(
    -45deg,
    #f3ebe3,
    #f3ebe3 4px,
    #efe6dc 4px,
    #efe6dc 8px
  );
}

/* ???? Budget estimate strip ???? */
.acw-estimate {
  margin: 0 0 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(165, 36, 34, 0.14);
}

.acw-estimate--inline {
  margin-bottom: 1.15rem;
  background: linear-gradient(145deg, rgba(165, 36, 34, 0.05), #fff);
}

.acw-estimate__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.acw-estimate__row span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--acw-muted);
}

.acw-estimate__row strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--acw-ink);
  text-align: right;
}

.acw-estimate__note {
  margin: 0.5rem 0 0.25rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--acw-brand);
  font-weight: 500;
}

.acw-estimate__fine {
  margin: 0.35rem 0 0;
  font-size: 0.7rem;
  line-height: 1.4;
  color: var(--acw-muted);
}

/* ???? Summary hierarchy tree ???? */
.acw-summary__tree {
  margin: 0 0 1rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--acw-line);
  max-height: 14rem;
  overflow: auto;
}

.acw-tree {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
}

.acw-tree ul {
  list-style: none;
  margin: 0.35rem 0 0.5rem;
  padding: 0 0 0 0.75rem;
  border-left: 2px solid rgba(165, 36, 34, 0.15);
}

.acw-tree__room {
  margin-bottom: 0.5rem;
}

.acw-tree__room > strong {
  font-weight: 700;
  color: var(--acw-ink);
}

.acw-tree__wall {
  margin-bottom: 0.3rem;
  color: var(--acw-ink);
  font-weight: 500;
}

.acw-tree__wall em {
  font-style: normal;
  font-weight: 500;
  color: var(--acw-muted);
  font-size: 0.72rem;
}

.acw-tree__meta {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--acw-muted);
}

/* ???? One-page form section jump nav ???? */
.acw-page-nav {
  margin: 0 0 1.25rem;
  padding: 1rem 1.15rem;
  background: linear-gradient(165deg, #ffffff 0%, #faf8f7 100%);
  border: 1px solid rgba(165, 36, 34, 0.12);
  border-radius: 14px;
  box-shadow: var(--acw-shadow);
  position: sticky;
  top: 0.5rem;
  z-index: 3;
}

.acw-page-nav__label {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--acw-muted);
}

.acw-page-nav__track {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.acw-page-nav__item {
  appearance: none;
  border: 1px solid var(--acw-line);
  background: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.65rem 0.35rem 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--acw-ink);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.acw-page-nav__item:hover {
  border-color: rgba(165, 36, 34, 0.35);
  background: var(--acw-brand-light);
  color: var(--acw-brand);
}

.acw-page-nav__dot {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  background: #f3f4f6;
  color: var(--acw-muted);
  flex-shrink: 0;
}

.acw-page-nav__item:hover .acw-page-nav__dot {
  background: var(--acw-brand);
  color: #fff;
}

.acw-stage-block {
  margin-bottom: 0.5rem;
  scroll-margin-top: 5.5rem;
  width: 100%;
}

.acw-stage-block__head {
  margin: 0 0 1.35rem;
  padding: 0;
  border: none;
  background: transparent !important;
  border-radius: 0;
}

.acw-stage-block__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--acw-brand);
}

.acw-stage-block__title {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--acw-ink);
}

.acw-stage-block__lead {
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
  color: var(--acw-muted);
  line-height: 1.5;
  max-width: 42rem;
}

.acw-stage-block__body {
  width: 100%;
}

.acw-stage-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
  padding: 1rem 0 0.25rem;
  border-top: 1px solid var(--acw-line);
  position: sticky;
  bottom: 0;
  background: linear-gradient(180deg, rgba(249, 250, 251, 0) 0%, var(--acw-page) 28%);
  padding-top: 1.25rem;
  z-index: 2;
}

.acw-stage-nav--submit {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.acw-stage-nav__hint {
  margin: 0;
  flex: 1 1 12rem;
  font-size: 0.8125rem;
  color: var(--acw-muted);
}

.acw-stage-nav .acw-btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Legacy stepped classes kept for older drafts / cached assets */
.acw-steps {
  display: none;
}

.acw-steps__label {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--acw-muted);
}

.acw-steps__track {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.acw-step {
  appearance: none;
  border: 1px solid var(--acw-line);
  background: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.65rem 0.35rem 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--acw-muted);
  cursor: default;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.acw-step:not([disabled]) {
  cursor: pointer;
}

.acw-step:not([disabled]):hover {
  border-color: rgba(165, 36, 34, 0.35);
  color: var(--acw-ink);
}

.acw-step__dot {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  background: #f3f4f6;
  color: var(--acw-muted);
  flex-shrink: 0;
}

.acw-step.is-active {
  border-color: var(--acw-brand);
  color: var(--acw-brand);
  background: var(--acw-brand-light);
}

.acw-step.is-active .acw-step__dot {
  background: var(--acw-brand);
  color: #fff;
}

.acw-step.is-done {
  border-color: rgba(165, 36, 34, 0.28);
  color: var(--acw-ink);
}

.acw-step.is-done .acw-step__dot {
  background: var(--acw-brand);
  color: #fff;
}

.acw-step[disabled] {
  opacity: 0.85;
}

.acw-draft-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid #fde68a;
  background: #fffbeb;
  color: #92400e;
  font-size: 0.875rem;
  font-weight: 600;
}

.acw-draft-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.acw-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}

.acw-btn--sm {
  padding: 0.4rem 0.7rem;
  font-size: 0.75rem;
  border-radius: 8px;
  font-weight: 600;
}

.acw-field--error label {
  color: #b91c1c;
}

.acw-field--error input,
.acw-field--error select,
.acw-field--error textarea {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15);
}

.acw-field__error {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #b91c1c;
}

.acw-choice:focus-visible,
.acw-frame-swatch:focus-visible,
.acw-btn:focus-visible,
.acw-step:focus-visible,
.acw-page-nav__item:focus-visible,
.acw-field input:focus-visible,
.acw-field select:focus-visible,
.acw-field textarea:focus-visible {
  outline: 2px solid var(--acw-brand);
  outline-offset: 2px;
}


/* ?? Step progress + progressive disclosure ?? */
.acw-progress-bar {
  margin: 0 0 1.25rem;
  padding: 1rem 1.1rem;
  background: var(--acw-surface);
  border: 1px solid var(--acw-line);
  border-radius: 12px;
  box-shadow: var(--acw-shadow);
}

.acw-progress-bar__label {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--acw-muted);
}

.acw-progress-bar__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.acw-progress-bar__step button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--acw-line);
  background: #fff;
  color: var(--acw-muted);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.acw-progress-bar__step.is-current button {
  border-color: var(--acw-brand);
  background: var(--acw-brand-light);
  color: var(--acw-brand);
}

.acw-progress-bar__step.is-done button {
  border-color: rgba(22, 101, 52, 0.25);
  background: #f0fdf4;
  color: #166534;
}

.acw-progress-bar__step button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.acw-progress-bar__n {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  background: rgba(0,0,0,0.06);
}

.acw-progress-bar__step.is-current .acw-progress-bar__n {
  background: var(--acw-brand);
  color: #fff;
}

.acw-progress-bar__step.is-done .acw-progress-bar__n {
  background: #166534;
  color: #fff;
}

.acw-stage-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--acw-line);
}

.acw-stage-nav .acw-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 7.5rem;
  justify-content: center;
}

.acw-stage-nav__spacer { flex: 1; }

.acw-stage-nav__hint {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: var(--acw-muted);
  text-align: right;
}

.acw-guide {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  background: var(--acw-brand-light);
  border: 1px solid rgba(165, 36, 34, 0.12);
  font-size: 0.875rem;
  color: var(--acw-ink);
}

.acw-art-group__hint {
  margin: -0.25rem 0 0.85rem;
  font-size: 0.75rem;
  color: var(--acw-muted);
}

.acw-more {
  margin-top: 1rem;
  border: 1px dashed var(--acw-line);
  border-radius: 10px;
  background: #fafafa;
  overflow: hidden;
}

.acw-more__summary {
  cursor: pointer;
  list-style: none;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  font-weight: 650;
  color: var(--acw-ink);
  user-select: none;
}

.acw-more__summary::-webkit-details-marker { display: none; }

.acw-more__summary span {
  font-weight: 500;
  color: var(--acw-muted);
  font-size: 0.8125rem;
}

.acw-more__summary::before {
  content: "+";
  display: inline-block;
  width: 1.1rem;
  font-weight: 700;
  color: var(--acw-brand);
}

.acw-more[open] .acw-more__summary::before { content: "\2212"; }

.acw-more__body {
  padding: 0 1rem 1rem;
  border-top: 1px solid var(--acw-line);
}

/* Single-artwork brief card (project stage) */
.acw-brief {
  padding: 1.1rem 1.15rem 1.2rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #fbfbfc 100%);
  border: 1px solid #e8ebef;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.acw-brief__head {
  margin-bottom: 1.1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid #eef0f3;
}

.acw-brief__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--acw-brand);
}

.acw-brief__lead {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--acw-muted);
}

.acw-brief__title-field {
  margin-bottom: 1.15rem;
}

.acw-brief__req-field {
  margin-bottom: 0;
}

.acw-field__kind--optional {
  background: #f1f5f9;
  color: #475569;
}

.acw-field__help {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--acw-muted);
}

.acw-req {
  color: var(--acw-brand);
  font-weight: 700;
}

.acw-brief__textarea {
  min-height: 128px !important;
}

.acw-brief__tips-label {
  margin: 0.15rem 0 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--acw-muted);
}

.acw-brief__tips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
}

.acw-brief__tips li {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 0.72rem;
  font-weight: 600;
  color: #475569;
  line-height: 1.2;
}

.acw-tax-block {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.acw-tax-hint {
  margin: -0.35rem 0 0.85rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--acw-muted);
}

.acw-tax-block .acw-grid--tiles {
  grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
}

@media (max-width: 640px) {
  .acw-tax-block .acw-grid--tiles {
    grid-template-columns: 1fr 1fr;
  }
}


@media (max-width: 640px) {
  .acw-progress-bar__t { display: none; }
  .acw-stage-nav { flex-direction: column-reverse; align-items: stretch; }
  .acw-stage-nav .acw-btn { width: 100%; }
  .acw-brief { padding: 1rem; }
}

/* ===== Full-width simple step UI (v25) ===== */
.acw-layout--full { display: block; width: 100%; }
.acw-root #acw-error {
  margin: 0.75rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 0.875rem;
  font-weight: 600;
}
.acw-root #acw-error.acw-hidden { display: none !important; }

.acw-flow {
  width: 100%;
  padding: 0 0 1.35rem;
  margin: 0 0 0.35rem;
  border: none;
  border-bottom: 1px solid var(--acw-line);
  background: transparent;
  box-shadow: none;
}
.acw-flow:last-of-type { border-bottom: none; padding-bottom: 0; }
.acw-flow__head { margin: 0 0 1rem; }
.acw-flow__title {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.acw-flow__lead {
  margin: 0;
  font-size: 0.875rem;
  color: var(--acw-muted);
  line-height: 1.45;
  max-width: 40rem;
}
.acw-flow__body { display: flex; flex-direction: column; gap: 0.25rem; }

/* Kill nested coloured field boxes  keep flat */
.acw-field--toggle,
.acw-field--qty,
.acw-field--money,
.acw-field--time,
.acw-field--pick,
.acw-field--choice,
.acw-field--text,
.acw-field--type,
.acw-field--area,
.acw-field--write,
.acw-field--date,
.acw-field--upload,
.acw-field--select,
.acw-field--size,
.acw-field--color,
.acw-field:has(> .acw-grid--yn),
.acw-field:has(> .acw-grid--qty),
.acw-field:has(> .acw-grid--budget),
.acw-field:has(> .acw-grid--priority),
.acw-field:has(> .acw-grid--tiles),
.acw-field:has(> .acw-grid--pills) {
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Distinct control styles by field kind */
.acw-field--type input,
.acw-field--text input {
  border: none;
  border-bottom: 2px solid #e2e8f0;
  border-radius: 0;
  background: transparent;
  padding: 0.55rem 0.15rem;
}
.acw-field--type input:focus,
.acw-field--text input:focus {
  outline: none;
  border-bottom-color: var(--acw-brand);
}

.acw-field--write textarea,
.acw-field--area textarea {
  border: 1.5px dashed #cbd5e1;
  border-radius: 12px;
  background: #fafafa;
  min-height: 6.5rem;
  padding: 0.85rem 1rem;
}
.acw-field--write textarea:focus,
.acw-field--area textarea:focus {
  outline: none;
  border-style: solid;
  border-color: var(--acw-brand);
  background: #fff;
}

.acw-field--date input[type="date"] {
  max-width: 16rem;
  border: 1.5px solid #fde68a;
  background: #fffbeb;
  border-radius: 10px;
}

.acw-field--select .acw-select,
.acw-field--select select {
  max-width: 18rem;
  border: 1.5px solid #c7d2fe;
  background: #eef2ff;
  border-radius: 10px;
}

.acw-field--money .acw-input-affix,
.acw-field--money input {
  max-width: 16rem;
}

.acw-field--toggle .acw-grid--yn .acw-choice {
  border-radius: 999px;
  min-height: 2.5rem;
}

.acw-field--pick .acw-grid--pills .acw-choice,
.acw-field--choice .acw-grid--pills .acw-choice {
  border-radius: 999px;
}

.acw-field--size .acw-size-picker {
  max-width: none;
}

.acw-brief {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.acw-brief__head { margin-bottom: 1rem; }
.acw-brief__eyebrow {
  margin: 0 0 0.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--acw-brand);
}
.acw-brief__lead {
  margin: 0;
  font-size: 0.9rem;
  color: var(--acw-muted);
}

.acw-progress-bar {
  width: 100%;
  margin: 0 0 0.5rem;
  padding: 0.85rem 0 1rem;
  border-bottom: 1px solid var(--acw-line);
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.acw-estimate,
.acw-estimate--inline {
  border: none;
  background: transparent;
  padding: 0.25rem 0 0.75rem;
  box-shadow: none;
}

.acw-more {
  margin-top: 0.5rem;
  border-top: 1px solid var(--acw-line);
  padding-top: 0.75rem;
}
.acw-more__body {
  padding: 0.75rem 0 0;
  background: transparent;
}

.acw-wall.acw-subcard,
.acw-nest--room.acw-subcard {
  padding: 1rem 0;
  border-top: 1px solid var(--acw-line);
  margin-top: 0.75rem;
}

.acw-subcard,
.acw-subcard--artwork,
.acw-wall.acw-subcard,
.acw-nest--room.acw-subcard {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
.acw-wall.acw-subcard,
.acw-nest--room.acw-subcard {
  padding: 1rem 0 !important;
  border-top: 1px solid var(--acw-line) !important;
  margin-top: 0.75rem !important;
}

/* ===== Start step polish (v26) ===== */
.acw-draft-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0 0 1rem;
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  background: #fffaf5;
  border: 1px solid #f3e0c8;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #7c4a1e;
}
.acw-draft-banner__actions { display: flex; gap: 0.4rem; }

.acw-project-pick { margin-top: 0.25rem; }
.acw-grid--project {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0.75rem !important;
  max-width: none !important;
}
@media (min-width: 720px) {
  .acw-grid--project {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (min-width: 1100px) {
  .acw-grid--project {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}
.acw-grid--project .acw-choice--tile {
  align-items: flex-start;
  text-align: left;
  gap: 0.65rem;
  min-height: 5.5rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  box-shadow: none;
}
.acw-grid--project .acw-choice--tile:hover {
  border-color: rgba(165, 36, 34, 0.35);
  background: #fffaf9;
}
.acw-grid--project .acw-choice--tile.is-selected {
  border-color: var(--acw-brand);
  background: var(--acw-brand-light);
  box-shadow: 0 0 0 1px var(--acw-brand);
}
.acw-grid--project .acw-choice__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  background: #f8fafc;
  color: var(--acw-brand);
}
.acw-grid--project .acw-choice--tile.is-selected .acw-choice__icon {
  background: #fff;
  color: var(--acw-brand);
}

.acw-grid--project .acw-choice--tile.is-selected .acw-choice__icon svg {
  color: var(--acw-brand);
  stroke: currentColor;
}
.acw-grid--project .acw-choice__label {
  font-size: 0.95rem;
  font-weight: 700;
}
.acw-grid--project .acw-choice__hint {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.15rem;
}

.acw-stage-block--project .acw-stage-block__title {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
}

.acw-stage-nav .acw-btn[disabled] {
  opacity: 0.4;
  pointer-events: none;
}

/* ===== Artwork brief  clean (v27) ===== */
.acw-brief {
  margin-top: 1.5rem !important;
  padding: 1.25rem 0 0 !important;
  border: none !important;
  border-top: 1px solid var(--acw-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.acw-brief .acw-field__help,
.acw-brief .acw-field__kind,
.acw-brief .acw-field__glyph {
  display: none !important;
}
.acw-brief .acw-field__hint {
  display: block;
  margin: 0.2rem 0 0.55rem;
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.4;
}
.acw-brief .acw-field {
  margin-bottom: 1.25rem;
}
.acw-brief .acw-field:last-child {
  margin-bottom: 0;
}
.acw-brief .acw-field__name,
.acw-brief label.acw-field__name {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--acw-ink);
}
.acw-brief input,
.acw-brief textarea {
  width: 100%;
}
.acw-brief textarea {
  min-height: 7rem;
}

/* Step 2  artwork essentials restyle */
.acw-artworks-stack {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.acw-art-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.acw-art-card + .acw-art-card {
  padding-top: 1.5rem;
  border-top: 1px solid var(--acw-line);
}

.acw-art-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.acw-art-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--acw-ink);
}

.acw-art-panel {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.1rem 1.15rem 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--acw-line);
  background: #fff;
  box-shadow: 0 1px 0 rgba(28, 25, 23, 0.03);
}

.acw-art-panel__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.75rem;
  margin: 0;
  border-bottom: 1px solid rgba(28, 25, 23, 0.08);
}

.acw-art-panel__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #f5f1eb;
  color: var(--acw-brand);
}

.acw-art-panel__icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.acw-art-panel__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  color: var(--acw-ink);
}

.acw-art-panel__body {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.acw-art-panel__body > .acw-field {
  margin: 0;
}

.acw-art-panel__split {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding-top: 0.85rem;
  margin-top: 0.15rem;
  border-top: 1px dashed rgba(28, 25, 23, 0.1);
}

.acw-art-panel--style {
  background: linear-gradient(180deg, #fffdfb 0%, #faf6f1 100%);
  border-color: rgba(165, 36, 34, 0.14);
}

.acw-art-panel--style .acw-art-panel__icon {
  background: rgba(165, 36, 34, 0.1);
}

.acw-art-panel--digital {
  background: linear-gradient(180deg, #fbfdff 0%, #f3f7fb 100%);
  border-color: rgba(59, 105, 150, 0.18);
}

.acw-art-panel--digital .acw-art-panel__icon {
  background: rgba(59, 105, 150, 0.12);
  color: #2f5f8a;
}

.acw-art-panel--size {
  background: linear-gradient(180deg, #fffcf7 0%, #f8f3ea 100%);
  border-color: rgba(146, 112, 58, 0.18);
}

.acw-art-panel--size .acw-art-panel__icon {
  background: rgba(146, 112, 58, 0.12);
  color: #8a6a34;
}

.acw-art-panel--orient {
  background: linear-gradient(180deg, #fbfaf8 0%, #f4f1ec 100%);
  border-color: rgba(100, 90, 78, 0.16);
}

.acw-art-panel--refs {
  background: linear-gradient(180deg, #fafbf9 0%, #f2f5f1 100%);
  border-color: rgba(70, 110, 80, 0.16);
}

.acw-art-panel--refs .acw-art-panel__icon {
  background: rgba(70, 110, 80, 0.12);
  color: #3f6b4c;
}

.acw-art-panel--notes,
.acw-art-panel--identity {
  background: #fff;
}

.acw-more--panel {
  margin-top: 0.15rem;
  border-radius: 16px;
  border: 1px solid var(--acw-line);
  background: #fafafa;
}

.acw-tax-block {
  display: contents;
}

.acw-select--wide {
  max-width: none !important;
  width: 100%;
  border-color: rgba(120, 90, 60, 0.28) !important;
  background: #fff !important;
  border-radius: 12px !important;
}

.acw-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.acw-chip {
  appearance: none;
  border: 1px solid var(--acw-line);
  background: #fff;
  color: var(--acw-ink);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.acw-chip:hover {
  border-color: rgba(165, 36, 34, 0.35);
}

.acw-chip.is-selected {
  border-color: var(--acw-brand);
  background: rgba(165, 36, 34, 0.08);
  color: var(--acw-brand);
}

.acw-chip--reco {
  box-shadow: inset 0 0 0 1px rgba(180, 140, 40, 0.25);
}

.acw-chip--check {
  display: inline-flex;
  align-items: center;
  user-select: none;
}

.acw-chip--check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.acw-chip-row--fmt .acw-chip {
  min-width: 3.25rem;
  justify-content: center;
  font-variant: all-small-caps;
  letter-spacing: 0.04em;
}

.acw-switch-row {
  margin: 0.15rem 0;
}

.acw-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  user-select: none;
}

.acw-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.acw-switch__track {
  position: relative;
  width: 2.5rem;
  height: 1.4rem;
  border-radius: 999px;
  background: #d4d0cb;
  flex-shrink: 0;
  transition: background 0.18s ease;
}

.acw-switch__track::after {
  content: "";
  position: absolute;
  top: 0.15rem;
  left: 0.15rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease;
}

.acw-switch input:checked + .acw-switch__track {
  background: var(--acw-brand);
}

.acw-switch input:checked + .acw-switch__track::after {
  transform: translateX(1.1rem);
}

.acw-switch__text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--acw-ink);
}

.acw-seg {
  display: inline-flex;
  padding: 0.2rem;
  border-radius: 12px;
  background: #eeeae4;
  gap: 0.15rem;
}

.acw-seg__btn {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--acw-muted);
  border-radius: 10px;
  padding: 0.55rem 1.1rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 650;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.acw-seg__btn.is-selected {
  background: #fff;
  color: var(--acw-ink);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.acw-orient {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.acw-orient__btn {
  appearance: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 4.5rem;
  padding: 0.7rem 0.4rem;
  border: 1.5px solid var(--acw-line);
  border-radius: 14px;
  background: #fff;
  color: var(--acw-ink);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.acw-orient__btn:hover {
  border-color: rgba(165, 36, 34, 0.35);
}

.acw-orient__btn.is-selected {
  border-color: var(--acw-brand);
  background: rgba(165, 36, 34, 0.06);
  color: var(--acw-brand);
}

.acw-orient__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}

.acw-orient__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.acw-orient__label {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.acw-art-card .acw-more {
  margin-top: 0.25rem;
  border-style: solid;
  background: transparent;
}

.acw-art-card .acw-field--select .acw-select,
.acw-art-card .acw-field--select select {
  max-width: none;
  width: 100%;
}

@media (max-width: 640px) {
  .acw-orient {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ===== Custom Artwork Project design (v32) ===== */
.acw-layout--design .acw-page-form {
  gap: 0;
}

.acw-progress-bar--design {
  margin: 0 0 1.5rem;
  padding: 1.1rem 0.75rem 1.15rem;
  background: #fff;
  border: 1px solid #e8e8ea;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
}

.acw-progress-bar--design .acw-progress-bar__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  position: relative;
}

.acw-progress-bar--design .acw-progress-bar__step {
  flex: 1 1 0;
  position: relative;
  min-width: 0;
}

.acw-progress-bar--design .acw-progress-bar__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.05rem;
  left: calc(50% + 1.15rem);
  right: calc(-50% + 1.15rem);
  border-top: 1.5px dashed #d1d5db;
  pointer-events: none;
}

.acw-progress-bar--design .acw-progress-bar__step.is-done:not(:last-child)::after,
.acw-progress-bar--design .acw-progress-bar__step.is-current:not(:last-child)::after {
  border-top-color: rgba(165, 36, 34, 0.45);
}

.acw-progress-bar--design .acw-progress-bar__step button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0 0.35rem;
  border: none;
  background: transparent;
  border-radius: 0;
  color: #9ca3af;
  cursor: pointer;
}

.acw-progress-bar--design .acw-progress-bar__step.is-current button {
  color: var(--acw-brand);
  background: transparent;
}

.acw-progress-bar--design .acw-progress-bar__step.is-done button {
  color: #166534;
  background: transparent;
}

.acw-progress-bar--design .acw-progress-bar__n {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: #e5e7eb;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  z-index: 1;
}

.acw-progress-bar--design .acw-progress-bar__n svg {
  width: 0.95rem;
  height: 0.95rem;
}

.acw-progress-bar--design .acw-progress-bar__step.is-current .acw-progress-bar__n {
  background: var(--acw-brand);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(165, 36, 34, 0.12);
}

.acw-progress-bar--design .acw-progress-bar__step.is-done .acw-progress-bar__n {
  background: #16a34a;
}

.acw-progress-bar__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  text-align: center;
  min-width: 0;
}

.acw-progress-bar--design .acw-progress-bar__t {
  font-size: 0.8125rem;
  font-weight: 700;
  color: inherit;
}

.acw-progress-bar__s {
  font-size: 0.68rem;
  font-weight: 500;
  color: #9ca3af;
  line-height: 1.3;
  max-width: 7.5rem;
}

.acw-progress-bar--design .acw-progress-bar__step.is-current .acw-progress-bar__s {
  color: rgba(165, 36, 34, 0.8);
}

.acw-design-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 1100px) {
  .acw-design-split {
    grid-template-columns: minmax(0, 1fr) 20rem;
    gap: 1.5rem;
  }
}

.acw-design-split__main {
  min-width: 0;
}

.acw-design-split__main > .acw-stage-block,
.acw-design-split__main > .acw-stage-nav {
  background: #fff;
  border: 1px solid #e8e8ea;
  border-radius: 16px;
  padding: 1.25rem 1.25rem 1.35rem;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
}

.acw-design-split__main > .acw-stage-nav {
  margin-top: 1rem;
  padding-top: 1.1rem;
}

.acw-start-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.acw-start-card {
  background: #fff;
  border: 1px solid #e8e8ea;
  border-radius: 16px;
  padding: 1.25rem 1.25rem 1.35rem;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
}

.acw-start-card--nav {
  padding: 1rem 1.15rem;
}

.acw-start-card--nav .acw-stage-nav--design {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.acw-start-card--type .acw-stage-block {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

/* Artwork / project brief  separate container */
.acw-brief-panel {
  background: #fff;
  border: 1px solid #e8e8ea;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
}

.acw-brief-panel__head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(180deg, #fff8f5 0%, #ffffff 100%);
  border-bottom: 1px solid #f0e4e0;
}

.acw-brief-panel__icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(165, 36, 34, 0.1);
  color: var(--acw-brand);
  flex-shrink: 0;
}

.acw-brief-panel__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.acw-brief-panel__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 750;
  color: #111827;
  letter-spacing: -0.01em;
}

.acw-brief-panel__lead {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.4;
}

.acw-brief-panel__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.2rem 1.2rem 1.3rem;
}

.acw-brief-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.acw-brief-field__label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.acw-brief-field__label {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #111827;
}

.acw-brief-field__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: #f3f4f6;
  color: #6b7280;
}

.acw-brief-field__tag--req {
  background: #fff1f0;
  color: var(--acw-brand);
}

.acw-brief-field__hint {
  margin: 0;
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.4;
}

.acw-brief-field__control {
  position: relative;
  margin-top: 0.15rem;
}

.acw-brief-input,
.acw-brief-textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  background: #fafafa;
  color: #111827;
  font: inherit;
  padding: 0.8rem 3.6rem 0.8rem 0.9rem;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.acw-brief-input:hover,
.acw-brief-textarea:hover {
  background: #fff;
  border-color: #d1d5db;
}

.acw-brief-input:focus,
.acw-brief-textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--acw-brand);
  box-shadow: 0 0 0 3px rgba(165, 36, 34, 0.12);
}

.acw-brief-field__control--area .acw-brief-textarea {
  min-height: 10rem;
  padding: 0.9rem 0.9rem 1.85rem;
  resize: vertical;
  line-height: 1.5;
}

.acw-brief-field__control .acw-charcount {
  position: absolute;
  right: 0.8rem;
  bottom: 0.7rem;
  font-size: 0.72rem;
  font-weight: 650;
  color: #9ca3af;
  pointer-events: none;
}

.acw-brief-field__control:not(.acw-brief-field__control--area) .acw-charcount {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

.acw-brief-field--required.acw-field--error .acw-brief-input,
.acw-brief-field--required.acw-field--error .acw-brief-textarea,
.acw-brief-field.acw-field--error .acw-brief-input,
.acw-brief-field.acw-field--error .acw-brief-textarea {
  border-color: #dc2626;
  background: #fef2f2;
}

.acw-brief-tip {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: linear-gradient(90deg, #fff1f0 0%, #fff7ed 100%);
  border: 1px solid #f3c6c2;
}

.acw-brief-tip p {
  margin: 0;
  font-size: 0.875rem;
  color: #8f1f1d;
  line-height: 1.45;
}

.acw-brief-tip strong {
  font-weight: 750;
}

.acw-brief-tip__icon {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #c2410c;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.acw-brief-tip__icon svg {
  width: 0.95rem;
  height: 0.95rem;
}

.acw-stage-block__title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.acw-stage-block__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(165, 36, 34, 0.08);
  color: var(--acw-brand);
  flex-shrink: 0;
}

.acw-stage-block__icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.acw-stage-block--project .acw-stage-block__title {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}

.acw-stage-block--project .acw-stage-block__lead {
  margin-top: 0.35rem;
  color: #6b7280;
}

.acw-grid--project {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

@media (min-width: 720px) {
  .acw-grid--project {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 960px) {
  .acw-grid--project {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

.acw-choice--project {
  position: relative;
  overflow: visible;
}

.acw-choice__check {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--acw-brand);
  color: #fff;
  z-index: 2;
}

.acw-choice--project.is-selected .acw-choice__check {
  display: inline-flex;
}

.acw-choice__check svg {
  width: 0.85rem;
  height: 0.85rem;
}

.acw-grid--project .acw-choice--tile {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  min-height: 7.25rem;
  padding: 1rem 1rem 0.95rem;
  border-radius: 14px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
}

.acw-grid--project .acw-choice--tile.is-selected {
  border-color: var(--acw-brand);
  background: #fff5f4;
  box-shadow: 0 0 0 1px var(--acw-brand);
}

.acw-grid--project .acw-choice__icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 12px;
  background: #f3f4f6;
  color: #6b7280;
}

.acw-grid--project .acw-choice--tile.is-selected .acw-choice__icon {
  background: rgba(165, 36, 34, 0.1);
  color: var(--acw-brand);
}

.acw-grid--project .acw-choice--tile.is-selected .acw-choice__hint {
  color: rgba(165, 36, 34, 0.85);
}

.acw-brief {
  margin-top: 1.5rem !important;
  padding-top: 1.35rem !important;
  border-top: 1px solid #ececef !important;
}

.acw-optional {
  font-weight: 500;
  color: #9ca3af;
}

.acw-req {
  color: var(--acw-brand);
  font-weight: 700;
}

.acw-input-shell {
  position: relative;
}

.acw-input-shell input,
.acw-input-shell textarea {
  width: 100%;
  padding-right: 3.5rem;
  border-radius: 12px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
}

.acw-input-shell--area textarea {
  min-height: 9rem;
  padding-bottom: 1.75rem;
  resize: vertical;
}

.acw-charcount {
  position: absolute;
  right: 0.75rem;
  bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #9ca3af;
  pointer-events: none;
}

.acw-input-shell:not(.acw-input-shell--area) .acw-charcount {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

.acw-tip-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 0.35rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #fff1f0;
  border: 1px solid #f3c6c2;
  color: #8f1f1d;
}

.acw-tip-banner p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.45;
}

.acw-tip-banner__icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c2410c;
}

.acw-tip-banner__icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.acw-stage-nav--design {
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid #ececef;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: transparent;
}

.acw-stage-nav__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: auto;
}

.acw-btn--outline {
  background: #fff;
  border: 1.5px solid #d1d5db;
  color: #111827;
}

.acw-btn--outline:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}

.acw-design-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1100px) {
  .acw-design-aside {
    position: sticky;
    top: 1rem;
  }
}

.acw-tips-card,
.acw-examples-card {
  background: #fff;
  border: 1px solid #e8e8ea;
  border-radius: 16px;
  padding: 1rem 1.05rem 1.1rem;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
}

.acw-tips-card {
  background: linear-gradient(180deg, #fff8f1 0%, #fff 42%);
}

.acw-tips-card__head,
.acw-examples-card__head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.acw-tips-card__head h3,
.acw-examples-card__head h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 750;
  color: #111827;
}

.acw-tips-card__icon,
.acw-examples-card__icon {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffedd5;
  color: #c2410c;
}

.acw-examples-card__icon {
  background: #fee2e2;
  color: var(--acw-brand);
}

.acw-tips-card__icon svg,
.acw-examples-card__icon svg {
  width: 1rem;
  height: 1rem;
}

.acw-tips-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.acw-tips-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.acw-tips-card__check {
  position: relative;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.12rem;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.14);
}

.acw-tips-card__check::after {
  content: "";
  width: 0.38rem;
  height: 0.68rem;
  margin-top: -0.12rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.acw-tips-card__check svg,
.acw-tips-card__check i {
  display: none !important;
}

.acw-tips-card__list strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #111827;
}

.acw-tips-card__list span {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.4;
  margin-top: 0.1rem;
}

.acw-examples-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.acw-examples-card__item {
  margin: 0;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
}

.acw-examples-card__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.acw-examples-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  background: #fff1f0;
  color: var(--acw-brand);
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
}

.acw-examples-card__cta:hover {
  background: #ffe4e1;
}

.acw-examples-card__cta svg {
  width: 0.95rem;
  height: 0.95rem;
}

@media (max-width: 720px) {
  .acw-progress-bar__s { display: none; }
  .acw-progress-bar--design .acw-progress-bar__t { font-size: 0.72rem; }
  .acw-stage-nav--design {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .acw-stage-nav__actions {
    margin-left: 0;
    width: 100%;
  }
  .acw-stage-nav__actions .acw-btn {
    flex: 1;
    justify-content: center;
  }
}

/* ===== Artwork taxonomy sheet (v35) ===== */
.acw-art-details-sheet {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.acw-tax-sheet,
.acw-digital-panel {
  background: #fff;
  border: 1px solid #e8e8ea;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
}

.acw-tax-sec {
  padding: 1.15rem 1.2rem 1.25rem;
  border-bottom: 1px solid #f0f0f2;
}

.acw-tax-sec:last-child {
  border-bottom: none;
}

.acw-tax-sec__head {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}

.acw-tax-sec__icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.acw-tax-sec__icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.acw-tax-sec__icon--brand {
  background: #fff1f0;
  color: var(--acw-brand);
}

.acw-tax-sec__icon--purple {
  background: #f3e8ff;
  color: #7c3aed;
}

.acw-tax-sec__icon--blue {
  background: #e0f2fe;
  color: #0284c7;
}

.acw-tax-sec__icon--green {
  background: #dcfce7;
  color: #15803d;
}

.acw-tax-sec__icon--sky {
  background: #e0f2fe;
  color: #0369a1;
}

.acw-tax-sec__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 750;
  color: #111827;
}

.acw-tax-sec__lead {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.35;
}

.acw-style-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
}

@media (max-width: 900px) {
  .acw-style-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .acw-style-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.acw-style-card {
  position: relative;
  appearance: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 5.75rem;
  padding: 0.85rem 0.5rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  color: #111827;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.acw-style-card:hover {
  border-color: rgba(165, 36, 34, 0.35);
  background: #fffaf9;
}

.acw-style-card.is-selected {
  border-color: var(--acw-brand);
  background: #fff5f4;
  box-shadow: 0 0 0 1px var(--acw-brand);
  color: var(--acw-brand);
}

.acw-style-card__check {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--acw-brand);
}

.acw-style-card.is-selected .acw-style-card__check {
  display: inline-flex;
}

.acw-style-card__check::after {
  content: "";
  width: 0.32rem;
  height: 0.55rem;
  margin-top: -0.1rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.acw-style-card__icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #6b7280;
}

.acw-style-card.is-selected .acw-style-card__icon {
  background: rgba(165, 36, 34, 0.1);
  color: var(--acw-brand);
}

.acw-style-card__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.acw-style-card__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
}

.acw-select--sheet {
  max-width: none !important;
  width: 100%;
  border: 1.5px solid #e5e7eb !important;
  background: #fafafa !important;
  border-radius: 12px !important;
  color: #111827 !important;
  padding: 0.75rem 0.9rem !important;
}

.acw-select--sheet:focus {
  background: #fff !important;
  border-color: var(--acw-brand) !important;
  box-shadow: 0 0 0 3px rgba(165, 36, 34, 0.12);
}

.acw-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.acw-pill {
  appearance: none;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  color: #111827;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.acw-pill:hover {
  border-color: rgba(165, 36, 34, 0.35);
}

.acw-pill.is-selected {
  border-color: var(--acw-brand);
  background: #fff1f0;
  color: var(--acw-brand);
}

.acw-pill--reco {
  box-shadow: inset 0 0 0 1px rgba(180, 140, 40, 0.22);
}

.acw-tax-sec__extra {
  margin-top: 0.75rem;
}

.acw-tax-sec__extra input {
  width: 100%;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  background: #fafafa;
  padding: 0.7rem 0.85rem;
}

.acw-digital-panel {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 42%);
  border-color: #dbeafe;
}

.acw-digital-panel__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem 1rem;
  padding: 1.15rem 1.2rem 1rem;
}

.acw-digital-panel__top .acw-tax-sec__head {
  margin-bottom: 0;
  flex: 1 1 14rem;
}

.acw-switch--panel {
  margin-left: auto;
  align-self: center;
}

.acw-digital-panel__body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 0 1.2rem 1.25rem;
  border-top: 1px dashed #bfdbfe;
  padding-top: 1rem;
}

.acw-digital-block {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.acw-digital-block__label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.acw-digital-block__label strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #111827;
}

.acw-digital-block__label span {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.1rem;
}

.acw-digital-block__glyph {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.acw-digital-block__glyph svg {
  width: 0.95rem;
  height: 0.95rem;
}

.acw-digital-block__glyph--docs {
  background: #e0f2fe;
  color: #0284c7;
}

.acw-digital-block__glyph--res {
  background: #ede9fe;
  color: #7c3aed;
}

.acw-fmt-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
}

@media (max-width: 640px) {
  .acw-fmt-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.acw-fmt-card {
  appearance: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 4.4rem;
  padding: 0.65rem 0.35rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.acw-fmt-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.acw-fmt-card__icon {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #6b7280;
}

.acw-fmt-card__icon svg {
  width: 1rem;
  height: 1rem;
}

.acw-fmt-card--rose .acw-fmt-card__icon { background: #ffe4e6; color: #e11d48; }
.acw-fmt-card--green .acw-fmt-card__icon { background: #dcfce7; color: #16a34a; }
.acw-fmt-card--purple .acw-fmt-card__icon { background: #ede9fe; color: #7c3aed; }
.acw-fmt-card--red .acw-fmt-card__icon { background: #fee2e2; color: #dc2626; }
.acw-fmt-card--blue .acw-fmt-card__icon { background: #dbeafe; color: #2563eb; }

.acw-fmt-card__label {
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  color: #111827;
}

.acw-fmt-card.is-selected {
  border-color: var(--acw-brand);
  background: #fff5f4;
  box-shadow: 0 0 0 1px var(--acw-brand);
}

.acw-fmt-card.is-selected .acw-fmt-card__label {
  color: var(--acw-brand);
}

.acw-fmt-card.is-selected .acw-fmt-card__icon {
  background: rgba(165, 36, 34, 0.12);
  color: var(--acw-brand);
}


