:root {
  color-scheme: light;
  --ink: #050505;
  --muted: #6f7378;
  --faint: #eef1f4;
  --soft: #f6f8fa;
  --line: #dfe3e8;
  --paper: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #dfe3e8;
  color: var(--ink);
  display: grid;
  place-items: center;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  color: inherit;
  cursor: pointer;
}

.phone-shell {
  width: min(100vw, 430px);
  min-height: 100vh;
  background: var(--paper);
}

.app-screen {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #ffffff;
}

.content {
  height: 100vh;
  overflow-y: auto;
  padding: 44px 20px 118px;
  scrollbar-width: thin;
}

h1 {
  margin: 0 0 22px;
  font-size: 44px;
  line-height: 0.95;
  letter-spacing: 0;
}

.center-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 26px;
}

h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}

p {
  color: var(--muted);
}

.search {
  height: 52px;
  border-radius: 28px;
  background: #eef1f4;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
}

.search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 18px;
}

.magnify {
  width: 18px;
  height: 18px;
  border: 3px solid #111;
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}

.magnify::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 3px;
  background: #111;
  transform: rotate(45deg);
  right: -8px;
  bottom: -5px;
  border-radius: 2px;
}

.toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0;
}

.round-control,
.soft-button {
  background: var(--faint);
  height: 44px;
  border-radius: 22px;
  color: #666666;
  padding: 0 18px;
}

.round-control {
  width: 56px;
  padding: 0;
  font-size: 20px;
}

.primary-button,
.small-dark,
.generate {
  margin-left: auto;
  background: #050505;
  color: white;
  border-radius: 24px;
  height: 46px;
  padding: 0 22px;
  font-weight: 800;
}

.generate:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.small-dark {
  height: 34px;
  padding: 0 14px;
}

.small-dark:disabled {
  opacity: 0.35;
}

.category {
  margin: 26px 0 34px;
}

.category h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.category-mark {
  width: 26px;
  height: 26px;
  display: inline-block;
  border: 4px solid #050505;
}

.category-mark.tops {
  border-radius: 8px 8px 2px 2px;
}

.category-mark.bottoms {
  clip-path: polygon(15% 0, 85% 0, 100% 100%, 60% 100%, 50% 38%, 40% 100%, 0 100%);
}

.category-mark.dresses {
  clip-path: polygon(35% 0, 65% 0, 100% 100%, 0 100%);
}

.category-mark.shoes,
.category-mark.bags,
.category-mark.outerwear,
.category-mark.accessories {
  border-radius: 50%;
}

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

.item-card {
  min-width: 0;
}

.item-card img,
.strip-card img,
.flatlay img,
.scan-card img,
.anchor-card img {
  display: block;
  width: 100%;
  object-fit: contain;
}

.item-card img {
  aspect-ratio: 1;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.item-card p {
  margin: 8px 0 0;
  color: #696969;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #eef1f4;
  padding: 6px;
  border-radius: 18px;
  margin-bottom: 28px;
}

.segmented button {
  height: 56px;
  background: transparent;
  border-radius: 14px;
  color: #777777;
  font-size: 20px;
  font-weight: 700;
}

.segmented button.active {
  background: white;
  color: var(--ink);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.canvas-panel,
.ai-panel {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.canvas-actions,
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666666;
  font-size: 18px;
}

.canvas-actions {
  display: grid;
  gap: 8px;
}

.canvas-actions > span {
  font-size: 14px;
  white-space: nowrap;
}

.canvas-actions > div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 8px;
}

.icon-action {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  font-size: 20px;
  line-height: 1;
}

.icon-action:disabled,
.text-button:disabled {
  cursor: default;
  opacity: 0.28;
}

.text-button {
  background: transparent;
  color: #666666;
  padding: 8px;
}

.text-button.full {
  width: 100%;
  margin-top: 10px;
}

.flatlay {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  place-items: center;
  padding: 8px;
}

.flatlay.big {
  position: relative;
  min-height: 520px;
  display: block;
  padding: 0;
  overflow: hidden;
  touch-action: none;
}

.canvas-piece {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  z-index: var(--z);
  width: 33.846%;
  height: 28.846%;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 8px;
  transform: translate(-50%, -50%) scale(var(--s));
  transform-origin: center;
  touch-action: none;
  cursor: grab;
}

.canvas-piece.category-bottoms {
  width: 37.949%;
  height: 48.077%;
}

.canvas-piece.category-dresses {
  width: 37.949%;
  height: 57.692%;
}

.canvas-piece.category-shoes {
  width: 40.513%;
  height: 17.692%;
}

.canvas-piece.category-bags {
  width: 38.462%;
  height: 26.538%;
}

.canvas-piece.category-outerwear {
  width: 38.462%;
  height: 36.538%;
}

.canvas-piece.category-accessories {
  width: 33.846%;
  height: 16.154%;
}

.canvas-piece img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.08));
}

.canvas-piece.selected {
  outline: 1px dashed #050505;
  outline-offset: 5px;
}

.canvas-piece.selected::before,
.canvas-piece.selected::after {
  display: none;
}

.scale-handle {
  position: absolute;
  right: -13px;
  bottom: -13px;
  width: 24px;
  height: 24px;
  border: 3px solid white;
  border-radius: 50%;
  background: #050505;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
  cursor: nwse-resize;
  touch-action: none;
}

.scale-handle::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
}

.outfit-flatlay {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 11 / 13;
}

.outfit-layout {
  position: relative;
  width: 100%;
  height: 100%;
}

.outfit-layout .outfit-piece {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  z-index: var(--z);
  width: calc(var(--w) * 1%);
  height: calc(var(--h) * 1%);
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.06));
}

.canvas-piece.dragging {
  opacity: 0.92;
  cursor: grabbing;
}

.flatlay.big .piece {
  position: absolute;
  width: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.08));
}

.flatlay.big .piece-0 {
  left: 25%;
  top: 7%;
  height: 31%;
}

.flatlay.big .piece-1 {
  left: 20%;
  top: 38%;
  height: 52%;
}

.flatlay.big .piece-2 {
  right: 14%;
  top: 20%;
  height: 30%;
}

.flatlay.big .piece-3 {
  right: 12%;
  bottom: 11%;
  height: 20%;
}

.flatlay.big .piece-4 {
  right: 31%;
  bottom: 28%;
  height: 22%;
}

.flatlay.big .empty {
  height: 100%;
}

.canvas-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  background: #f6f8fa;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
}

.canvas-tool-title {
  min-width: 0;
}

.canvas-tools span,
.canvas-hint {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.canvas-tools strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scale-controls {
  display: grid;
  grid-template-columns: 36px minmax(90px, 1fr) 36px;
  gap: 8px;
  align-items: center;
}

.canvas-secondary {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.canvas-tools button {
  min-width: 36px;
  height: 34px;
  border-radius: 17px;
  background: #ffffff;
  border: 1px solid var(--line);
  font-weight: 800;
}

.canvas-tools input[type="range"] {
  width: 100%;
  accent-color: #050505;
}

.canvas-hint {
  background: #f6f8fa;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

.row-thumb {
  width: 78px;
  height: auto;
  border: 0;
  padding: 0;
}

.mini {
  width: 82px;
  height: auto;
}

.detail-flatlay {
  height: auto;
}

.wardrobe-strip,
.outfit-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.strip-card,
.planner-card {
  flex: 0 0 112px;
  background: white;
  border-radius: 8px;
  padding: 8px;
  border: 2px solid transparent;
  text-align: left;
}

.strip-card.selected,
.planner-card.active {
  border-color: #050505;
}

.strip-card img {
  height: 92px;
}

.strip-card span,
.planner-card span {
  display: block;
  color: #666666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wand {
  text-align: center;
  color: #a0a0a0;
  font-size: 62px;
  line-height: 1;
}

.ai-panel h2,
.ai-panel > p {
  text-align: center;
}

.weather-card,
.advanced,
.day-card,
.suggestion,
.scan-card,
.anchor-card,
.upload-option,
.processing {
  background: #f6f8fa;
  border-radius: 8px;
  padding: 18px;
}

.weather-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lucky-color {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f2a8be;
  border: 5px solid white;
  box-shadow: 0 0 0 1px #d7dbe0;
  flex: 0 0 auto;
}

.weather-card span,
.anchor-card span,
.scan-card span,
.scan-card small {
  display: block;
  color: var(--muted);
}

.field-label {
  color: #666666;
  font-weight: 700;
}

.palette-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.palette-options button {
  min-width: 0;
  min-height: 64px;
  padding: 8px 6px;
  display: grid;
  place-items: center;
  gap: 5px;
  background: #eef1f4;
  border: 2px solid transparent;
  border-radius: 8px;
  color: #666666;
  font-size: 12px;
  font-weight: 800;
}

.palette-options button.active {
  background: white;
  border-color: #050505;
  color: #050505;
}

.color-swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--swatch);
  border: 3px solid white;
  box-shadow: 0 0 0 1px #cfd4da;
}

.pills {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.pills button {
  flex: 0 0 auto;
  height: 42px;
  border-radius: 22px;
  padding: 0 16px;
  background: #eef1f4;
  color: #6f6f6f;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pills button.active {
  background: #050505;
  color: white;
}

.advanced summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 22px;
}

.advanced {
  min-width: 0;
  overflow: hidden;
}

.advanced summary span {
  display: block;
  margin-top: 4px;
  color: #b8b8b8;
  font-size: 14px;
  font-weight: 500;
}

.anchor-card,
.scan-card {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
}

.anchor-card img,
.scan-card img {
  width: 76px;
  height: 76px;
  border: 2px solid #050505;
  border-radius: 8px;
}

.anchor-card.empty-anchor {
  min-height: 88px;
}

.anchor-placeholder {
  width: 76px;
  height: 76px;
  display: grid !important;
  place-items: center;
  border: 1px dashed #b8bec5;
  border-radius: 8px;
  font-size: 28px;
}

.anchor-options {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.anchor-options button {
  position: relative;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  padding: 4px;
  background: white;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  font-size: 10px;
  font-weight: 800;
}

.anchor-options button.active {
  border-color: #050505;
}

.anchor-options img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.anchor-check {
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #050505;
  color: white;
  font-size: 11px;
}

.fixed-items-head {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

.fixed-items {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 8px;
}

.fixed-item {
  flex: 0 0 150px;
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 24px;
  gap: 6px;
  align-items: center;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.fixed-item img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.fixed-item > span {
  overflow: hidden;
  color: #35383c;
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fixed-item button {
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 50%;
  background: var(--faint);
  font-size: 16px;
}

.anchor-category-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  margin-top: 8px;
  padding-bottom: 2px;
}

.anchor-category-tabs button {
  flex: 0 0 auto;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 15px;
  background: var(--faint);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.anchor-category-tabs button.active {
  background: #050505;
  color: white;
}

.ai-error {
  padding: 12px 14px;
  border-left: 3px solid #050505;
  background: #eef1f4;
  color: #555b62;
  font-size: 13px;
  line-height: 1.5;
}

.ai-error span {
  display: block;
}

.ai-error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.ai-error-actions button {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #bfc5cb;
  border-radius: 16px;
  background: white;
  font-size: 12px;
  font-weight: 800;
}

.upload-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.upload-option {
  min-height: 96px;
  text-align: left;
  display: grid;
  gap: 8px;
  align-content: center;
}

.upload-option strong,
.upload-option span {
  display: block;
}

.upload-option strong {
  font-size: 18px;
}

.upload-option span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hidden-file {
  position: fixed;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.processing {
  margin-top: 14px;
  color: #666666;
  text-align: center;
}

.scan-card.uploaded img {
  border-color: #111;
  background: white;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.tag-cloud span {
  background: #eef1f4;
  color: #5f5f5f;
  border-radius: 18px;
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 700;
}

.generate {
  width: 100%;
  margin: 0;
}

.ai-results,
.outfit-list {
  display: grid;
  gap: 14px;
}

.suggestion {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  gap: 12px;
  align-items: center;
}

.suggestion .flatlay {
  grid-column: 1 / -1;
  width: 100%;
  height: auto;
  border: 0;
  padding: 0;
}

.suggestion strong {
  display: block;
}

.suggestion-meta {
  display: block;
  margin-bottom: 4px;
  color: #777777;
  font-size: 11px;
  font-weight: 800;
}

.suggestion p {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.45;
}

.suggestion-actions {
  display: grid;
  gap: 7px;
}

.suggestion-actions button {
  width: 100%;
  height: 34px;
  border-radius: 17px;
  background: white;
  border: 1px solid var(--line);
  font-weight: 800;
  font-size: 12px;
}

.suggestion-actions button:first-child {
  background: #050505;
  color: white;
}

.outfit-row {
  width: 100%;
  background: transparent;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  display: grid;
  grid-template-columns: 84px 26px 1fr 18px;
  gap: 12px;
  text-align: left;
  align-items: center;
}

.row-copy strong,
.row-copy span,
.row-copy small {
  display: block;
}

.row-copy strong {
  font-size: 24px;
  line-height: 1.05;
}

.row-copy span {
  color: #666666;
  margin-top: 6px;
}

.row-copy small {
  color: #b8b8b8;
  margin-top: 4px;
}

.row-icon {
  color: #8f8f8f;
  font-size: 24px;
}

.planner-top,
.week-nav,
.day-title,
.planner-selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.week-nav {
  margin: 26px 0;
}

.week-nav button {
  background: transparent;
  font-size: 44px;
  line-height: 1;
}

.week-nav strong {
  font-size: 24px;
}

.week-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 30px;
}

.day {
  height: 82px;
  border-radius: 18px;
  background: #eef1f4;
  color: #666666;
  display: grid;
  place-items: center;
  padding: 8px 0;
}

.day.active {
  background: #050505;
  color: white;
}

.day b {
  font-size: 24px;
}

.day small {
  min-height: 16px;
  font-size: 11px;
}

.day-card {
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  margin-bottom: 28px;
}

.day-title {
  margin-bottom: 18px;
}

.day-title h2 {
  font-size: 28px;
}

.day-title span {
  color: #777777;
}

.planner-selected {
  gap: 12px;
}

.planner-selected h3,
.planner-selected p {
  margin: 0;
}

.weather-mini {
  margin-left: auto;
  display: grid;
  gap: 2px;
}

.weather-mini span {
  color: #777777;
  font-size: 12px;
}

.planner-card {
  flex-basis: 122px;
}

.planner-card .flatlay {
  height: auto;
  margin-bottom: 8px;
}

.empty {
  min-height: 120px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #8f8f8f;
}

.empty.compact {
  min-height: 74px;
}

.bottom-nav {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  height: 82px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 8px;
  box-shadow: var(--shadow);
}

.nav-item {
  display: grid;
  place-items: center;
  gap: 2px;
  background: transparent;
  border-radius: 28px;
  font-weight: 800;
  font-size: 12px;
}

.nav-item.active {
  background: #eef1f4;
}

.icon {
  width: 28px;
  height: 28px;
  display: block;
  position: relative;
}

.icon.shirt::before {
  content: "";
  position: absolute;
  inset: 5px 3px 2px;
  background: #111;
  clip-path: polygon(18% 0, 38% 0, 50% 18%, 62% 0, 82% 0, 100% 35%, 78% 46%, 78% 100%, 22% 100%, 22% 46%, 0 35%);
}

.icon.spark::before,
.icon.spark::after {
  content: "";
  position: absolute;
  background: #111;
  clip-path: polygon(50% 0, 64% 36%, 100% 50%, 64% 64%, 50% 100%, 36% 64%, 0 50%, 36% 36%);
}

.icon.spark::before {
  inset: 1px 6px 5px;
}

.icon.spark::after {
  width: 10px;
  height: 10px;
  right: 0;
  top: 0;
}

.icon.heart::before {
  content: "♥";
  position: absolute;
  inset: -6px 0 0;
  font-size: 36px;
  line-height: 1;
}

.icon.cal::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 4px solid #111;
  border-radius: 4px;
}

.icon.cal::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  top: 13px;
  height: 4px;
  background: #111;
  box-shadow: 0 7px 0 #111;
}

.scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.24);
  display: flex;
  align-items: flex-end;
  z-index: 10;
}

.sheet {
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  background: var(--paper);
  border-radius: 24px 24px 0 0;
  padding: 12px 20px 28px;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.18);
}

.sheet-handle {
  width: 44px;
  height: 5px;
  border-radius: 4px;
  background: #d8d8d8;
  margin: 0 auto 18px;
}

.detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.detail-list span {
  background: #eef1f4;
  border-radius: 16px;
  padding: 8px 12px;
  color: #666666;
  font-size: 13px;
}

@media (min-width: 700px) {
  body {
    padding: 28px 0;
  }

  .phone-shell {
    width: 430px;
    min-height: 860px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
  }

  .app-screen,
  .content {
    height: 860px;
    min-height: 860px;
  }
}

@media (max-width: 374px) {
  h1 {
    font-size: 38px;
  }

  .row-copy strong {
    font-size: 20px;
  }

  .suggestion {
    grid-template-columns: minmax(0, 1fr) 104px;
  }

  .suggestion .flatlay {
    height: auto;
  }

  .suggestion-actions {
    grid-column: 2;
  }
}
