/* Flipster Listings — Custom Styles */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Form focus states */
input:focus,
textarea:focus,
select:focus {
  outline: none;
}

/* Loading state for submit button */
button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Photo grid aspect ratio fallback */
.aspect-\[4\/3\] {
  aspect-ratio: 4 / 3;
}

/* Lightbox background click */
#lightbox {
  cursor: pointer;
}

#lightbox img {
  cursor: default;
}

/* Print styles */
@media print {
  header, footer, #inquiry-form, #lightbox {
    display: none !important;
  }
}
