.nys-gift-box {
  margin: 18px 0;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
}

.nys-gift-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nys-gift-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nys-gift-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
}

.nys-gift-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nys-gift-check {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid #d2c1c7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
}

.nys-gift-item input[type="radio"]:checked + .nys-gift-check {
  background: #f2b7c8;
  border-color: #f2b7c8;
}

.nys-gift-item input[type="radio"]:checked + .nys-gift-check::after {
  content: "✓";
  font-size: 12px;
  color: #fff;
}

.nys-gift-image {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #eee;
  flex-shrink: 0;
}

.nys-gift-label {
  font-size: 14px;
}
