.design-form {
  margin-top: 28px;
}

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

.design-option {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: border-color .18s ease, transform .18s ease;
}

.design-option:hover {
  transform: translateY(-2px);
}

.design-option.is-selected,
.design-option:has(input:checked) {
  border-color: var(--accent);
}

.design-option > input {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
}

.design-preview {
  position: relative;
  display: block;
  min-height: 270px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.design-preview i,
.design-preview b,
.design-preview small {
  font-style: normal;
}

.design-preview-figma {
  background: #8b6d58;
}

.design-preview-wireframe14 {
  background: #fafaf8;
}

.wf14-preview-hero {
  position: absolute;
  inset: 0 0 48%;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(42,36,33,.08), rgba(42,36,33,.18)),
    radial-gradient(circle at 55% 45%, #8f684a 0 13%, #e6ddd1 14% 29%, #aaa096 30% 45%, #473d38 70%);
  color: #f4462c;
}

.wf14-preview-hero b {
  font: 600 20px/1 Arial, sans-serif;
  letter-spacing: -.06em;
}

.wf14-preview-copy {
  position: absolute;
  top: 54%;
  left: 5%;
  width: 42%;
  height: 24%;
  background: repeating-linear-gradient(to bottom, #f4462c 0 5px, transparent 5px 9px);
}

.wf14-preview-gallery {
  position: absolute;
  right: 0;
  bottom: 18%;
  display: grid;
  width: 47%;
  height: 30%;
  grid-template-columns: repeat(3, 1fr);
}

.wf14-preview-gallery b:nth-child(1) { background: #9fb4a4; }
.wf14-preview-gallery b:nth-child(2) { background: #7d9471; }
.wf14-preview-gallery b:nth-child(3) { background: #8b6653; }
.wf14-preview-reservation { position: absolute; right: 0; bottom: 0; left: 0; height: 16%; background: #f4462c; }

.design-preview-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(42, 36, 33, .13), rgba(42, 36, 33, .3)),
    radial-gradient(circle at 26% 28%, #c8a885 0 7%, transparent 8%),
    linear-gradient(125deg, #9b7b62 0 36%, #5f4638 36% 58%, #bca086 58%);
}

.design-preview-paper {
  position: absolute;
  top: 28px;
  right: 13%;
  left: 13%;
  display: grid;
  height: 154px;
  place-items: center;
  align-content: center;
  gap: 8px;
  background: #fafaf8;
  color: #f4462c;
}

.design-preview-paper b {
  font: 400 44px/1 Georgia, serif;
  letter-spacing: -.08em;
}

.design-preview-paper small {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .04em;
}

.design-preview-nav {
  position: absolute;
  right: 13%;
  bottom: 42px;
  left: 13%;
  display: grid;
  height: 26px;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}

.design-preview-nav b {
  background: #fafaf8;
}

.design-preview-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: 34px;
  align-items: center;
  background: #2a2421;
  color: #fafaf8;
  padding: 0 16px;
}

.design-preview-footer b {
  font: 400 15px/1 Georgia, serif;
}

.design-preview-editorial {
  background: #fafaf8;
}

.editorial-copy {
  position: absolute;
  inset: 0 48% 34px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #2a2421;
  color: #2a2421;
  padding: 54px 20px 28px;
}

.editorial-copy b {
  font: 400 35px/.88 Georgia, serif;
}

.editorial-copy small {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .08em;
}

.editorial-grid {
  position: absolute;
  inset: 0 0 34px 52%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.editorial-grid b:nth-child(1) { background: #f4462c; }
.editorial-grid b:nth-child(2) { background: #f1ed73; }
.editorial-grid b:nth-child(3) { background: #eab0c7; }
.editorial-grid b:nth-child(4) { background: #cce85e; }

.design-option-copy {
  display: grid;
  gap: 8px;
  padding: 22px 22px 14px;
}

.design-option-copy strong {
  font-size: 1.2rem;
}

.design-option-copy small {
  color: var(--muted);
  line-height: 1.55;
}

.design-status {
  justify-self: start;
  margin: 0 22px 22px;
  border-radius: 999px;
  background: #e8eae6;
  color: var(--text);
  padding: 5px 10px;
  font-size: .75rem;
  font-weight: 700;
}

.design-option.is-selected .design-status,
.design-option:has(input:checked) .design-status {
  background: #d7eedf;
  color: #153f2a;
}

.design-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

@media (max-width: 1100px) {
  .design-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 850px) {
  .design-options {
    grid-template-columns: 1fr;
  }

  .design-preview {
    min-height: 230px;
  }

  .design-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
