.card-pricing {
  border: none;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--main-shadow);
  overflow: hidden;
  transition: transform 0.2s;
  border: 1.5px solid var(--main-green-light);
  margin-bottom: 2rem;
}
.card-pricing:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 4px 32px 0 rgba(59, 125, 90, 0.13);
  border-color: var(--main-green);
}
.card-img-top {
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  object-fit: cover;
  display: block;
  width: 100%;
  height: 100%; /* výška sa riadi cez .image-wrapper */
  background: var(--main-green-light);
}

.image-wrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  background: var(--main-green-light);
}

.card-body {
  flex: 1 1 auto;              /* flexibilné rozloženie */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  min-height: 200px;           /* voliteľné, na rovnaké karty */
  overflow: hidden;            /* ak by niečo pretieklo */
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--main-green);
  margin-bottom: 0.4rem;
}
.old-price {
  text-decoration: line-through;
  color: #b7b7b7;
  font-size: 1.1rem;
  margin-right: 1rem;
}
.book-btn {
  background-color: #F0EBE6;
  color: #3b7d5a;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.7rem 2.2rem;
  margin-top: 1.1rem;
  transition: background 0.2s;
  box-shadow: 0 2px 16px 0 rgba(60, 120, 90, 0.08);
  text-decoration: none;
  border: none;
}
.book-btn:hover {
  background-color: #d6c4b2 ;
  color: #fff;
}

@media (max-width: 991px) {
  .image-wrapper {
    height: 200px;
  }
}
@media (max-width: 767px) {
  .image-wrapper {
    height: 160px;
  }
}