* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #2f241d;
  background: linear-gradient(180deg, #f7f2ea 0%, #f3ede3 100%);
}

.page {
  min-height: 100vh;
}

.hero {
  padding: 56px 20px 28px;
  background: linear-gradient(135deg, #f8f4ed 0%, #efe4d2 100%);
  border-bottom: 1px solid rgba(120, 92, 59, 0.12);
}

.hero__content {
  max-width: 860px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8c6d45;
}

h1 {
  margin: 0 0 16px;
  font-size: 42px;
  line-height: 1.1;
}

.hero__text {
  margin: 0 0 24px;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.6;
  color: #5f4a38;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 28px 20px 60px;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(63, 43, 26, 0.08);
}

.hidden {
  display: none;
}

.card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.card__top-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.step {
  margin: 0;
  color: #8c6d45;
  font-size: 14px;
}

h2 {
  margin: 0 0 22px;
  font-size: 28px;
  line-height: 1.2;
}

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

.option-btn {
  border: 1px solid #d9c7ad;
  background: #fffaf4;
  color: #2f241d;
  border-radius: 14px;
  padding: 16px;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  transition: 0.2s ease;
}

.option-btn:hover {
  background: #f8efe4;
  border-color: #c9ab80;
}

.btn {
  border: none;
  border-radius: 12px;
  padding: 14px 20px;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary {
  background: #8c6d45;
  color: #fff;
}

.btn-primary:hover {
  background: #765a37;
}

.btn-light {
  background: #f2e8dc;
  color: #4f3d2d;
}

.btn-light:hover {
  background: #e8dbc9;
}

.result-description {
  margin: 0 0 24px;
  color: #5f4a38;
  font-size: 17px;
  line-height: 1.6;
}

.bottles {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.bottle {
  background: #faf6f1;
  border: 1px solid #ebdfd0;
  border-radius: 16px;
  padding: 16px;
}

.bottle__name {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: bold;
}

.bottle__price {
  margin: 0 0 8px;
  color: #8c6d45;
  font-weight: bold;
}

.bottle__desc {
  margin: 0;
  color: #5f4a38;
  line-height: 1.5;
}

.empty-message {
  background: #fff4ef;
  border: 1px solid #ebc4af;
  color: #7a4d34;
  padding: 16px;
  border-radius: 14px;
  margin-bottom: 24px;
}

.result-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  .options {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 20px;
  }

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

  .card__top-actions {
    justify-content: flex-start;
  }
}
