/* Floating Navigation Styles */
.floating-nav {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 20000; /* Increased z-index significantly above confetti (9999) */
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1 !important; /* Force visible */
  pointer-events: auto !important;
}

/* 
.floating-nav.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
} 
*/


.floating-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-white, #FFFFFF);
  color: var(--color-text, #5A4A42);
  border: 1px solid var(--color-gold, #C9A962);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

.floating-nav-btn:hover {
  background: var(--color-gold, #C9A962);
  color: var(--color-white, #FFFFFF);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(201, 169, 98, 0.25);
}

.floating-nav-btn svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.floating-nav-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--color-pink-dark, #D4A5A5);
  color: var(--color-white, #FFFFFF);
  font-size: 12px;
  font-weight: bold;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--color-white, #FFFFFF);
}

/* Mobile Adaptation */
@media (max-width: 768px) {
  .floating-nav {
    right: 15px;
    bottom: 80px;
    gap: 12px;
  }
  
  .floating-nav-btn {
    width: 44px;
    height: 44px;
  }
  
  .floating-nav-btn svg {
    width: 20px;
    height: 20px;
  }
}
