@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@700&display=swap');

:root {
  --bg-white: #FFFFFF;
  --bg-cream: #FAFAFA;
  --primary: #10B981; /* Emerald Green */
  --primary-deep: #065F46;
  --accent: #B28B43; /* Muted Gold */
  --text-main: #1F2937;
  --text-dim: #6B7280;
  --border: #E5E7EB;
  --glass: rgba(255, 255, 255, 0.8);
  
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
}

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

body {
  background-color: var(--bg-white);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background Soft Accents */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(178, 139, 67, 0.03) 0%, transparent 40%);
  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.1;
  color: var(--primary-deep);
}

h4 {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-deep), var(--accent));
  -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(10px);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 99px;
  font-weight: 600;
  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: var(--primary);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  background: var(--primary-deep);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

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

.btn-outline:hover {
  background: var(--primary);
  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: 4px;
  position: relative;
  box-shadow: 0 4px 10px rgba(178, 139, 67, 0.3);
}

.discount-sticker {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #EF4444; /* Bright Red */
  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(15deg);
  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: var(--primary-deep);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: 0.5rem;
  vertical-align: middle;
}
