@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Fraunces:opsz,wght@9..144,600;9..144,700&display=swap');

:root {
  --bg-white: #f8f9ff;
  --bg-cream: #eef2ff;
  --primary: #2563eb;
  --primary-deep: #1e3a8a;
  --accent: #f97316;
  --text-main: #0b132b;
  --text-dim: #475569;
  --border: #d6defa;
  --glass: rgba(255, 255, 255, 0.88);
  
  --font-serif: 'Fraunces', serif;
  --font-sans: 'Manrope', sans-serif;
  --font-display: 'Fraunces', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background:
    radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.12), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(249, 115, 22, 0.10), transparent 42%),
    var(--bg-white);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

/* Background Soft Accents */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(249, 115, 22, 0.06) 0%, transparent 45%);
  z-index: -1;
}

/* Orbs (Modified for Light Theme) */
.orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -2;
  opacity: 0.1;
  animation: float-slow 30s infinite alternate ease-in-out;
}

.orb-primary {
  background: var(--primary);
  top: -100px;
  right: -50px;
}

.orb-secondary {
  background: var(--accent);
  bottom: -50px;
  left: -100px;
}

@keyframes float-slow {
  from { transform: translate(0, 0); }
  to { transform: translate(30px, 30px); }
}

@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(-15px); }
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--primary-deep);
}

h4 {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Components */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.glass-panel {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 3rem;
  box-shadow: 0 14px 45px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 65px rgba(15, 23, 42, 0.12);
  border-color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  font-family: var(--font-sans);
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: #fff;
  border: none;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(30, 58, 138, 0.35);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: rgba(37, 99, 235, 0.1);
  color: #fff;
}

/* Grid Layouts */
.wellness-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Badges & Stickers */
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 6px 14px rgba(249, 115, 22, 0.35);
}

.discount-sticker {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #ef4444;
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  transform: rotate(12deg);
  box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4);
  animation: pulse-red 2s infinite;
  z-index: 10;
}

.discount-sticker span {
  font-size: 0.6rem;
  text-transform: uppercase;
  margin-top: -2px;
}

@keyframes pulse-red {
  0% { transform: rotate(15deg) scale(1); }
  50% { transform: rotate(15deg) scale(1.1); }
  100% { transform: rotate(15deg) scale(1); }
}

/* New Hover Effects */
.btn-primary:active {
  transform: scale(0.95);
}

.floating-badge {
  background: rgba(30, 58, 138, 0.95);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: 0.5rem;
  vertical-align: middle;
}

a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--primary);
}
