/* polaroids.html — polaroid-only styles (shared shop form styles come from photocards.css) */

.form-group.error select {
  border-color: #dc3545;
}

/* Success Message Overlay */
.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.success-message {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(91, 33, 182, 0.15);
  border: 1px solid var(--lavender-200);
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.success-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--purple-900);
  margin-bottom: 0.5rem;
}

.success-text {
  color: var(--purple-600);
  margin-bottom: 1rem;
}

.success-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--purple-600);
  margin-bottom: 1.5rem;
}

.btn-close {
  background: var(--purple-500);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-close:hover {
  background: var(--purple-600);
  transform: translateY(-1px);
}
