@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --color-brand-primary: #e11d68;
  --color-brand-dark: #be185d;
  --color-brand-light: #fff0f5;
  --color-brand-soft: #fdf2f8;
  --color-botanical: #059669;
  --color-botanical-light: #ecfdf5;
  --color-text-main: #0f172a;
  --color-text-muted: #64748b;
  --color-border-subtle: #fce7f3;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--color-text-main);
  background-color: #fff9fa;
  background-image: 
    radial-gradient(at 0% 0%, rgba(225, 29, 104, 0.06) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(225, 29, 104, 0.05) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(16, 185, 129, 0.03) 0px, transparent 60%),
    url('../images/flamingo-bg.svg');
  background-repeat: repeat;
  background-size: auto, auto, auto, 420px 420px;
  background-attachment: fixed;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Flamingo watermark accents */
.flamingo-watermark-hero {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(225, 29, 104, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.flamingo-glow {
  background: radial-gradient(circle, rgba(225, 29, 104, 0.15) 0%, rgba(253, 242, 248, 0) 72%);
}

/* Light Card Style */
.light-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border-subtle);
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px -6px rgba(225, 29, 104, 0.07), 0 4px 12px -2px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -8px rgba(225, 29, 104, 0.12), 0 6px 16px -3px rgba(0, 0, 0, 0.05);
  border-color: #fbcfe8;
}

/* Modern Pill Buttons */
.btn-herbolen-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #e11d68 0%, #db2777 50%, #be185d 100%);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.025em;
  padding: 1rem 2rem;
  border-radius: 9999px;
  box-shadow: 0 10px 25px -4px rgba(225, 29, 104, 0.42), 0 4px 10px -2px rgba(225, 29, 104, 0.25);
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-herbolen-primary:hover {
  background: linear-gradient(135deg, #be185d 0%, #9d174d 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -4px rgba(225, 29, 104, 0.55), 0 6px 12px -2px rgba(225, 29, 104, 0.35);
  color: #ffffff;
}

.btn-herbolen-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #ffffff;
  color: #0f172a;
  font-weight: 700;
  padding: 0.95rem 1.75rem;
  border-radius: 9999px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-herbolen-secondary:hover {
  border-color: #e11d68;
  color: #e11d68;
  background: #fff5f8;
  transform: translateY(-2px);
}

/* Floating Herbolen Tube Animation */
@keyframes floatTube {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(-1deg);
  }
}

.floating-herbolen {
  animation: floatTube 5s ease-in-out infinite;
}

/* Form Styles & Validation Indicators */
.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  outline: none;
  transition: all 0.2s ease;
}

.form-input:focus {
  border-color: #e11d68;
  box-shadow: 0 0 0 4px rgba(225, 29, 104, 0.12);
}

.form-input.is-valid {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.form-input.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.input-feedback {
  font-size: 0.8125rem;
  font-weight: 600;
  margin-top: 0.35rem;
  display: none;
}

.input-feedback.show {
  display: block;
}

.input-feedback.error {
  color: #ef4444;
}

.input-feedback.success {
  color: #059669;
}

/* Price Badge */
.price-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  border: 2px solid #fce7f3;
  padding: 0.6rem 1.5rem;
  border-radius: 9999px;
  box-shadow: 0 6px 20px rgba(225, 29, 104, 0.08);
}

/* Ingredient Card */
.ingredient-badge {
  background: #ffffff;
  border: 1px solid #fce7f3;
  border-radius: 1.25rem;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.ingredient-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px -4px rgba(225, 29, 104, 0.1);
  border-color: #f472b6;
}

/* Pulse animation for CTA alert */
@keyframes pulseSubtle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.92;
    transform: scale(1.02);
  }
}

.pulse-badge {
  animation: pulseSubtle 3s ease-in-out infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #fff5f8;
}
::-webkit-scrollbar-thumb {
  background: #f472b6;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #e11d68;
}
