/* ===== Svatební dary – seznam dárků (rezervace) ===== */

.gift-res {
  padding: 40px 0;
}

.gift-res__item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.gift-res__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gift-res__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gift-res__img--placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.55);
}

.gift-res__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 18px;
  color: #fff;
  z-index: 2;
}

.gift-res__badge--free {
  background: rgba(0, 128, 0, 0.85);
}
.gift-res__badge--reserved {
  background: rgba(220, 0, 0, 0.85);
}

.gift-res__title {
  padding: 14px 14px 0 14px;
  margin: 0;
  font-size: 18px;
}

.gift-res__desc {
  padding: 8px 14px 14px 14px;
  font-size: 14px;
  flex: 1;
}

.gift-res__link {
  padding: 10px 14px 0 14px;
  margin: 0;
}

.gift-res__msg {
  padding: 10px 14px 14px 14px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.75);
}

.gift-res__msg--error {
  color: rgba(200, 0, 0, 0.9);
}

/* tlačítko je bootstrap, jen spacing */
.gift-res__btn {
  margin: 14px;
}

/* ===== Modal ===== */
.gift-res__modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 9999;
}

.gift-res__modal-inner {
  width: min(520px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.gift-res__modal-title {
  margin: 0 0 8px;
}

.gift-res__modal-text {
  margin: 0 0 12px;
  color: rgba(0, 0, 0, 0.75);
}

.gift-res__label span {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
}

.gift-res__input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.gift-res__modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.gift-res__modal-actions .gift-res__btn {
  margin: 0;
  width: 50%;
}

/* Odkaz na produkt – tlačítko */
.gift-res__product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 14px 10px 14px;
  padding: 8px 14px;
  color: #fff;
  background-color: #caa44a;
  text-decoration: none;
  transition: all 0.2s ease;
}

.gift-res__product-link:hover {
  background: #fff;
  color: #caa44a;
  text-decoration: none;
}
