@charset "UTF-8";

.price_popup_overlay {
  position: fixed;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgb(0 0 0 / 60%);
  inset: 0;
}

.price_popup {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 90%;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgb(0 0 0 / 20%);
  text-align: center;
  max-width: 500px;
}

.popup-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.lock-icon {
  width: 50px;
  object-fit: contain;
}

.popup-images {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.img-wrap {
  position: relative;
}

.img-wrap img {
  width: 100%;
  margin: auto;
  border-radius: 10px;
  border: 1px solid #ccc;
  max-width: 300px;
  opacity: 0.8;
}

.lock-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 2.5rem;
  color: #d33;
  opacity: 0.8;
  transform: translate(-50%, -50%);
}

.close-btn,
.add-btn {
  display: inline-block;
  align-self: center;
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
  color: #fff;
  background: #333;
  border-radius: 1rem;
  line-height: 1.5;
  cursor: pointer;
  transition: background 0.2s;
}

.add-btn {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  background: #d74600;
  box-shadow: 0 4px 0 #555;
  font-weight: bold;
  transition: ease-in-out 0.2s;
}

@media screen and (width <=480px) {
  .add-btn {
    font-size: 0.875rem;
  }
}

.add-btn:hover {
  box-shadow: none;
  transform: translateY(4px);
}

.add-btn::after {
  content: "\f101";
  right: 0;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.check_price {
  display: inline-block;
  padding: 4px 8px;
  font-size: 0.75rem;
  color: #8c6d54;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #8c6d54;
  cursor: pointer;
  transition: background 0.2s;
}

.check_price:hover {
  color: #fff;
  background: #8c6d54;
}

.-fs-1rem {
  font-size: 1rem;
}
