:root {
  --botanical-bg: #F4F5F0;
  --botanical-surface: #FFFFFF;
  --botanical-tone: #4A7C59;
  --botanical-tone-hover: #3A6346;
  --botanical-ink: #2C3E2D;
  --botanical-gradient: linear-gradient(135deg, #4A7C59 0%, #6BA37A 100%);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Gallery Logic strictly via CSS */
.flora-radio {
  display: none;
}

.flora-slide {
  display: none;
}

#flora-pic-1:checked ~ .flora-main-stage .flora-slide-1,
#flora-pic-2:checked ~ .flora-main-stage .flora-slide-2,
#flora-pic-3:checked ~ .flora-main-stage .flora-slide-3,
#flora-pic-4:checked ~ .flora-main-stage .flora-slide-4 {
  display: block;
}

/* Thumbnail Selection Styling */
#flora-pic-1:checked ~ .flora-thumbnails [for="flora-pic-1"],
#flora-pic-2:checked ~ .flora-thumbnails [for="flora-pic-2"],
#flora-pic-3:checked ~ .flora-thumbnails [for="flora-pic-3"],
#flora-pic-4:checked ~ .flora-thumbnails [for="flora-pic-4"] {
  border-color: var(--botanical-tone);
  opacity: 1;
}

.flora-thumbnails label {
  transition: all 0.2s ease-in-out;
  opacity: 0.7;
}

.flora-thumbnails label:hover {
  opacity: 1;
}

/* CTA Standard Animations */
.flora-purchase-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(74, 124, 89, 0.4), 0 4px 6px -2px rgba(74, 124, 89, 0.2);
  background: linear-gradient(135deg, #3A6346 0%, #4A7C59 100%);
}

.botanical-paragraphs p {
  margin-bottom: 1.25rem;
}