/** Shopify CDN: Minification failed

Line 24:0 All "@import" rules must come first

**/
/* =============================================
   FOXANI â€” Styles complets pour thÃ¨me Dawn
   Ã€ coller dans Assets > base.css ou custom.css
   ============================================= */

:root {
  --fox-cream: #F7F4EF;
  --fox-white: #FFFFFF;
  --fox-sage: #7D9B76;
  --fox-sage-light: #A8C4A0;
  --fox-sage-dark: #5A7A54;
  --fox-charcoal: #2C2C2C;
  --fox-warm-gray: #6B6560;
  --fox-border: #E8E2D9;
  --fox-gold: #C9A96E;
}

/* â”€â”€â”€ FONTS â”€â”€â”€ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

body { font-family: 'DM Sans', sans-serif !important; background: var(--fox-cream) !important; }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.foxani-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  background: var(--fox-cream);
}
.foxani-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
}
.foxani-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(125,155,118,0.12);
  color: var(--fox-sage-dark);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
}
.foxani-hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--fox-sage);
  border-radius: 50%;
}
.foxani-hero__title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(42px, 5vw, 64px) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  color: var(--fox-charcoal) !important;
  margin-bottom: 24px !important;
}
.foxani-hero__title--highlight {
  color: var(--fox-sage);
  font-style: italic;
}
.foxani-hero__subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fox-warm-gray);
  max-width: 460px;
  margin-bottom: 40px;
}
.foxani-hero__ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.foxani-hero__proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--fox-warm-gray);
}
.foxani-hero__proof strong { color: var(--fox-charcoal); }
.foxani-stars { color: var(--fox-gold); font-size: 16px; letter-spacing: 2px; }
.foxani-hero__visual {
  position: relative;
  background: linear-gradient(135deg, #E8F0E6 0%, #D4E8D0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.foxani-hero__stat-card {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: white;
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.foxani-hero__stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--fox-sage);
  line-height: 1;
}
.foxani-hero__stat-label {
  font-size: 12px;
  color: var(--fox-warm-gray);
  margin-top: 4px;
  max-width: 140px;
  line-height: 1.4;
}

/* â”€â”€â”€ BUTTONS â”€â”€â”€ */
.foxani-btn {
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
  display: inline-block;
  cursor: pointer;
  border: none;
}
.foxani-btn--dark {
  background: var(--fox-charcoal);
  color: white;
}
.foxani-btn--dark:hover { background: var(--fox-sage-dark); transform: translateY(-1px); }
.foxani-btn--white {
  background: white;
  color: var(--fox-charcoal);
}
.foxani-btn--white:hover { background: var(--fox-sage-light); transform: translateY(-2px); }
.foxani-btn--link {
  color: var(--fox-charcoal);
  background: none;
  padding: 16px 0;
  font-size: 15px;
}
.foxani-btn--link:hover { color: var(--fox-sage); }
.foxani-btn-add {
  background: var(--fox-sage);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.foxani-btn-add:hover { background: var(--fox-sage-dark); }

/* â”€â”€â”€ TRUST BAR â”€â”€â”€ */
.foxani-trust {
  background: var(--fox-white);
  border-top: 1px solid var(--fox-border);
  border-bottom: 1px solid var(--fox-border);
  padding: 28px 80px;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}
.foxani-trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.foxani-trust__icon {
  width: 42px;
  height: 42px;
  background: rgba(125,155,118,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.foxani-trust__text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--fox-charcoal);
}
.foxani-trust__text span {
  font-size: 12px;
  color: var(--fox-warm-gray);
}

/* â”€â”€â”€ SECTION HELPERS â”€â”€â”€ */
.foxani-section-header { text-align: center; margin-bottom: 60px; }
.foxani-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fox-sage);
  margin-bottom: 12px;
}
.foxani-section-title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(28px, 3.5vw, 44px) !important;
  font-weight: 700 !important;
  color: var(--fox-charcoal) !important;
  line-height: 1.2 !important;
}

/* â”€â”€â”€ PRODUCTS â”€â”€â”€ */
.foxani-products {
  padding: 100px 80px;
  background: var(--fox-white);
}
.foxani-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.foxani-product-card {
  background: var(--fox-cream);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.foxani-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.1);
}
.foxani-product-card__image {
  width: 100%;
  aspect-ratio: 1;
  background: #E8E2D9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}
.foxani-product-card__info { padding: 20px; }
.foxani-product-card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fox-sage);
  margin-bottom: 6px;
}
.foxani-product-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--fox-charcoal);
  margin-bottom: 8px;
  line-height: 1.3;
}
.foxani-product-card__desc {
  font-size: 13px;
  color: var(--fox-warm-gray);
  margin-bottom: 16px;
  line-height: 1.5;
}
.foxani-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.foxani-product-card__price {
  font-size: 20px;
  font-weight: 700;
  color: var(--fox-charcoal);
}

/* â”€â”€â”€ BUNDLE â”€â”€â”€ */
.foxani-bundle {
  margin: 0 80px 100px;
  background: linear-gradient(135deg, #2C2C2C 0%, #3D4A3A 100%);
  border-radius: 32px;
  padding: 70px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.foxani-bundle__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fox-sage-light);
  margin-bottom: 16px;
}
.foxani-bundle__title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
}
.foxani-bundle__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
}
.foxani-bundle__items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.foxani-bundle__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
}
.foxani-bundle__check {
  width: 22px;
  height: 22px;
  background: var(--fox-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  color: white;
}
.foxani-bundle__pricing {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.foxani-bundle__price-new {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: white;
}
.foxani-bundle__price-old {
  font-size: 18px;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}
.foxani-bundle__savings {
  background: var(--fox-gold);
  color: var(--fox-charcoal);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}
.foxani-bundle__cards { display: flex; flex-direction: column; gap: 14px; }
.foxani-bundle__card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.foxani-bundle__card-emoji { font-size: 30px; }
.foxani-bundle__card-info strong {
  display: block;
  color: white;
  font-size: 15px;
  font-weight: 600;
}
.foxani-bundle__card-info span { color: rgba(255,255,255,0.55); font-size: 13px; }
.foxani-bundle__card-price {
  margin-left: auto;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  font-size: 15px;
}
.foxani-bundle__total {
  background: var(--fox-gold);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}
.foxani-bundle__total-price {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--fox-charcoal);
}
.foxani-bundle__total-saving {
  font-size: 13px;
  color: var(--fox-charcoal);
  opacity: 0.7;
  margin-top: 4px;
}

/* â”€â”€â”€ TESTIMONIALS â”€â”€â”€ */
.foxani-testimonials {
  padding: 100px 80px;
  background: var(--fox-cream);
}
.foxani-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.foxani-testimonial {
  background: white;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--fox-border);
  transition: transform 0.2s;
}
.foxani-testimonial:hover { transform: translateY(-4px); }
.foxani-testimonial__stars { color: var(--fox-gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.foxani-testimonial__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fox-charcoal);
  margin-bottom: 24px;
  font-style: italic;
}
.foxani-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.foxani-testimonial__avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--fox-sage-light), var(--fox-sage));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.foxani-testimonial__author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--fox-charcoal);
}
.foxani-testimonial__author span { font-size: 12px; color: var(--fox-warm-gray); }
.foxani-testimonial__verified {
  margin-left: auto;
  font-size: 11px;
  color: var(--fox-sage);
  font-weight: 600;
}

/* â”€â”€â”€ CTA FINAL â”€â”€â”€ */
.foxani-cta {
  margin: 0 80px 100px;
  background: var(--fox-sage);
  border-radius: 32px;
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.foxani-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.foxani-cta__title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(28px, 4vw, 48px) !important;
  font-weight: 700 !important;
  color: white !important;
  margin-bottom: 16px !important;
  position: relative;
}
.foxani-cta__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  position: relative;
}

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  .foxani-hero { grid-template-columns: 1fr; }
  .foxani-hero__content { padding: 60px 24px; }
  .foxani-hero__visual { height: 300px; }
  .foxani-trust { padding: 24px; gap: 24px; }
  .foxani-products { padding: 60px 24px; }
  .foxani-products__grid { grid-template-columns: repeat(2, 1fr); }
  .foxani-bundle { margin: 0 24px 60px; padding: 40px 32px; grid-template-columns: 1fr; }
  .foxani-testimonials { padding: 60px 24px; }
  .foxani-testimonials__grid { grid-template-columns: 1fr; }
  .foxani-cta { margin: 0 24px 60px; padding: 48px 24px; }
}