/* Lab Cafe — feedback card.
   Product-card-shaped invitation to leave feedback ("تجربه‌ات چطور بود؟"),
   meant to sit inline as the last item in a horizontal product rail
   (see main .product-items). Same keyline-card language as .product-card —
   keyline border, card-pattern watermark, square corners — kept in its own
   class namespace so it never couples to real product-card markup. */

.feedback-card-link {
  display: inline-block;
  width: 100%;
  margin: 0 10px;
  text-decoration: none;
  color: inherit;
}

.feedback-card {
  box-sizing: border-box;
  height: 100%;
  min-height: 450px;
  padding: 14px;
  border: 2px solid #000;
  background-color: #fff;
  background-image: url("/static/menu/images/card_pattern.svg");
  background-repeat: no-repeat;
  background-size: 254px 249px;
  text-align: right;
  white-space: normal;
  display: flex;
  flex-direction: column;
}

.feedback-card__art {
  width: 200px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.feedback-card__art img {
  height: 150px;
  width: auto;
  display: block;
}

.feedback-card h2 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
  color: #212121;
}

.feedback-card h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 200;
  color: #212121;
}

.feedback-card p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.7;
  color: #212121;
}

.feedback-card__cta {
  margin-top: auto;
  padding-top: 25px;
}

.feedback-card__cta .button-accent {
  display: inline-block;
  background: var(--bg-accent);
  color: var(--fg-accent);
  border: 2px solid #000;
  box-shadow: 3px -3px 0 #000;
  font-size: 15px;
  font-weight: 900;
  padding: 12px 24px;
}
