/* ============================================================================
   BONNIE LASS FLORALS - AUTHENTICATION & PROFILE STYLES
   Floral-inspired design for login and profile features
   ============================================================================ */

/* Login Modal */
#loginModal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(230, 57, 70, 0.2);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#loginModal.active {
  display: flex;
}

#loginModalContent {
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 35px rgba(255, 107, 107, 0.25);
  min-width: 300px;
  max-width: 90vw;
  border-top: 5px solid #ff6b6b; /* Primary coral */
}

.hidden {
  display: none;
}

/* Profile circle and dropdown styling */
#profileCircleContainer {
  position: relative;
  display: none;
  vertical-align: middle;
}

#profileCircle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  border: 3px solid #ffd93d; /* Sunny yellow */
  background: #fff;
  transition: all 0.2s ease;
}

#profileCircle:hover {
  transform: scale(1.05);
  border-color: #ffed4e;
}

#profileDropdown {
  display: none;
  position: absolute;
  top: 48px;
  right: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 30px rgba(255, 107, 107, 0.2);
  min-width: 200px;
  z-index: 999;
  text-align: left;
  border: 2px solid #ff8787; /* Accent coral */
}

#profileDropdown a,
#profileDropdown button {
  display: block;
  width: 100%;
  padding: 0.9em 1.3em;
  border-bottom: 1px solid #ffb3ba;
  color: #2d2d2d;
  text-decoration: none;
  background: none;
  text-align: left;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: 10px;
  transition: all 0.2s ease;
  font-weight: 500;
}

#profileDropdown a:last-child,
#profileDropdown button:last-child {
  border-bottom: none;
}

#profileDropdown a:hover,
#profileDropdown button:hover {
  background: #fff5e6; /* Warm cream */
  color: #ff6b6b; /* Primary coral */
}

#userInfoDropdown {
  border-bottom: 2px solid #ffb3ba;
  color: #ff6b6b;
  background: #fff5e6;
  font-weight: 600;
}

