/* Astro Mauritius — review form styles */

.rv-wrap {
  max-width: 620px;
  margin: 0 auto;
  padding: 48px 20px 90px;
}

.rv-header { text-align: center; margin-bottom: 34px; }
.rv-logo {
  width: min(320px, 70vw);
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 6px 24px rgba(240, 157, 81, 0.25));
}

.rv-card { padding: clamp(24px, 5vw, 44px); }

/* Honeypot — off-screen, never display:none (some bots skip those) */
.rv-hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
}

/* Photo dropzone */
.rv-drop {
  border: 1.5px dashed var(--am-glass-border);
  border-radius: var(--am-radius-sm);
  min-height: 150px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  overflow: hidden;
  position: relative;
}
.rv-drop:hover, .rv-drop:focus-visible, .rv-drop.dragover {
  border-color: var(--am-orange);
  background: rgba(240, 157, 81, 0.06);
  outline: none;
}
.rv-drop-idle {
  display: grid;
  place-items: center;
  gap: 8px;
  color: var(--am-silver-dim);
  font-size: 0.9rem;
  padding: 22px;
  text-align: center;
}
.rv-drop-idle svg { width: 30px; height: 30px; color: var(--am-orange); }
.rv-preview { width: 100%; max-height: 280px; object-fit: cover; display: block; }

/* Profile row */
.rv-profile-row { display: flex; align-items: center; gap: 14px; }
.rv-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--am-orange);
}
.rv-avatar-btn { padding: 0.6em 1.4em; font-size: 0.85rem; }

/* Recommend checkbox */
.rv-check {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; cursor: pointer; color: var(--am-silver);
}
.rv-check input {
  width: 19px; height: 19px;
  accent-color: var(--am-orange);
  cursor: pointer;
}

.rv-submit { width: 100%; margin-top: 6px; }
.rv-legal { text-align: center; margin-top: 14px; }
.rv-global { text-align: center; margin-top: 12px; font-size: 0.9rem; }

/* Success panel */
.rv-success { text-align: center; padding: 56px 34px; animation: rvFade 0.6s var(--am-ease); }
.rv-success-star {
  font-size: 46px;
  color: var(--am-orange);
  text-shadow: 0 0 26px rgba(240, 157, 81, 0.8);
  margin-bottom: 12px;
  animation: rvPulse 2.4s ease-in-out infinite;
}
.rv-success .am-btn { margin-top: 20px; }

@keyframes rvFade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes rvPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.12); } }

@media (max-width: 480px) {
  .rv-wrap { padding-top: 30px; }
  .am-star-picker button svg { width: 40px; height: 40px; }
}
