.real-world__single:hover .installment_price {
  color: var(--thm-base);
}

.real-world__single img {
  width: 50px;
  height: 50px;
  transition: transform 500ms ease;
}

.real-world__single:hover img {
  transform: scale(0.9);
  filter: brightness(0) invert(1);
}

.installment_price {
  transition: color 500ms ease;
}

.real-world__btn {
  cursor: pointer;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-content {
  background: #fff;
  padding: 30px;
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 25px;
  cursor: pointer;
}

.modal-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

.modal-form button {
  width: 100%;
  padding: 12px;
}

.modal-form button:hover {
  background-color: var(--thm-black);
  color: var(--thm-base);
}
