* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top left, #ffe1ef, transparent 32%),
              radial-gradient(circle at bottom right, #fff1c7, transparent 34%),
              #fffaf4;
  color: #2d221f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.bakery-app {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0;
}

.hero {
  text-align: center;
  margin-bottom: 34px;
}

.eyebrow {
  color: #ad5f75;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.4rem, 10vw, 7.8rem);
  line-height: 0.88;
  letter-spacing: -0.09em;
  margin: 10px 0 16px;
}

.hero p:last-child {
  color: #6f5d57;
  font-size: 1.08rem;
}

.workspace {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.timer-card,
.recipe-card,
.shop-section,
.design-note {
  background: rgba(255, 255, 255, 0.83);
  border: 1px solid rgba(207, 150, 125, 0.28);
  border-radius: 34px;
  box-shadow: 0 26px 80px rgba(117, 69, 50, 0.12);
  padding: 28px;
  backdrop-filter: blur(18px);
}

.shop-window {
  display: grid;
  place-items: center;
  min-height: 230px;
  background: linear-gradient(135deg, #fff6df, #fff0f6);
  border: 1px solid #f0d6c5;
  border-radius: 30px;
  padding: 22px;
}

.ingredient {
  font-size: 7.8rem;
  line-height: 1;
}

.stage,
.helper {
  color: #7a4b3d;
  font-weight: 800;
  text-align: center;
}

.time {
  font-size: clamp(4.3rem, 11vw, 8rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 1;
  margin: 24px 0 8px;
  text-align: center;
}

.timer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

button {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 12px 16px;
}

.timer-actions button,
.secondary {
  background: #2d221f;
  color: white;
}

.timer-actions button:nth-child(2),
.timer-actions button:nth-child(3),
.clear {
  background: #fff0f6;
  border: 1px solid #edcfda;
  color: #853b51;
}

.recipe-card h2,
.shop-heading h2 {
  font-size: 2rem;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 18px;
}

.recipe-steps {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.step {
  align-items: center;
  background: #fffaf7;
  border: 1px solid #f1d8ca;
  border-radius: 18px;
  display: flex;
  gap: 12px;
  padding: 12px;
}

.step.done {
  background: #f8ffe8;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: #fff6df;
  border-radius: 14px;
  font-size: 1.5rem;
}

label {
  color: #6d3046;
  display: block;
  font-weight: 900;
  margin: 16px 0 10px;
}

textarea {
  width: 100%;
  min-height: 110px;
  border: 1px solid #efd1dc;
  border-radius: 22px;
  color: #2d221f;
  font: inherit;
  outline: none;
  padding: 16px;
  resize: vertical;
}

.secondary {
  margin-top: 12px;
  width: 100%;
}

.reflection {
  background: #fff6df;
  border: 1px solid #f1d8ca;
  border-radius: 20px;
  color: #6f5d57;
  font-weight: 700;
  padding: 16px;
}

.shop-section,
.design-note {
  margin-top: 22px;
}

.shop-heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.collection {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.treat-card {
  background: #fffaf7;
  border: 1px solid #f1d8ca;
  border-radius: 24px;
  min-height: 150px;
  padding: 18px;
  text-align: center;
}

.treat-icon {
  font-size: 3rem;
}

.treat-card h3 {
  margin: 8px 0 4px;
}

.treat-card p {
  color: #6f5d57;
  margin: 0;
}

.design-note p:last-child {
  color: #6f5d57;
  font-weight: 650;
  margin: 0;
}

@media (max-width: 860px) {
  .workspace,
  .collection {
    grid-template-columns: 1fr;
  }

  .shop-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}
