/* Floating Pink Tutu Wishlist Pill */
.tutu-floating-pill {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ff69b4;
  color: #ffffff !important;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  padding: 10px 18px;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(255, 105, 180, 0.4), 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.tutu-floating-pill:hover {
  background-color: #e0529e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 105, 180, 0.5), 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tutu-floating-pill .pill-icon {
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 576px) {
  .tutu-floating-pill {
    bottom: 16px;
    right: 16px;
    padding: 8px 14px;
    font-size: 14px;
  }
}

/* Prevent pagination blowout on mobile */
.pagination {
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 4px !important;
  max-width: 100% !important;
  padding-left: 0 !important;
}

.pagination .page-item .page-link {
  padding: 0.375rem 0.6rem !important;
  font-size: 0.85rem !important;
}

/* Optional: hide middle page numbers on tiny screens to keep it ultra-clean */
@media (max-width: 480px) {
  .pagination .page-item:not(.active):not(:first-child):not(:last-child):not(:nth-child(2)):not(:nth-last-child(2)) {
    display: none !important;
  }
}

