/* Global Button Reset & Base Styles */
.btn {
  font-family: 'Inter', sans-serif;
  /* Matches your typography */
  font-weight: 500;
  font-size: 1rem;
  /* 16px base */
  line-height: 1.5;
  border-radius: 0px !important;
  /* Softer than Bootstrap's default */
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease-in-out;
  /* Smooth hovers */
  border: none;
  /* Reset for custom borders */
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  user-select: none;
  

}

/* Primary Button: Solid Pink (Main CTAs) */
.btn-primary {
  background-color: #ff66c4 !important;
  color: #ffffff;
  border: none;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: #e55ab8;
  /* Darker pink on hover/focus */
  color: #ffffff;
  transform: translateY(-1px);
  /* Subtle lift */
}

.btn-primary:active {
  background-color: #d94fa9;
  /* Even darker on click */
  transform: translateY(0);
}

/* Secondary Button: Outline Pink (Secondary Actions) */
.btn-secondary {
  background-color: transparent !important;
  color: #ff66c4;
  border: 2px solid !important;
  border-color: #ff66c4;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background-color: #ff66c4;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-secondary:active {
  background-color: #e55ab8;
  color: #ffffff;
}

/* Tertiary Button: Ghost Pink (Minimal Actions) */
.btn-tertiary {
  background-color: transparent;
  color: #ff66c4;
  border: none;
  font-weight: 400;
}

.btn-tertiary:hover,
.btn-tertiary:focus-visible {
  color: #e55ab8;
  text-decoration: underline;
  transform: scale(1.05);
}

.btn-tertiary:active {
  color: #d94fa9;
}

/* Disabled State (All Variants) */
.btn:disabled,
.btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Focus & Accessibility */
.btn:focus-visible {
  outline: 2px solid #ff66c4;
  outline-offset: 2px;
}

/* Size Variants (Optional: Use with Bootstrap classes) */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .btn {
    padding: 0.625rem 1.25rem;
    /* Slightly smaller on mobile */
    font-size: 0.9375rem;
  }

  .btn-lg {
    padding: 0.875rem 1.5rem;
    width: 100%;
    /* Full-width on small screens for CTAs */
  }
}

/* Dark Mode Support (Optional: Toggle via class on body) */
@media (prefers-color-scheme: dark) {
  body.dark-mode .btn-primary {
    background-color: #ff66c4;
    color: #ffffff;
  }

  body.dark-mode .btn-secondary {
    color: #ff66c4;
    border-color: #ff66c4;
  }

  body.dark-mode .btn-secondary:hover {
    background-color: #ff66c4;
    color: #ffffff;
  }
}

.heart-btn.simple-scale {
  transition: all 0.2s ease-in-out;
}

.heart-btn.simple-scale:hover {
  transform: scale(1.15);
  background-color: #b300ff !important;
}