/* Form Hover Effects - Purchase & Commission Pages */

/* Booktype Cards Hover Effect */
.booktype-card:not(.cursor-not-allowed):hover > div {
  border-color: rgba(255, 255, 255, 0.35) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.booktype-card {
  transition: all 0.2s ease;
}

.booktype-card > div {
  transition: all 0.2s ease;
}

/* Style Selection Cards Hover (Commission Page) */
.style-card.cursor-pointer:hover {
  border-color: rgba(255, 255, 255, 0.35) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.style-card {
  transition: all 0.2s ease;
}
