/* Custom styles beyond Tailwind */
:root {
  --gradient-candy: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Gradient text utility */
.bg-gradient-candy {
  background: var(--gradient-candy);
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #fff0f7; }
::-webkit-scrollbar-thumb { background: #ffc6e3; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: #ff99cb; }

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

/* Gallery item transition */
.gallery-item {
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

/* Lightbox open/close */
#lightbox {
  transition: opacity 0.3s ease;
}

/* Selection */
::selection {
  background: #ffdee9;
  color: #d10059;
}
