/* ===== DÁRKOVÉ BALENÍ – MINIMAL STYL ===== */
.rf-gift-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 6px;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}
.rf-gift-inline:hover { opacity: 0.85; }
.rf-gift-inline span {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.rf-gift-thumb {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  transition: transform .2s ease, box-shadow .2s ease;
}
.rf-gift-inline:hover .rf-gift-thumb {
  transform: scale(1.05);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* ===== MODAL ===== */
.rf-gift--hidden { display: none !important; }
.rf-gift__overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.rf-gift__overlay.is-open { opacity: 1; pointer-events: auto; }
.rf-gift__modal {
  background: #fff;
  border-radius: 12px;
  max-width: 480px;
  width: 92%;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  text-align: center;
  position: relative;
}
.rf-gift__modal img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 16px;
}
.rf-gift__title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: #000;
}
.rf-gift__desc {
  font-size: 14px;
  color: #222;
  line-height: 1.6;
}
.rf-gift__close {
  position: absolute;
  top: 12px; right: 16px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  width: 30px; height: 30px;
  font-size: 18px;
  cursor: pointer;
}
