/* PREMIUM FEMININE UI
 * Refined cards, buttons, and interactions
 */

/* Soft Luxury Cards */
.card-feminine-premium {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 40px;
  padding: 3rem;
  transition: all 0.8s cubic-bezier(0.2, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--feminine-shadow);
}

.card-feminine-premium:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 182, 193, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(255, 182, 193, 0.15);
}

/* Rose Gold Buttons */
.btn-feminine-luxury {
  padding: 1.2rem 3.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  background: linear-gradient(135deg, #ff2e93 0%, #ff7eb3 100%);
  border: none;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  text-decoration: none; /* Remove underline */
  display: inline-flex; /* Ensure vertical alignment */
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 46, 147, 0.2);
  transition: all 0.6s ease;
}

.btn-feminine-luxury::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.btn-feminine-luxury:hover::after {
  transform: translateX(100%);
}

.btn-feminine-luxury:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 46, 147, 0.4);
}

/* Luxury Form Inputs */
.input-feminine {
  background: rgba(255, 255, 255, 0.01) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 15px !important;
  padding: 1.2rem !important;
  color: #fff !important;
  font-family: 'Inter', sans-serif;
  transition: all 0.4s ease;
}

.input-feminine:focus {
  border-color: var(--hot-pink) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  box-shadow: 0 0 20px rgba(255, 46, 147, 0.1);
}

/* Elegant Tags/Badges */
.badge-feminine {
  background: rgba(255, 182, 193, 0.1);
  border: 1px solid rgba(255, 182, 193, 0.3);
  color: #ff85a2;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
