/*! Rhyme Export - anasayfa Ucretsiz On Gorusme modal */
.rhx-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(26, 26, 26, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9989;
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s ease;
}
.rhx-modal-overlay.is-open { opacity: 1; pointer-events: auto; }

.rhx-modal {
  position: fixed; left: 50%; top: 50%;
  transform: translate(-50%, -48%) scale(0.97);
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  background: #F5F1EA;
  border-radius: 28px;
  box-shadow: 0 30px 80px -20px rgba(26,26,26,0.4), 0 8px 24px rgba(26,26,26,0.12);
  z-index: 9990;
  opacity: 0; pointer-events: none;
  transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
  padding: 36px 32px 32px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}
.rhx-modal.is-open {
  opacity: 1; pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.rhx-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border: 0; background: transparent;
  cursor: pointer; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #1A1A1A; opacity: 0.55;
  transition: opacity 0.2s, background 0.2s;
  font-size: 24px; line-height: 1;
}
.rhx-modal-close:hover { opacity: 1; background: rgba(26,26,26,0.06); }
.rhx-modal-title {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 32px; font-weight: 500; font-style: italic;
  color: #1A1A1A; margin: 0 0 24px; line-height: 1.15;
  letter-spacing: -0.01em;
}
.rhx-modal-form .form-row { margin-bottom: 14px; }
.rhx-modal-form label {
  display: block; font-size: 13px; font-weight: 600;
  color: #1A1A1A; margin-bottom: 6px; letter-spacing: 0.01em;
}
.rhx-modal-form input[type="text"],
.rhx-modal-form input[type="tel"],
.rhx-modal-form input[type="email"],
.rhx-modal-form select {
  width: 100%; box-sizing: border-box;
  padding: 12px 14px; border-radius: 12px;
  border: 1px solid rgba(26,26,26,0.12);
  background: #fff; font: inherit; font-size: 15px;
  color: #1A1A1A; transition: border-color 0.18s, box-shadow 0.18s;
}
.rhx-modal-form input:focus,
.rhx-modal-form select:focus {
  outline: none; border-color: #FF5F00;
  box-shadow: 0 0 0 3px rgba(255,95,0,0.12);
}
.rhx-modal-form .form-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
@media (max-width: 480px) {
  .rhx-modal-form .form-grid-2 { grid-template-columns: 1fr; }
  .rhx-modal { padding: 28px 20px 24px; border-radius: 22px; }
  .rhx-modal-title { font-size: 26px; }
}
.rhx-modal-form .kvkk-row {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 8px 0 18px; font-size: 13px; line-height: 1.45;
  color: rgba(26,26,26,0.78);
}
.rhx-modal-form .kvkk-row input { margin-top: 3px; flex-shrink: 0; }
.rhx-modal-form .kvkk-row a { color: #FF5F00; text-decoration: underline; }
.rhx-modal-form .submit-btn {
  width: 100%; padding: 14px 20px; border-radius: 999px;
  background: #FF5F00; color: #fff; border: 0;
  font: inherit; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: background 0.2s, transform 0.1s;
}
.rhx-modal-form .submit-btn:hover { background: #E55400; }
.rhx-modal-form .submit-btn:active { transform: scale(0.98); }
.rhx-modal-form .submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.rhx-modal-success {
  text-align: center; padding: 12px 8px;
}
.rhx-modal-success .check {
  width: 56px; height: 56px; margin: 0 auto 16px;
  border-radius: 50%; background: #FF5F00;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 28px;
}
.rhx-modal-success h4 {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 24px; font-style: italic; font-weight: 500;
  margin: 0 0 8px; color: #1A1A1A;
}
.rhx-modal-success p { color: rgba(26,26,26,0.7); margin: 0; font-size: 14px; }
.rhx-modal-error {
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.25);
  color: #b02a37; padding: 10px 14px; border-radius: 10px;
  font-size: 13px; margin-bottom: 14px;
}
body.rhx-modal-open { overflow: hidden; }
