/* ==============================================================================
   TOUTOULUMI™ HUMAN & BOUTIQUE DESIGN SYSTEM (HIGH-END EDITORIAL)
   ============================================================================== */

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

:root {
  --bg-canvas: #FAF7F2;
  /* Warm textured paper feel */
  --bg-peach: #FFF0E8;

  --text-main: #251D1A;
  /* Very dark espresso */
  --text-muted: #594A46;
  --text-light: #8C7B77;

  --accent-coral: #D95A3A;
  /* Deeper editorial terracotta */
  --accent-coral-hover: #C24D2F;
  --accent-cream: #FDFBF7;

  --border-subtle: #E8DFD5;
}

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

body {
  background-color: var(--bg-canvas);
  /* CSS Noise Grain Texture */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
  color: var(--text-main);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
.font-serif,
.logo-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  /* Lighter weight for high-end feel */
  color: var(--text-main);
  letter-spacing: -0.03em;
}

h1 i,
h2 i,
h3 i {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-coral);
}

p {
  color: var(--text-muted);
}

/* Animations */
@keyframes breathe {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

@keyframes float-rotated {
  0% { transform: translateY(0px) rotate(4deg); }
  50% { transform: translateY(-12px) rotate(4deg); }
  100% { transform: translateY(0px) rotate(4deg); }
}

/* Scroll Reveal Classes */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Top Announcement */
.top-bar-announcement {
  background: var(--bg-peach);
  color: var(--accent-coral);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 1px solid var(--border-subtle);
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 6%;
  position: relative;
  z-index: 100;
}

.logo-title {
  font-size: 1.8rem;
  color: var(--text-main);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-coral);
}

/* Buttons */
.btn-primary {
  background: var(--accent-coral);
  color: #FFF;
  padding: 18px 42px;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  /* Organic pill shape */
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
}

.btn-primary:hover {
  background: var(--accent-coral-hover);
  transform: rotate(-1deg) scale(1.02);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  padding: 16px 36px;
  border: 1px solid var(--text-main);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 15px 225px 15px 255px / 255px 15px 225px 15px;
}

.btn-secondary:hover {
  background: var(--text-main);
  color: var(--bg-canvas);
}

/* High-End Editorial Hero */
.editorial-hero {
  position: relative;
  padding: 80px 6% 160px 6%;
  display: grid;
  grid-template-columns: 5fr 7fr;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}

.hero-text {
  position: relative;
  z-index: 10;
  margin-right: -120px;
  /* Overlap the image */
}

.hero-text h1 {
  font-size: 6.5rem;
  line-height: 0.95;
  margin-bottom: 40px;
  text-shadow: 2px 2px 20px rgba(250, 247, 242, 0.8);
  /* Text readability over image */
}

@media (max-width: 1100px) {
  .hero-text h1 {
    font-size: 4.5rem;
  }

  .hero-text {
    margin-right: -40px;
  }
}

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 48px;
  max-width: 440px;
  line-height: 1.8;
  font-family: 'Fraunces', serif;
  font-style: italic;
}

.hero-art {
  position: relative;
  z-index: 1;
}

.hero-art img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  object-position: center top;
  border-radius: 300px 300px 0 0;
  mix-blend-mode: multiply;
  filter: contrast(1.05) saturate(1.1);
  animation: breathe 25s ease-in-out infinite alternate;
}

/* Floating Stamps */
.editorial-stamp {
  position: absolute;
  background: var(--accent-cream);
  border: 1px solid var(--border-subtle);
  padding: 16px 24px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent-coral);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  z-index: 20;
}

.stamp-1 {
  top: 10%;
  left: 20px;
  animation: float 6s ease-in-out infinite;
}

.stamp-2 {
  bottom: 10%;
  right: 20px;
  transform: rotate(4deg);
  animation: float-rotated 7s ease-in-out infinite 1s;
}

/* Editorial Story Overlap Layout */
.editorial-story {
  max-width: 1200px;
  margin: 0 auto 160px auto;
  position: relative;
  padding: 0 6%;
}

.story-overlap-wrapper {
  display: flex;
  align-items: flex-end;
  position: relative;
}

.story-art {
  width: 65%;
}

.story-art img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 80% center;
  border-radius: 12px;
  mix-blend-mode: multiply;
}

.story-text-box {
  width: 45%;
  background: var(--bg-peach);
  padding: 60px;
  border-radius: 24px 225px 24px 15px / 15px 24px 225px 24px;
  margin-left: -10%;
  /* Negative margin for overlap */
  margin-bottom: -60px;
  /* Drop down below the image slightly */
  position: relative;
  z-index: 10;
  box-shadow: 0 30px 60px rgba(37, 29, 26, 0.05);
}

.story-text-box h2 {
  font-size: 3rem;
  margin-bottom: 24px;
  line-height: 1.1;
}

.story-text-box p {
  font-size: 1.05rem;
  margin-bottom: 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Staggered Collection Layout */
.editorial-collection {
  max-width: 1300px;
  margin: 0 auto 180px auto;
  padding: 0 6%;
}

.collection-header {
  text-align: center;
  margin-bottom: 100px;
}

.collection-header h2 {
  font-size: 4.5rem;
}

/* Organic Flowing Collection */
.organic-flow {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.organic-item {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
}

.organic-item.reverse {
  flex-direction: row-reverse;
}

.organic-item.centered {
  flex-direction: column;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Organic Overlaps */
.overlap-up {
  margin-top: -40px;
  z-index: 10;
}

.overlap-down {
  margin-bottom: -40px;
  z-index: 5;
}

/* Organic Image Blobs */
.blob-art {
  flex: 1;
  position: relative;
}

.blob-art img {
  width: 100%;
  mix-blend-mode: multiply;
  object-fit: cover;
  transition: all 0.5s ease;
  box-shadow: 0 30px 60px rgba(37, 29, 26, 0.05);
}

.blob-shape-1 {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.blob-shape-2 {
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.blob-shape-3 {
  border-radius: 30% 70% 50% 50% / 50% 50% 70% 30%;
}

.organic-info {
  flex: 1;
}

.organic-info h3 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.1;
}

.organic-info p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.organic-price {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  color: var(--accent-coral);
  display: block;
  margin-bottom: 32px;
}

/* Love Letters */
.love-letters {
  padding: 140px 6%;
  background: var(--accent-cream);
  border-top: 1px solid var(--border-subtle);
}

.love-letters h2 {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 80px;
}

/* Scattered Notes (Testimonials) */
.scattered-letters {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.scatter-note {
  background: var(--bg-canvas);
  padding: 40px;
  width: 380px;
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  box-shadow: 0 20px 40px rgba(37, 29, 26, 0.04);
  border: 1px solid var(--border-subtle);
  transition: transform 0.4s ease;
}

.scatter-note:hover {
  transform: translateY(-10px) rotate(0deg) !important;
  z-index: 20;
}

.scatter-1 {
  transform: rotate(-4deg) translateY(20px);
}

.scatter-2 {
  transform: rotate(3deg) translateY(-20px);
}

.scatter-3 {
  transform: rotate(-2deg) translateY(60px);
}

.letter p {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 24px;
}

.letter-author {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--accent-coral);
}

/* Footer & Modals */
.footer-boutique {
  padding: 100px 6%;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.footer-links {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin: 40px 0;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 1000px) {
  .editorial-hero {
    grid-template-columns: 1fr;
    padding: 40px 6%;
  }

  .hero-text {
    margin-right: 0;
    margin-bottom: -80px;
  }

  .hero-art img {
    height: 60vh;
  }

  .story-overlap-wrapper {
    flex-direction: column;
  }

  .story-art,
  .story-text-box {
    width: 100%;
    margin-left: 0;
  }

  .story-text-box {
    margin-top: -80px;
  }

  .organic-item,
  .organic-item.reverse {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .overlap-up,
  .overlap-down {
    margin: 0;
  }

  .scattered-letters {
    flex-direction: column;
    align-items: center;
  }

  .scatter-note {
    transform: none !important;
    width: 100%;
    margin-bottom: 20px;
  }

  .nav-links {
    display: none;
  }
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(37, 29, 26, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--bg-canvas);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
  border-radius: 24px;
  padding: 60px 40px;
  max-width: 560px;
  width: 100%;
  position: relative;
  text-align: center;
}

.close-modal {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
}

.size-options {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 24px 0;
}

.size-btn {
  padding: 12px 24px;
  border: 1px solid var(--text-main);
  background: transparent;
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans';
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.size-btn.active {
  background: var(--text-main);
  color: var(--bg-canvas);
}

/* ==========================================
   CNIL / RGPD COOKIE BANNER STYLES
   ========================================== */
.cookie-banner-overlay {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  max-width: 420px;
  width: calc(100% - 48px);
  animation: slideUpBanner 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUpBanner {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner-card {
  background: var(--accent-cream);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.cookie-banner-header {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-banner-body p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.cookie-btn {
  flex: 1;
  padding: 12px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.cookie-btn-refuse {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
}

.cookie-btn-refuse:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: var(--text-main);
}

.cookie-btn-accept {
  background: var(--text-main);
  border: 1px solid var(--text-main);
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background: var(--accent-coral);
  border-color: var(--accent-coral);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(224, 122, 95, 0.25);
}

@media (max-width: 600px) {
  .cookie-banner-overlay {
    bottom: 12px;
    right: 12px;
    left: 12px;
    width: auto;
    max-width: none;
  }
  .cookie-banner-actions {
    flex-direction: column-reverse;
  }
}

/* ==========================================
   COMMENT ÇA MARCHE (4 STEPS FLOW)
   ========================================== */
.how-it-works-section {
  padding: 100px 6%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.how-it-works-section h2 {
  font-size: 2.8rem;
  margin-bottom: 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: left;
}

.step-card {
  background: var(--accent-cream);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 32px 24px;
  position: relative;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
}

.step-number {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-style: italic;
  color: var(--accent-coral);
  margin-bottom: 16px;
  display: block;
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================
   POURQUOI TOUTOULUMI (COMPARISON TABLE)
   ========================================== */
.comparison-section {
  padding: 100px 6%;
  max-width: 1100px;
  margin: 0 auto;
}

.comparison-section h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 60px;
}

.comparison-table-wrapper {
  background: var(--accent-cream);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th {
  padding: 20px 16px;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--text-main);
  border-bottom: 2px solid var(--border-subtle);
}

.comparison-table th.brand-col {
  color: var(--accent-coral);
  font-size: 1.3rem;
}

.comparison-table td {
  padding: 20px 16px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td.brand-cell {
  font-weight: 700;
  color: var(--text-main);
  background: rgba(217, 90, 58, 0.06);
  border-radius: 8px;
}

/* ==========================================
   FAQ ACCORDION
   ========================================== */
.faq-section {
  padding: 100px 6%;
  max-width: 900px;
  margin: 0 auto;
}

.faq-section h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 60px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--accent-cream);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--accent-coral);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px 28px;
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .comparison-table-wrapper {
    padding: 20px 12px;
  }
}

/* ==========================================
   NEWSLETTER LEAD CAPTURE (-10%)
   ========================================== */
.newsletter-section {
  padding: 80px 6%;
  max-width: 900px;
  margin: 80px auto;
  background: var(--bg-peach);
  border: 1px solid var(--border-subtle);
  border-radius: 28px;
  text-align: center;
}

.newsletter-section h3 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.newsletter-section p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 100px;
  border: 1px solid var(--border-subtle);
  background: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
}

/* ==========================================
   COMPLIANCE BADGES (CE / ROHS / NON-MEDICAL)
   ========================================== */
.compliance-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  justify-content: center;
}

.compliance-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #EBF3ED;
  color: #276235;
  border: 1px solid #B8DCBF;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ==========================================
   PAYMENT TRUST BADGES (CB, PAYPAL, ALMA 3X)
   ========================================== */
.payment-badges-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.payment-badge-tag {
  background: #fff;
  border: 1px solid var(--border-subtle);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-main);
}

/* ==========================================
   UTILISATION & SÉCURITÉ (GPSR EU COMPLIANT)
   ========================================== */
.safety-section {
  padding: 80px 6%;
  max-width: 1100px;
  margin: 80px auto;
}

.safety-section h2 {
  text-align: center;
  margin-bottom: 12px;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.safety-card {
  background: var(--accent-cream);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 28px;
  transition: transform 0.3s ease;
}

.safety-card:hover {
  transform: translateY(-4px);
}

.safety-icon {
  font-size: 1.8rem;
  display: inline-block;
  margin-bottom: 12px;
}

.safety-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

.safety-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}