:root {
  --ink: #11110f;
  --paper: #fbfaf6;
  --cream: #f3eed8;
  --soft: #f0ede4;
  --white: #ffffff;
  --muted: #6d685f;
  --line: rgba(17, 17, 15, 0.15);
  --danger: #a23e35;
  --shadow: 0 20px 55px rgba(24, 21, 14, 0.11);
  --radius: 22px;
  --page: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

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

h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

p {
  line-height: 1.65;
}

.hidden {
  display: none !important;
}

.screen {
  min-height: 100vh;
}

.page {
  width: min(calc(100% - 40px), var(--page));
  margin: auto;
}

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

.lead {
  max-width: 690px;
  color: #555149;
  font-size: 1.08rem;
}

.note {
  display: block;
  margin-top: 14px;
  color: #777168;
  line-height: 1.5;
}

.eyebrow,
.number {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.number {
  color: #918a7d;
}

.full {
  width: 100%;
}

/* LOGO */

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
}

.aura-logo {
  overflow: visible;
  fill: none;
}

.aura-logo path {
  fill: none;
  stroke: currentColor;
  stroke-width: 7;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.aura-logo text {
  fill: currentColor;
  font-family: Arial, sans-serif;
  font-size: 58px;
  font-weight: 300;
  letter-spacing: 24px;
}

.logo-large {
  width: min(300px, 72vw);
}

.logo-small {
  width: 64px;
  height: 50px;
}

.logo-nav {
  width: 47px;
  height: 42px;
}

.logo-small text,
.logo-nav text {
  display: none;
}

.logo-button {
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

/* BUTTONS */

.primary,
.secondary,
.danger {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 780;
  cursor: pointer;
  transition: 0.2s;
}

.primary {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.secondary {
  border: 1px solid var(--line);
  background: transparent;
}

.danger {
  border: 1px solid #e2b9b3;
  background: #fff5f3;
  color: var(--danger);
}

.primary:hover,
.secondary:hover,
.danger:hover {
  transform: translateY(-2px);
}

.primary:disabled,
.secondary:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.text-button {
  border: 0;
  background: none;
  font-weight: 750;
  cursor: pointer;
}

.round-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: none;
  cursor: pointer;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* FORMS */

.form-stack {
  display: grid;
  gap: 16px;
}

.form-stack label,
.control {
  display: grid;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 760;
}

input,
select {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: 0;
  background: rgba(255, 255, 255, 0.78);
}

input:focus,
select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(17, 17, 15, 0.06);
}

/* AUTH */

.auth-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}

.auth-visual {
  display: grid;
  min-height: 100vh;
  place-items: center;
  align-content: center;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42)),
    url("LOGO.png")
    center / cover;
}

.auth-visual p {
  margin-top: 20px;
}

.auth-panel {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px;
}

.auth-card {
  width: min(460px, 100%);
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 30px 0 22px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.auth-tab {
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: none;
  cursor: pointer;
}

.auth-tab.active {
  background: var(--ink);
  color: var(--white);
}

/* HEADER */

.simple-header,
.app-header {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(20px, calc((100vw - var(--page)) / 2));
  border-bottom: 1px solid rgba(17, 17, 15, 0.08);
  background: var(--paper);
}

.sticky {
  position: sticky;
  z-index: 50;
  top: 0;
}

/* QUIZ */

.progress-wrap {
  width: min(calc(100% - 40px), 840px);
  margin: 25px auto 0;
}

.progress-wrap > div:first-child {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
  color: #787167;
  font-size: 0.78rem;
  font-weight: 750;
}

.progress {
  height: 5px;
  overflow: hidden;
  border-radius: 99px;
  background: #e7e4dc;
}

.progress span {
  display: block;
  width: 10%;
  height: 100%;
  background: var(--ink);
  transition: 0.25s;
}

.quiz-wrap {
  display: flex;
  width: min(calc(100% - 40px), 840px);
  min-height: calc(100vh - 160px);
  margin: auto;
  flex-direction: column;
  padding: 54px 0 32px;
}

.question {
  animation: rise 0.25s ease;
}

.question > p {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
}

.option-list,
.option-grid {
  display: grid;
  gap: 12px;
}

.option-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.option-button {
  position: relative;
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 14px;
  padding: 17px 20px;
  border: 1.5px solid #aaa59c;
  border-radius: 18px;
  background: var(--white);
  text-align: left;
  cursor: pointer;
  transition: 0.18s;
}

.option-button:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.option-button.selected {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.option-button.selected::after {
  position: absolute;
  top: 13px;
  right: 15px;
  content: "✓";
  font-weight: 900;
}

.image-option {
  min-height: 245px;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.image-option img {
  height: 200px;
}

.image-option > span {
  padding: 14px 17px;
  font-weight: 780;
}

.swatch {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

.quiz-next {
  margin-top: auto;
  align-self: flex-end;
  min-width: 220px;
}

/* NAVIGATION */

.desktop-nav {
  display: flex;
  gap: 6px;
}

.nav-button,
.mobile-nav button {
  border: 0;
  background: none;
  font-weight: 750;
  cursor: pointer;
}

.nav-button {
  padding: 10px 14px;
  border-radius: 999px;
}

.nav-button.active {
  background: var(--ink);
  color: var(--white);
}

.mobile-nav {
  display: none;
}

/* RESULT */

.result-page {
  padding: 46px 0 70px;
}

.result-hero {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  min-height: 570px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--cream);
}

.result-hero > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 70px);
}

.result-hero img {
  height: 100%;
  min-height: 570px;
}

.kicker {
  margin-bottom: 8px;
  color: var(--muted);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  font-weight: 760;
}

.detail-card,
.brand-section {
  margin-top: 20px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.analysis-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 50px;
}

.analysis-lead {
  font-size: 1.18rem;
}

.reason-list {
  display: grid;
  gap: 14px;
}

.reason-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.reason-item span {
  color: #9b9489;
  font-size: 0.75rem;
  font-weight: 800;
}

.reason-item p {
  margin: 5px 0 0;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.soft-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.soft-list span {
  padding: 9px 12px;
  border-radius: 10px;
  background: var(--soft);
  font-size: 0.86rem;
}

.palette {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 25px;
}

.color-chip div {
  height: 76px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 13px;
}

.color-chip small {
  display: block;
  margin-top: 7px;
}

.formula-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.formula-item {
  padding: 16px;
  border-radius: 14px;
  background: var(--soft);
}

.formula-item span {
  display: block;
  margin-bottom: 7px;
  color: #8b8479;
  font-size: 0.72rem;
}

/* BRANDS */

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 25px;
}

.brand-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.brand-photo {
  position: relative;
}

.brand-photo img {
  height: 215px;
}

.brand-wordmark {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px 10px;
  background: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  font-weight: 900;
  letter-spacing: 0.09em;
  text-align: center;
}

.brand-copy {
  padding: 17px;
}

.brand-copy p {
  min-height: 78px;
  margin-bottom: 12px;
  font-size: 0.87rem;
}

.brand-copy a {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.result-actions {
  justify-content: center;
  margin-top: 28px;
}

/* HOME */

.home-hero {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 30px;
  align-items: end;
  padding: 75px 0;
}

.profile-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.profile-card small {
  display: block;
  margin-bottom: 12px;
}

.profile-card strong {
  display: block;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.profile-card .tag {
  border-color: rgba(255, 255, 255, 0.2);
}

.home-section {
  padding: 60px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.look-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.look-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 460px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background: #dddddd;
  color: var(--white);
  text-align: left;
  cursor: pointer;
}

.look-card img {
  height: 100%;
  min-height: 460px;
  transition: transform 0.35s ease;
}

.look-card:hover img {
  transform: scale(1.025);
}

.look-card::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  content: "";
  pointer-events: none;
}

.look-caption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  left: 20px;
  color: var(--white);
  pointer-events: none;
}

.look-caption small,
.look-caption strong {
  display: block;
}

.look-caption strong {
  margin-top: 5px;
  font-size: 1.15rem;
}

.look-open {
  display: inline-block;
  margin-top: 12px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
  font-weight: 800;
}

/* STUDIO */

.view-heading {
  max-width: 850px;
  padding: 70px 0 35px;
}

.view-heading p {
  max-width: 720px;
  color: var(--muted);
}

.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.upload-area {
  display: block;
  width: 100%;
  height: 560px;
  padding: 0;
  overflow: hidden;
  border: 1.5px dashed #969087;
  border-radius: 24px;
  background: #f0eee7;
  cursor: pointer;
}

.upload-area > div {
  display: grid;
  height: 100%;
  place-items: center;
  align-content: center;
  gap: 10px;
}

.upload-area img {
  height: 100%;
}

.upload-icon {
  font-size: 2.5rem;
}

.delete-link {
  margin-top: 10px;
  border: 0;
  background: none;
  color: var(--danger);
  cursor: pointer;
}

.studio-controls {
  display: grid;
  align-content: start;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.style-buttons {
  display: grid;
  gap: 9px;
}

.style-button {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
}

.style-button.selected {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.style-button span {
  font-size: 0.75rem;
}

.generation-panel {
  margin: 30px 0 70px;
  padding: 28px;
  border-radius: 24px;
  background: var(--cream);
}

.generation-status {
  display: flex;
  gap: 14px;
  align-items: center;
}

.generation-status > span {
  font-size: 1.8rem;
}

.generation-status p {
  margin: 3px 0 0;
}

.generated-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
  margin-top: 25px;
}

.generated-grid > img {
  height: 600px;
  border-radius: 18px;
}

/* SAVED */

.empty-state {
  margin: 20px 0 70px;
  padding: 70px 20px;
  border: 1px dashed #aaa59c;
  border-radius: 24px;
  text-align: center;
}

.empty-state > span {
  font-size: 2.5rem;
}

.saved-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding-bottom: 70px;
}

.saved-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.saved-card > img {
  height: 390px;
}

.saved-copy {
  padding: 18px;
}

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

.saved-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.delete-saved {
  border: 0;
  background: none;
  color: var(--danger);
  font-size: 0.82rem;
  font-weight: 750;
  cursor: pointer;
}

/* PROFILE */

.profile-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 20px;
}

.profile-layout .detail-card {
  margin: 0;
}

.avatar {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
}

.profile-summary > strong {
  display: block;
  margin: 24px 0 8px;
  font-size: 1.5rem;
}

.answer-list {
  display: grid;
}

.answer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.answer-row span {
  color: var(--muted);
}

.profile-actions {
  padding: 25px 0 70px;
}

/* MODAL */

.look-modal {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.look-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(10, 10, 9, 0.68);
  cursor: pointer;
}

.look-modal-card {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 26px;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  font-size: 1.7rem;
  cursor: pointer;
}

.look-modal-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}

.look-modal-image {
  position: sticky;
  top: 0;
  height: min(820px, calc(100vh - 48px));
}

.look-modal-content {
  padding: clamp(30px, 5vw, 58px);
}

.modal-section {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.modal-section h3 {
  margin-bottom: 12px;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.modal-intro p {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.modal-list {
  display: grid;
  gap: 9px;
}

.modal-list span {
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}

.modal-list span::before {
  position: absolute;
  left: 0;
  content: "✓";
  font-weight: 900;
}

.avoid-list span::before {
  content: "—";
}

.modal-colors,
.modal-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-color {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 750;
}

.modal-color i {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
}

.modal-brand {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.modal-brand:hover {
  border-color: var(--ink);
}

.modal-actions {
  padding-top: 24px;
}

body.modal-open {
  overflow: hidden;
}

/* TOAST */

.toast {
  position: fixed;
  z-index: 600;
  top: 20px;
  left: 50%;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -15px);
  transition: 0.2s;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* TABLET */

@media (max-width: 900px) {
  .auth-screen {
    grid-template-columns: 1fr;
  }

  .auth-visual {
    min-height: 42vh;
  }

  .auth-panel {
    min-height: 58vh;
  }

  .result-hero,
  .analysis-grid,
  .home-hero,
  .studio-grid,
  .generated-grid,
  .profile-layout,
  .look-modal-layout {
    grid-template-columns: 1fr;
  }

  .result-hero img {
    min-height: 480px;
  }

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

  .studio-controls {
    order: -1;
  }

  .upload-area {
    height: 500px;
  }

  .generated-grid > img {
    height: 520px;
  }

  .desktop-logout {
    display: none;
  }

  .look-modal-image {
    position: static;
    height: 520px;
  }
}

/* MOBILE */

@media (max-width: 650px) {
  body {
    padding-bottom: 66px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .page {
    width: min(calc(100% - 28px), var(--page));
  }

  .simple-header,
  .app-header {
    padding: 0 16px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 66px;
    border-top: 1px solid var(--line);
    background: var(--white);
  }

  .mobile-nav button.active {
    background: var(--ink);
    color: var(--white);
  }

  .option-grid,
  .two-column,
  .formula-list {
    grid-template-columns: 1fr;
  }

  .image-option {
    min-height: 230px;
  }

  .image-option img {
    height: 185px;
  }

  .quiz-next {
    width: 100%;
  }

  .result-page {
    padding-top: 20px;
  }

  .result-hero {
    min-height: auto;
  }

  .result-hero img {
    min-height: 410px;
  }

  .analysis-grid {
    gap: 15px;
  }

  .palette {
    grid-template-columns: repeat(5, 1fr);
  }

  .color-chip div {
    height: 56px;
  }

  .color-chip small {
    font-size: 0.64rem;
  }

  .brand-grid,
  .look-grid,
  .saved-grid {
    grid-template-columns: 1fr;
  }

  .brand-card {
    display: grid;
    grid-template-columns: 42% 58%;
  }

  .brand-photo img {
    height: 100%;
    min-height: 190px;
  }

  .brand-wordmark {
    font-size: 0.75rem;
  }

  .brand-copy p {
    min-height: 0;
  }

  .look-card,
  .look-card img {
    min-height: 430px;
  }

  .home-hero {
    padding: 50px 0;
  }

  .home-section {
    padding: 45px 0;
  }

  .view-heading {
    padding-top: 50px;
  }

  .upload-area {
    height: 460px;
  }

  .generated-grid > img {
    height: 490px;
  }

  .saved-card {
    display: grid;
    grid-template-columns: 44% 56%;
  }

  .saved-card > img {
    height: 100%;
    min-height: 250px;
  }

  .answer-row {
    display: grid;
    gap: 5px;
  }

  .look-modal {
    padding: 0;
  }

  .look-modal-card {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  .look-modal-image {
    height: 470px;
  }

  .look-modal-content {
    padding: 28px 20px 90px;
  }

  .modal-actions .primary,
  .modal-actions .secondary {
    width: 100%;
  }
}

#generatedDescription {
  white-space: pre-line;
  line-height: 1.7;
}