.wine-page {
  padding: 40px 0 72px;
}

.wine-page__layout {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 280px) minmax(240px, 320px);
  align-items: start;
  column-gap: 48px;
}

.wine-page__title {
  margin: 0 0 20px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.wine-page__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #1c1c21;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.wine-page__score {
  font-variant-numeric: tabular-nums;
}

.wine-page__stars {
  display: inline-flex;
  gap: 1px;
  color: #bb3333;
  letter-spacing: 1px;
  font-size: 20px;
  line-height: 1;
}

.wine-page__star {
  color: #d9d9de;
}

.wine-page__star--full {
  color: #bb3333;
}

.wine-page__star--half {
  background: linear-gradient(90deg, #bb3333 50%, #d9d9de 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wine-page__info-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border: 1px solid #8e8f97;
  border-radius: 50%;
  color: #8e8f97;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  cursor: help;
}

.wine-page__reviews {
  margin: 0 0 12px;
  color: #2d2e34;
  font-size: 14px;
  font-weight: 500;
}

.wine-page__reviews a {
  color: inherit;
}

.wine-page__reviews a:hover {
  color: #bb3333;
}

.wine-page__reviews small {
  color: #565760;
  font-weight: 400;
}

.wine-page__choice {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 20px;
  color: #bb3333;
  font-size: 12px;
  font-weight: 700;
}

.wine-page__choice-icon {
  position: relative;
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #b74c56;
}

.wine-page__choice-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 3px;
  width: 5px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.wine-page__tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wine-page__tag {
  width: fit-content;
  padding: 11px 18px 10px;
  border-radius: 999px;
  background: #ececf0;
  color: #31323a;
  font-size: 13px;
  line-height: 1;
}

.wine-page__bottle {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 360px;
}

.wine-page__bottle img {
  width: auto;
  max-width: 220px;
  height: auto;
  max-height: 520px;
  object-fit: contain;
}

.wine-page__aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wine-page__card {
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.wine-page__flavor {
  margin-bottom: 12px;
}

.wine-page__flavor:last-child {
  margin-bottom: 0;
}

.wine-page__flavor-label {
  margin-bottom: 6px;
  color: #2f3037;
  font-size: 14px;
  line-height: 1.4;
}

.wine-page__bar {
  width: 100%;
  height: 4px;
  overflow: hidden;
  border-radius: 6px;
  background: #d9d9de;
}

.wine-page__bar span {
  display: block;
  height: 100%;
  border-radius: 6px;
  background: #bb3333;
}

.wine-page__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 12px 20px;
  border: 2px solid #bb3333;
  border-radius: 14px;
  background: transparent;
  color: #bb3333;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.wine-page__cta:hover {
  background: #bb3333;
  color: #fff;
}

@media (max-width: 900px) {
  .wine-page__layout {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .wine-page__bottle {
    order: -1;
    min-height: 0;
  }

  .wine-page__bottle img {
    max-height: 360px;
  }
}
