* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: #111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
}
.icon-btn { background: transparent; border: 0; cursor: pointer; font-size: 20px; color: #fff; }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  gap: 12px;
  z-index: 2600;
  background: linear-gradient(90deg, #ff7a00 0%, #0077ff 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
#menu-btn { position: absolute; left: 14px; top: 14px; }
.logo { margin: 0; font-weight: 700; font-size: 18px; letter-spacing: 0.4px; }
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2500;
}
.drawer-title {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.5rem;
  margin: 1rem 0 -2.5rem;
  text-align: left;
  color: #67ecec;
}
@media screen and (max-width: 768px) {
  .drawer-title {
    font-size: 1.2rem;
    margin: 2rem 0 -2.5rem;
  }
}
.overlay.show { display: block; }
.drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100%;
  background: linear-gradient(180deg, #f1ba71, #003f9a) !important;
  color: #fff;
  padding: 22px 14px;
  transition: left 0.28s cubic-bezier(0.2, 0.9, 0.2, 1);
  z-index: 3000;
  overflow-y: auto;
}
.drawer.open { left: 0; }
.drawer .close { position: absolute; right: 12px; top: 12px; font-size: 18px; }
.drawer-list { list-style: none; padding: 60px 0 20px; margin: 0; }
.drawer-list li { margin-bottom: 8px; }
.drawer-list a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 600;
}
.drawer-list a:hover { background: rgba(255, 255, 255, 0.08); }
body.no-scroll { overflow: hidden; }
.hero {
  position: relative;
  margin-top: 64px;
  height: 72vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}
.hero {
  position: relative;
  margin-top: 64px;
  height: 600px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2000;
  pointer-events: none;
}
.hero-video--desktop {
  display: block !important;
}
.hero-video--mobile {
  display: none !important;
}
@media (max-width: 880px) {
  .hero {
    height: 450px !important;
  }
  .hero-video--desktop {
    display: none !important;
  }
  .hero-sub { margin: 0 0 14px; opacity: 0.95; 
    font-size: 14px !important;
    }

  .hero-video--mobile {
    display: block !important;
  }
}
.hero-content {
  position: relative;
  z-index: 2100;
  text-align: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  max-width: 980px;
  width: 90%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
.hero-title { font-size: 2rem; margin: 0 0 8px; line-height: 1.05;
color: #dd681a; }
.hero-sub { margin: 0 0 14px; opacity: 0.95; 
font-size: 20px;
}
.cta-row {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.btn--orange { background: #ff7a00; color: #fff; }
.btn--blue { background: #0077ff; color: #fff; }
.section {
  padding: 48px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-title { font-size: 1.2rem; margin: 0 0 12px; font-weight: 700; }
.image-text {
  display: flex;
  gap: 28px;
  align-items: center;
}
.image-text img {
  width: 48%;
  border-radius: 10px;
  object-fit: cover;
}
.image-text .text-block {
  width: 52%;
  text-align: left;
}
.text-images {
  display: flex;
  gap: 28px;
  align-items: center;
}
.text-images img {
  width: 48%;
  border-radius: 10px;
  object-fit: cover;
}
.text-images .text-block {
  width: 52%;
  text-align: left;
}
.carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.carousel {
  display: flex;
  gap: 18px;
  width: 100%;
  align-items: stretch;
  will-change: scroll-position;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel { -ms-overflow-style: none; scrollbar-width: none; }
.gallery-carousel .card {
  flex: 1 1 calc(20% - 18px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}
.card figcaption {
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}
.icons-carousel {
  display: flex;
  gap: 20px;
  align-items: center;
}
.icon-card {
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.icon-card img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}
.icon-card figcaption {
  font-size: 0.9rem;
  color: #222;
  text-align: center;
}
.coach-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.coach-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #1E90FF;
}
.coach-card figcaption {
  font-weight: 600;
  font-size: 0.9rem;
}
.marquee-text-wrapper {
  --space: 1rem;
  display: grid;
  align-content: center;
  overflow: hidden;
  gap: var(--space);
  width: 100%;
  font-size: 2rem;
  line-height: 1.3;
  padding-top: 0 !important;
  padding-bottom: 1px !important;
  background-color: #1E90FF;
  color: #fff;
}
.marquee {
  --duration: 50s;
  --gap: var(--space);
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}
.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll var(--duration) linear infinite;
}
.marquee__group p {
  margin: 0;
  color: #ffffff;
  font-size: 1.25rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.marquee--borders {
  padding-block: 0.5rem;
}
.marquee:hover .marquee__group {
  animation-play-state: paused;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% - var(--gap))); }
}
.marquee-right {
  --duration: 50s;
  --gap: var(--space);
  display: flex;
  overflow: hidden;
  background-color: #ff651e;
  user-select: none;
  gap: var(--gap);
}
.marquee-right .marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-right var(--duration) linear infinite;
}
@keyframes scroll-right {
  0% { transform: translateX(calc(-100% - var(--gap))); }
  100% { transform: translateX(0); }
}
.marquee-right:hover .marquee__group {
  animation-play-state: paused;
}
@media (max-width: 880px) {
  .hero-video--desktop { display: none !important; }
  .hero-video--mobile { display: block !important; }
  .hero { height: 56vh; min-height: 300px; }
  .hero-title { font-size: 1.25rem; }
  .hero-sub { font-size: 0.95rem; }
  .btn { padding: 8px 12px; font-size: 14px; }
  .image-text, .text-images {
    flex-direction: column;
  }
  .image-text img, .text-images img,
  .image-text .text-block, .text-images .text-block {
    width: 100%;
  }
  .image-text .text-block, .text-images .text-block {
    text-align: left !important;
    margin-top: 8px;
  }
  .cta-row {
    flex-wrap: nowrap;
    gap: 5px;
    justify-content: center;
  }
  .cta-row .btn {
    flex: 1 1 50%;
    text-align: center;
  }
  .gallery-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .gallery-carousel .card {
    flex: 0 0 calc(50% - 8px);
    scroll-snap-align: start;
  }
  .icons-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .icons-carousel .icon-card {
    flex: 0 0 calc(50% - 8px);
    scroll-snap-align: start;
  }
  .coaches-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .coaches-carousel .coach-card {
    flex: 0 0 calc(50% - 8px);
    scroll-snap-align: start;
  }
  .carousel-wrap.small {
    gap: 4px;
  }
  .marquee-text-wrapper {
    font-size: 1.25rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  .marquee__group p {
    font-size: 1rem;
  }
  .drawer {
    width: 260px;
    padding: 4px 4px;
  }
}
@media (min-width: 880px) {
  .hero-video--desktop { display: block !important; }
  .hero-video--mobile { display: none !important; }
  .coaches-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .coaches-carousel .coach-card {
    flex: 0 0 calc(20% - 18px);
    scroll-snap-align: start;
  }
  .coaches-carousel::-webkit-scrollbar { display: none; }
  .coaches-carousel { -ms-overflow-style: none; scrollbar-width: none; }
}
:root {
  --coaches-bg-color: #dae7f3;
  --coaches-padding-top: 4px !important;
  --coaches-padding-bottom: 4px !important;
  --coaches-max-width: 1400px;
}
.coaches-section {
  background-color: var(--coaches-bg-color);
  padding-top: var(--coaches-padding-top);
  padding-bottom: var(--coaches-padding-bottom);
  max-width: var(--coaches-max-width);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.faq-section {
  padding: 10px 5px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
}
.faq-section .section-title {
  font-size: 1.5rem;
  margin: 0 0 24px;
  font-weight: 700;
  color: #333;
}
.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.faq-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.faq-item summary {
  font-size: 1.1rem;
  color: #333;
  list-style: none;
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item[open] summary {
  margin-bottom: 8px;
}
.faq-item p {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
  padding-top: 8px;
  line-height: 1.5;
}
.faq-item summary:after {
  content: "▼";
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}
.faq-item[open] summary:after {
  transform: rotate(180deg);
}
@media (max-width: 880px) {
  .faq-section .section-title {
    font-size: 1.2rem;
  }
  .faq-container {
    grid-template-columns: 1fr;
  }
  .faq-item summary {
    font-size: 1rem;
  }
  .faq-item p {
    font-size: 0.9rem;
  }
}
#unique-slide-gallery {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  isolation: isolate;
}
#unique-slide-gallery .unique-slider-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
#unique-slide-gallery .unique-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
#unique-slide-gallery .unique-slide {
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#unique-slide-gallery .unique-content {
  max-width: 50%;
  color: #000;
}
#unique-slide-gallery .unique-content .unique-tag {
  display: block;
  font-size: 14px;
  font-weight: bold;
}
#unique-slide-gallery .unique-content h1 {
  margin: 10px 0;
}
#unique-slide-gallery .unique-content p {
  margin: 10px 0;
}
#unique-slide-gallery .unique-price {
  font-weight: bold;
}
#unique-slide-gallery .unique-btn {
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}
#unique-slide-gallery .unique-image img {
  height: auto;
  object-fit: contain;
}
#unique-slide-gallery .prev, #unique-slide-gallery .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ececec;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
}
#unique-slide-gallery .prev {
  left: 0;
}
#unique-slide-gallery .next {
  right: 0;
}
@media (min-width: 769px) {
  #unique-slide-gallery {
    height: auto;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }
  #unique-slide-gallery .unique-content h1 {
    font-size: 36px;
  }
  #unique-slide-gallery .unique-content p {
    font-size: 16px;
  }
  #unique-slide-gallery .unique-price {
    font-size: 24px;
  }
  #unique-slide-gallery .unique-btn {
    font-size: 16px;
  }
  #unique-slide-gallery .unique-image img {
    width: 320px !important;
  }
}
@media (max-width: 768px) {
  #unique-slide-gallery {
    height: auto;
    padding-top: 2px;
    padding-bottom: 2px;
  }
  #unique-slide-gallery .unique-slide {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-bottom: 0;
  }
  #unique-slide-gallery .unique-content {
    max-width: 100%;
    text-align: center;
  }
  #unique-slide-gallery .unique-content h1 {
    font-size: 24px !important;
  }
  #unique-slide-gallery .unique-content p {
    font-size: 14px !important;
  }
  #unique-slide-gallery .unique-price {
    font-size: 18px !important;
  }
  #unique-slide-gallery .unique-btn {
    font-size: 14px !important;
  }
  #unique-slide-gallery .unique-image img {
    width: 300px !important;
    max-width: 100%;
    padding: 0;
  }
}


.newsletter-section {
  background-color: #99bef0 !important;
  padding: 10px 10px !important;
}

.newsletter-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
}

/* LEFT SIDE */
.newsletter-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.newsletter-img {
  width: 160px !important;
  height: 160px !important;
  object-fit: cover;
  border-radius: 50% !important;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}

.newsletter-text h2 {
  font-size: 28px;
  font-family: 'Brush Script MT', cursive;
  color: white;
  margin: 0;
}

.newsletter-text p {
  color: white;
  margin: 5px 0 0 0;
}

/* RIGHT SIDE */
.input-group {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.input-group input {
  padding: 12px;
  outline: none;
  border-radius: 30px !important;
  border: 2px solid #003f9a !important;
  border-radius: 8px 0 0 8px;
  width: 250px !important;
}

.input-group button {
  background-color: #000000;
  color: rgb(213, 213, 219);
  border: none;
  border-radius: 30px !important;
  padding: 12px 20px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  border: 2px solid #003f9a !important;
  font-weight: bold;
  transition: background-color 0.3s ease; /* Transition pour l'effet hover */
}

.input-group button:hover {
  background-color: #c95613; /* Couleur hover */
}

.checkbox {
  color: white;
  font-size: 14px;
}

.checkbox input {
  margin-right: 6px;
}

.response-message {
  color: rgb(247, 107, 26);
  background-color: #f0eeec; /* Fond vert pour le succès */
  padding: 10px;
  border-radius: 5px;
  margin-top: 10px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease; /* Animation fade-in */
}

.response-message.show {
  opacity: 1; /* Classe pour afficher le message avec animation */
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .newsletter-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }


  .newsletter-left {
      flex-direction: column;
  }
  .input-group {
      flex-direction: column;
      gap: 5px;
  }
  .input-group input,
  .input-group button {
      width: 350px !important;
      border: 2px solid #003f9a !important;
  }
}


.marquee-unique #marquee-container {
  isolation: isolate;
}

.marquee-unique .marquee {
  display: flex;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 90px;
  padding: 5px 0px !important;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: #ffffff !important;
}

.marquee-unique .marquee::-webkit-scrollbar {
  display: none;
}

.marquee-unique .marquee .track-images {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 80px;
  animation: marquee-anim 80s linear infinite !important;
  will-change: transform;
}

.marquee-unique .marquee:hover .track-images {
  animation-play-state: paused;
}

.marquee-unique .marquee img {
  width: 100px;
  height: auto;
  object-fit: contain;
  scroll-snap-align: none;
}

@keyframes marquee-anim {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 60px));
  }
}

/* FOOTER STYLES */
.site-footer {
  background: #111;
  color: #fff;
  font-size: 14px;
  padding: 10px 0; /* réduit le padding top/bottom */
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-about h4,
.footer-donate h3 {
  margin-bottom: 10px;
}

.socials a img {
  width: 32px !important;
  margin: 5px !important;
  vertical-align: middle;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}


.paypal-button {
  margin: 8px 0;
  width: 150px !important; /* agrandir le logo PayPal */
  height: auto;
}

.copy-button {
  background: #ff9900;
  color: #fff;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 14px;
}

.copy-button:hover {
  background: #cc7a00;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .site-footer {
    background: #111;
    color: #fff;
    font-size: 14px;
    padding: 1px -30px !important; /* réduit le padding top/bottom */
  }
}

/* Style général de la section progrès */
.progress-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Formulaire */
#progress-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
#progress-form label {
  font-weight: 600;
  color: #111;
}
#progress-form select, #progress-form input, #progress-form textarea {
  padding: 8px;
  border: 1px solid #1E90FF;
  border-radius: 5px;
  font-size: 1rem;
}
#progress-form button {
  margin-top: 10px;
}

/* Notification */
.notification {
  position: fixed;
  top: 80px;  /* Sous le header */
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  background: #28a745;
  color: #fff;
  border-radius: 5px;
  z-index: 1000;
  text-align: center;
}

/* Statistiques */
.stats-section {
  background: #fff;
  border: 1px solid #FF6200;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
  color: #FF6200;
  font-weight: 600;
}
.stats-section h4 {
  margin-bottom: 10px;
  color: #1E90FF;
}

/* Graphique */
.chart-section {
  margin-bottom: 20px;
  text-align: center;
}
#progress-chart {
  max-width: 100%;
  border-radius: 10px;
  border: 1px solid #1E90FF;
}

/* Filtres */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.filters label {
  font-weight: 600;
}
.filters select {
  padding: 8px;
  border: 1px solid #1E90FF;
  border-radius: 5px;
  flex: 1;
}

/* Liste des progrès */
#progress-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#progress-list li {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#progress-list li .entry-details {
  flex: 1;
}
#progress-list li .entry-actions {
  display: flex;
  gap: 5px;
}
.entry-actions button {
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.8rem;
  background: #1E90FF;
  color: #fff;
}
.entry-actions button:hover {
  background: #FF6200;
}
.entry-actions .delete-btn {
  background: #dc3545;  /* Rouge pour suppression */
}
.entry-actions .delete-btn:hover {
  background: #c82333;
}

/* Responsive adjustments */
@media (max-width: 880px) {
  .progress-section {
    padding: 10px;
  }
  .filters {
    flex-direction: column;
  }
  #progress-list li {
    flex-direction: column;
    align-items: flex-start;
  }
  .entry-actions {
    margin-top: 10px;
  }
}

.yoga-hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 64px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.yoga-hero-content {
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  max-width: 80%;
}
.yoga-hero-title {
  color: #FF6200;
  font-size: 2rem;
  margin: 0 0 10px;
}
.yoga-hero-subtitle {
  font-size: 1.5rem;
  margin: 0 0 10px;
}
.yoga-hero-description {
  font-size: 1rem;
  margin: 0;
}
.video-slider-section, .postures-slider-section {
  max-width: 1400px;
  margin: 0 auto;
}
.video-carousel, .postures-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.video-card, .pose-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-snap-align: start;
}
.video-card video {
  width: 300px;
  height: 300px;
  border-radius: 10px;
}
.pose-card img {
  width: 200px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}
.video-card figcaption, .pose-card figcaption {
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: #FF6200;
  margin-top: -3px !important;
}
.video-card .video-desc {
  font-size: 0.85rem;
  text-align: center;
  color: #000000;
  margin-top: -3px !important;
}
.timer-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
#timer-display {
  font-size: 3rem;
  color: #FF6200;
  margin-bottom: 20px;
}
#start-timer-btn, #reset-timer-btn {
  background: #1E90FF;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}
#start-timer-btn:hover, #reset-timer-btn:hover {
  background: #FF6200;
}
#timer-message {
  font-size: 1.5rem;
  color: #FF6200;
  margin: 10px 0;
}
@media (max-width: 880px) {
  .yoga-hero {
    height: 400px;
  }
  .yoga-hero-title {
    font-size: 1.5rem;
  }
  .yoga-hero-subtitle {
    font-size: 1.2rem;
  }
  .yoga-hero-description {
    font-size: 0.9rem;
  }
  .video-slider-section {
    padding: 0 5px;
  }
  .video-carousel {
    display: flex !important;
    gap: 10px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .video-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    scroll-snap-align: center !important;
  }
  .video-card video {
    width: 100% !important;
    height: auto !important;
    max-height: 400px !important;
    border-radius: 8px !important;
  }
  .video-card figcaption {
    font-size: 1rem !important;
  }
  .video-card .video-desc {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    text-align: center !important;
    color: #333 !important;
  }
  .postures-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .postures-carousel .pose-card {
    flex: 0 0 calc(100% - 18px);
    width: calc(100% - 18px);
    scroll-snap-align: center;
  }
  .pose-card img {
    width: 100%;
    height: auto;
    max-height: 300px;
  }
}
@media (min-width: 881px) {
  .postures-carousel .pose-card {
    flex: 0 0 calc(20% - 18px);
    width: 200px;
  }
}

/* Quiz Hero Banner */
.quiz-hero {
  position: relative;
  margin-top: 64px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}
.quiz-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2000;
  pointer-events: none;
}
.quiz-hero-content {
  position: relative;
  z-index: 2100;
  text-align: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  max-width: 1400px;
  width: 90%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
.quiz-hero-title {
  font-size: 2rem;
  margin: 0 0 8px;
  line-height: 1.05;
  color: #FF6200;
}
.quiz-hero-sub, .quiz-hero-desc {
  margin: 0 0 14px;
  opacity: 0.95;
  color: #fff;
}

/* Quiz Presentation */
.quiz-presentation {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.quiz-title {
  color: #FF6200;
}
.quiz-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.quiz-btn {
  background: #1E90FF;
  color: #fff;
  padding: 10px 20px;
  border: 2px solid #000000;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
}
.quiz-btn:hover {
  background: #FF6200;
}

/* Quiz Sections */
.quiz-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.quiz-question {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.quiz-question span.icon {
  font-size: 24px;
}
.quiz-question label {
  display: block;
  margin: 5px 0;
}
.quiz-next-btn {
  background: #1E90FF;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}
.quiz-results {
  text-align: center;
}
.quiz-restart-btn {
  background: #1E90FF;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  margin-right: 10px;
}
.quiz-pdf-btn, .quiz-whatsapp-btn {
  background: #FF6200;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 880px) {
  .quiz-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .quiz-hero {
    height: 300px;
  }
  .quiz-hero-title {
    font-size: 1.5rem;
  }

  .quiz-hero {
    position: relative;
    margin-top: 64px;
    height: 450px !important;
  }
  .quiz-hero-sub, .quiz-hero-desc {
    font-size: 0.9rem;
  }
}

.challenge-hero {
  position: relative;
  margin-top: 64px;
  height: 500px;
  background: url('https://cdn.shopify.com/s/files/1/0643/8263/2041/files/image_challenge_banner.jpg?v=1754877274') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.challenge-hero-content {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  max-width: 800px;
  width: 90%;
  color: #fff;
}
.challenge-title {
  color: #FF6200;
  font-size: 2rem;
  margin: 0 0 8px;
}
.challenge-sub, .challenge-desc {
  margin: 0 0 14px;
  opacity: 0.95;
}
.challenges-list {
  max-width: 1400px;
  margin: 0 auto;
}
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.challenge-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.challenge-icon {
  width: 250px !important;
  height: 250px !important;
  border: 2px solid #5b90f3;
  object-fit: cover !important;
  border-radius: 70px !important;
}

.challenge-name {
  color: #FF6200;
}
.challenge-join-btn {
  background: #1E90FF;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
}
.challenge-join-btn:hover {
  background: #FF6200;
}
.enroll-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
#enroll-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}
.enroll-btn {
  background: #1E90FF;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}
.enroll-btn:hover {
  background: #FF6200;
}
.progress-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
#progress-bar {
  width: 100%;
  height: 20px;
}
#calendar-display {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}
.calendar-day {
  width: 30px;
  height: 30px;
  background: #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.calendar-day.completed {
  background: #FF6200;
  color: #fff;
}
.mark-day-btn {
  background: #1E90FF;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
}
.mark-day-btn:hover {
  background: #FF6200;
}
.sharing-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.sharing-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.sharing-buttons img {
  width: 30px;
  height: 30px;
}
.timer-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
#timer-display {
  font-size: 2rem;
  color: #FF6200;
}
.timer-btn {
  background: #1E90FF;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
}
.timer-btn:hover {
  background: #FF6200;
}
@media (max-width: 880px) {
  .challenge-hero {
    height: 300px;
  }
  .challenge-title {
    font-size: 1.5rem;
  }
  .challenge-sub, .challenge-desc {
    font-size: 0.9rem;
  }
  .challenges-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 10px !important;
    padding: 0 5px !important;
  }
  .challenge-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    scroll-snap-align: center !important;
  }
  .challenge-icon {
    width: 190px !important;
    height: 190px !important;
    border: 2px solid #5b90f3;
    object-fit: cover !important;
    border-radius: 70px !important;
  }
}

/* ---------- Instructions Section ---------- */
.instructions-section {
  background-color: #fff;
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 20px;
}
.instructions-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.instructions-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #333;
}
.instructions-list img {
  width: 50px;
  height: 50px;
}
.instructions-tip {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

/* ---------- Background Removal Tool ---------- */
.remove-bg-tool {
  background-color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 20px;
}
.tool-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.upload-area {
  border: 2px dashed #1E90FF;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
}
.upload-area:hover {
  background-color: rgba(30, 144, 255, 0.1);
}
.upload-area p {
  margin: 0;
  color: #333;
  font-size: 1rem;
}
.preview-container {
  text-align: center;
}
.preview-container h4 {
  font-size: 1.1rem;
  color: #333;
  margin: 0 0 10px;
}
#imageCanvas {
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
  border: 1px solid #eee;
}
.tool-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.tool-buttons .btn--blue:hover {
  background: #0004ff !important;
  border-radius: 25px;
}
.tool-buttons .btn--blue {
  background: #111010 !important;
  border-radius: 25px;
}

.btn--blue {
  background: #0955b9 !important;
  border-radius: 25px !important;
  border: 2px solid #b3aea8;
}

.btn--blue:hover {
  background: #000000 !important;
}

.custom-bg-option {
  text-align: center;
}
.custom-bg-option h4 {
  font-size: 1.1rem;
  color: #333;
  margin: 0 0 10px;
}

/* ---------- Before & After Gallery ---------- */
.before-after-carousel .card {
  flex: 1 1 calc(25% - 18px);
}
.before-after-carousel .card img {
  height: 200px;
}

/* ---------- Social Share Section ---------- */
.social-share-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 20px;
}
.social-share-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.social-share-buttons .btn--blue:hover {
  background: #FF6200;
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 880px) {
  .instructions-section, .remove-bg-tool, .social-share-section {
    padding: 24px 16px;
  }
  .before-after-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .before-after-carousel .card {
    flex: 0 0 calc(50% - 8px);
    scroll-snap-align: start;
  }
  .tool-buttons {
    flex-direction: column;
    align-items: center;
  }
  .tool-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  .social-share-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}


/* Monitor Hero / Introduction */
.monitor-hero {
  position: relative;
  margin-top: 64px;
  height: 500px;
  background: url('https://cdn.shopify.com/s/files/1/0643/8263/2041/files/tension_1.webp?v=1754913013') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.monitor-hero-content {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  max-width: 800px;
  width: 90%;
  color: #fff;
}
.monitor-title {
  color: #FF6200;
  font-size: 2rem;
  margin: 0 0 8px;
}
.monitor-sub, .monitor-desc {
  margin: 0 0 14px;
  opacity: 0.95;
}

/* Tension Tracking */
.monitor-tracking {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
#monitor-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}
#monitor-form input {
  border: 1px solid #1E90FF;
  padding: 10px;
  border-radius: 8px;
}
.monitor-submit-btn {
  background: #1E90FF;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}
.monitor-submit-btn:hover {
  background: #FF6200;
}
.progress-btn {
  background: #1E90FF;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
}
.progress-btn:hover {
  background: #FF6200;
}

/* Measurement History */
.monitor-history {
  max-width: 800px;
  margin: 0 auto;
}
#history-table {
  width: 100%;
  border-collapse: collapse;
}
#history-table th, #history-table td {
  border: 1px solid #1E90FF;
  padding: 8px;
  text-align: center;
}
#history-table th {
  background: #FF6200;
  color: #fff;
}
.clear-btn {
  background: #1E90FF;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
}
.clear-btn:hover {
  background: #FF6200;
}
#systolic-chart {
  margin-top: 20px;
}

/* Health Tips */
.monitor-tips {
  max-width: 800px;
  margin: 0 auto;
}
.tips-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tips-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.tips-list img {
  width: 50px;
  height: 50px;
}

/* Sharing Section */
.sharing-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.sharing-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.sharing-buttons img {
  width: 30px;
  height: 30px;
}

/* Responsive Adjustments */
@media (max-width: 880px) {
  .monitor-hero {
    height: 300px;
  }
  .monitor-title {
    font-size: 1.5rem;
  }
  .monitor-sub, .monitor-desc {
    font-size: 0.9rem;
  }
  .tips-list {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
    gap: 10px;
  }
  .tips-list::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
  }
  .tips-list li {
    flex: 0 0 100%;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
  }
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Positionnement et couleur des points indicateurs pour les tips sur mobile */
@media (max-width: 880px) {
  .monitor-tips .carousel-wrap {
    position: relative;
  }

  .monitor-tips .tips-slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    padding-bottom: 10px;
  }

  .monitor-tips .tips-slider-dots .dot.active {
    background-color: #2b00eb !important; /* Force la couleur active */
  }
}

/* Masquer les points sur desktop */
@media (min-width: 881px) {
  .monitor-tips .tips-slider-dots {
    display: none;
  }
}

/* Weight Hero Introduction */
.weight-hero {
  position: relative;
  margin-top: 64px;
  height: 500px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2000;
}
.weight-hero .hero-content {
  position: relative;
  z-index: 2100;
  text-align: center;
  padding: 22px;
  max-width: 800px;
  width: 90%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
  border-radius: 10px;
}
.weight-hero .hero-title {
  color: #FF6200;
  font-size: 2rem;
  margin: 0 0 8px;
}
.weight-hero .hero-sub, .weight-hero .hero-desc {
  margin: 0 0 14px;
  color: #fff;
}

/* Weight Form Section */
.weight-form-section {
  max-width: 800px;
  margin: 0 auto;
}
.weight-form-section form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.weight-form-section label {
  font-weight: 600;
}
.weight-form-section input {
  padding: 8px;
  border: 1px solid #1E90FF;
  border-radius: 4px;
}
.weight-form-section button {
  cursor: pointer;
}
.weight-form-section button:hover {
  background: #FF6200;
}
#record-message {
  color: green;
  font-weight: bold;
}

/* Weight History Section */
.weight-history-section {
  max-width: 800px;
  margin: 0 auto;
}
#weight-history-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
#weight-history-table th, #weight-history-table td {
  border: 1px solid #1E90FF;
  padding: 8px;
  text-align: left;
}
#weight-history-table th {
  background: #FF6200;
  color: #fff;
}
#weight-chart {
  max-width: 100%;
}
#clear-history:hover {
  background: #FF6200;
}

/* Weight Progress Section */
.weight-progress-section {
  max-width: 800px;
  margin: 0 auto;
}
#progress-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
.progress-item {
  padding: 10px;
  border: 1px solid #1E90FF;
  border-radius: 4px;
  text-align: center;
}
.progress-loss {
  color: green;
}
.progress-gain {
  color: red;
}

/* Weight Difference Calculator */
.weight-diff-section {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#diff-result {
  font-weight: bold;
}

/* Weight Tips Section */
.weight-tips-section {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
}
.tips-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tips-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tips-list img {
  width: 50px;
  height: 50px;
}
@media (max-width: 768px) {
  .tips-list {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .tips-list li {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
}

/* Social Share Section */
.weight-share-section {
  max-width: 800px;
  margin: 0 auto;
}
.share-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.share-buttons img {
  width: 30px;
  height: 30px;
}

/* Responsive Adjustments */
@media (max-width: 880px) {
  .drawer {
    width: 250px; /* Adjusted to 250px on mobile */
  }
  .weight-hero {
    height: 300px;
  }
  .weight-hero .hero-title {
    font-size: 1.5rem;
  }
  .weight-hero .hero-sub, .weight-hero .hero-desc {
    font-size: 0.95rem;
  }
  .section {
    padding: 24px 10px;
  }
}






/* Reset & base (unchanged from original) */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: #111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
}
/* Utility */
.icon-btn { background: transparent; border: 0; cursor: pointer; font-size: 20px; color: #fff; }
/* Header (unchanged) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  gap: 12px;
  z-index: 2600;
  background: linear-gradient(90deg, #ff7a00 0%, #0077ff 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
#menu-btn { position: absolute; left: 14px; top: 14px; }
.logo { margin: 0; font-weight: 700; font-size: 18px; letter-spacing: 0.4px; }
/* Drawer & Overlay (unchanged) */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2500;
}
.overlay.show { display: block; }
.drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100%;
  background: linear-gradient(180deg, #0057d9, #003f9a);
  color: #fff;
  padding: 22px 14px;
  transition: left 0.28s cubic-bezier(0.2, 0.9, 0.2, 1);
  z-index: 3000;
  overflow-y: auto;
}
.drawer.open { left: 0; }
.drawer .close { position: absolute; right: 12px; top: 12px; font-size: 18px; }
.drawer-list { list-style: none; padding: 60px 0 20px; margin: 0; }
.drawer-list li { margin-bottom: 8px; }
.drawer-list a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 600;
}
.drawer-list a:hover { background: rgba(255, 255, 255, 0.08); }
body.no-scroll { overflow: hidden; }
/* HERO (unchanged from original, but renamed for BBW) */
.bbw-hero {
  position: relative;
  height: 500px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  max-width: 1400px;
  margin: 64px auto 0;
}
.bbw-hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.bbw-hero-content {
  position: relative;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  max-width: 800px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.bbw-hero-title {
  font-size: 2.5rem;
  color: #FF6200;
  margin: 0 0 10px;
}
.bbw-hero-subtitle, .bbw-hero-description {
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  margin: 0 0 10px;
}
/* Sections general (unchanged) */
.section {
  padding: 48px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-title { font-size: 1.2rem; margin: 0 0 12px; font-weight: 700; }
/* IMAGE + TEXT (unchanged) */
.image-text {
  display: flex;
  gap: 28px;
  align-items: center;
}
.image-text img {
  width: 48%;
  border-radius: 10px;
  object-fit: cover;
}
.image-text .text-block {
  width: 52%;
  text-align: left;
}
.bbw-image-text h3 {
  color: #FF6200;
}
.bbw-image-text p {
  color: #1E90FF;
}
/* TEXT + IMAGE (unchanged) */
.text-images {
  display: flex;
  gap: 28px;
  align-items: center;
}
.text-images img {
  width: 48%;
  border-radius: 10px;
  object-fit: cover;
}
.text-images .text-block {
  width: 52%;
  text-align: left;
}
/* GALLERY (unchanged) */
.carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.carousel {
  display: flex;
  gap: 18px;
  width: 100%;
  align-items: stretch;
  will-change: scroll-position;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel { -ms-overflow-style: none; scrollbar-width: none; }
.gallery-carousel .card {
  flex: 1 1 calc(20% - 18px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}
.card figcaption {
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}
/* ICONS (unchanged) */
.icons-carousel {
  display: flex;
  gap: 20px;
  align-items: center;
}
.icon-card {
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.icon-card img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}
.icon-card figcaption {
  font-size: 0.9rem;
  color: #222;
  text-align: center;
}
/* Coaches carousel (unchanged) */
.coach-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.coach-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #eee;
}
.coach-card figcaption {
  font-weight: 600;
  font-size: 0.9rem;
}
/* Marquee Text Wrapper (unchanged) */
.marquee-text-wrapper {
  --space: 1rem;
  display: grid;
  align-content: center;
  overflow: hidden;
  gap: var(--space);
  width: 100%;
  font-size: 2rem;
  line-height: 1.3;
  padding-top: 0 !important;
  padding-bottom: 1px !important;
  background-color: #1E90FF;
  color: #fff;
}
.marquee {
  --duration: 50s;
  --gap: var(--space);
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}
.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll var(--duration) linear infinite;
}
.marquee__group p {
  margin: 0;
  color: #ffffff;
  font-size: 1.25rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.marquee--borders {
  padding-block: 0.5rem;
}
.marquee:hover .marquee__group {
  animation-play-state: paused;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% - var(--gap))); }
}
.marquee-right {
  --duration: 50s;
  --gap: var(--space);
  display: flex;
  overflow: hidden;
  background-color: #ff651e;
  user-select: none;
  gap: var(--gap);
}
.marquee-right .marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-right var(--duration) linear infinite;
}
@keyframes scroll-right {
  0% { transform: translateX(calc(-100% - var(--gap))); }
  100% { transform: translateX(0); }
}
.marquee-right:hover .marquee__group {
  animation-play-state: paused;
}
/* Responsive / Mobile (unchanged) */
@media (max-width: 880px) {
  .hero-video--desktop { display: none; }
  .hero-video--mobile { display: block; }
  .hero { height: 56vh; min-height: 300px; }
  .hero-title { font-size: 1.25rem; }
  .hero-sub { font-size: 0.95rem; }
  .btn { padding: 8px 12px; font-size: 14px; }
  .image-text, .text-images {
    flex-direction: column;
  }
  .image-text img, .text-images img,
  .image-text .text-block, .text-images .text-block {
    width: 100%;
  }
  .image-text .text-block, .text-images .text-block {
    text-align: left !important;
    margin-top: 8px;
  }
  .cta-row {
    flex-wrap: nowrap;
    gap: 5px;
    justify-content: center;
  }
  .cta-row .btn {
    flex: 1 1 50%;
    text-align: center;
  }
  .gallery-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .gallery-carousel .card {
    flex: 0 0 calc(50% - 8px);
    scroll-snap-align: start;
  }
  .icons-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .icons-carousel .icon-card {
    flex: 0 0 calc(50% - 8px);
    scroll-snap-align: start;
  }
  .coaches-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .coaches-carousel .coach-card {
    flex: 0 0 calc(50% - 8px);
    scroll-snap-align: start;
  }
  .carousel-wrap.small {
    gap: 4px;
  }
  .marquee-text-wrapper {
    font-size: 1.25rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  .marquee__group p {
    font-size: 1rem;
  }
  .drawer {
    width: 260px;
    padding: 4px 4px;
  }
}
@media (min-width: 880px) {
  .coaches-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .coaches-carousel .coach-card {
    flex: 0 0 calc(20% - 18px);
    scroll-snap-align: start;
  }
  .coaches-carousel::-webkit-scrollbar { display: none; }
  .coaches-carousel { -ms-overflow-style: none; scrollbar-width: none; }
}
.coach-card img {
  border: 2px solid #1E90FF;
}
/* Variables CSS (unchanged) */
:root {
  --coaches-bg-color: #dae7f3;
  --coaches-padding-top: 4px !important;
  --coaches-padding-bottom: 4px !important;
  --coaches-max-width: 1400px;
}
.coaches-section {
  background-color: var(--coaches-bg-color);
  padding-top: var(--coaches-padding-top);
  padding-bottom: var(--coaches-padding-bottom);
  max-width: var(--coaches-max-width);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
/* FAQ Section (unchanged) */
.faq-section {
  padding: 10px 5px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
}
.faq-section .section-title {
  font-size: 1.5rem;
  margin: 0 0 24px;
  font-weight: 700;
  color: #333;
}
.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.faq-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.faq-item summary {
  font-size: 1.1rem;
  color: #333;
  list-style: none;
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item[open] summary {
  margin-bottom: 8px;
}
.faq-item p {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
  padding-top: 8px;
  line-height: 1.5;
}
.faq-item summary:after {
  content: "▼";
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}
.faq-item[open] summary:after {
  transform: rotate(180deg);
}
@media (max-width: 880px) {
  .faq-section .section-title {
    font-size: 1.2rem;
  }
  .faq-container {
    grid-template-columns: 1fr;
  }
  .faq-item summary {
    font-size: 1rem;
  }
  .faq-item p {
    font-size: 0.9rem;
  }
}
/* Unique Slider Gallery (unchanged from index.html) */
#unique-slide-gallery {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  isolation: isolate;
}
#unique-slide-gallery .unique-slider-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
#unique-slide-gallery .unique-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
#unique-slide-gallery .unique-slide {
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#unique-slide-gallery .unique-content {
  max-width: 50%;
  color: #000;
}
#unique-slide-gallery .unique-content .unique-tag {
  display: block;
  font-size: 14px;
  font-weight: bold;
}
#unique-slide-gallery .unique-content h1 {
  margin: 10px 0;
}
#unique-slide-gallery .unique-content p {
  margin: 10px 0;
}
#unique-slide-gallery .unique-price {
  font-weight: bold;
}
#unique-slide-gallery .unique-btn {
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}
#unique-slide-gallery .unique-image img {
  height: auto;
  object-fit: contain;
}
#unique-slide-gallery .prev, #unique-slide-gallery .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ddd;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
}
#unique-slide-gallery .prev {
  left: 0;
}
#unique-slide-gallery .next {
  right: 0;
}
@media (min-width: 769px) {
  #unique-slide-gallery {
    height: auto;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }
  #unique-slide-gallery .unique-content h1 {
    font-size: 36px;
  }
  #unique-slide-gallery .unique-content p {
    font-size: 16px;
  }
  #unique-slide-gallery .unique-price {
    font-size: 24px;
  }
  #unique-slide-gallery .unique-btn {
    font-size: 16px;
  }
  #unique-slide-gallery .unique-image img {
    width: 320px !important;
  }
}
@media (max-width: 768px) {
  #unique-slide-gallery {
    height: auto;
    padding-top: 2px;
    padding-bottom: 2px;
  }
  #unique-slide-gallery .unique-slide {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-bottom: 0;
  }
  #unique-slide-gallery .unique-content {
    max-width: 100%;
    text-align: center;
  }
  #unique-slide-gallery .unique-content h1 {
    font-size: 24px !important;
  }
  #unique-slide-gallery .unique-content p {
    font-size: 14px !important;
  }
  #unique-slide-gallery .unique-price {
    font-size: 18px !important;
  }
  #unique-slide-gallery .unique-btn {
    font-size: 14px !important;
  }
  #unique-slide-gallery .unique-image img {
    width: 300px !important;
    max-width: 100%;
    padding: 0;
  }
}
/* Newsletter Section (unchanged) */
.newsletter-section {
  background-color: #1157b3;
  padding: 30px 20px;
}
.newsletter-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
}
.newsletter-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.newsletter-img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}
.newsletter-text h2 {
  font-size: 28px;
  font-family: 'Brush Script MT', cursive;
  color: white;
  margin: 0;
}
.newsletter-text p {
  color: white;
  margin: 5px 0 0 0;
}
.input-group {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.input-group input {
  padding: 12px;
  border: none;
  outline: none;
  border-radius: 8px 0 0 8px;
  width: 250px;
}
.input-group button {
  background-color: #000000;
  color: rgb(213, 213, 219);
  border: none;
  padding: 12px 20px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-weight: bold;
}
.checkbox {
  color: white;
  font-size: 14px;
}
.checkbox input {
  margin-right: 6px;
}
@media (max-width: 768px) {
  .newsletter-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  .newsletter-left {
      flex-direction: column;
  }
  .input-group {
      flex-direction: column;
  }
  .input-group input,
  .input-group button {
      border-radius: 8px;
  }
}
/* Marquee Images (unchanged) */
.marquee-unique #marquee-container {
  isolation: isolate;
}
.marquee-unique .marquee {
  display: flex;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 90px;
  padding: 5px 0px !important;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  
}
.marquee-unique .marquee::-webkit-scrollbar {
  display: none;
}
.marquee-unique .marquee .track-images {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee-anim 90s linear infinite !important;
  will-change: transform;
}
.marquee-unique .marquee:hover .track-images {
  animation-play-state: paused;
}
.marquee-unique .marquee img {
  width: 100px  !important;
  height: auto;
  object-fit: contain;
  scroll-snap-align: none;
}
@keyframes marquee-anim {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 60px));
  }
}

.bbw-marquee-images .marquee .track-images {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee-anim 90s linear infinite !important;
  will-change: transform;
}
.bbw-marquee-images .marquee {
  background: #1E90FF;
}
.bbw-marquee-images img {
  width: 200px !important;
  height: 150px !important;
  object-fit: cover;
}
/* Footer (unchanged) */
.site-footer {
  background: #111;
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}
.footer-column {
  flex: 1;
  min-width: 250px;
}
.footer-about h4,
.footer-donate h3 {
  margin-bottom: 10px;
}
.socials a img {
  width: 28px;
  margin: 5px;
  vertical-align: middle;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
}

.paypal-button {
  margin: 8px 0;
  width: 150px !important;
  height: auto;
}
.copy-button {
  background: #ff9900;
  color: #fff;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 14px;
}
.copy-button:hover {
  background: #cc7a00;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .site-footer {
    background: #111;
    color: #fff;
    font-size: 14px;
    padding: 1px -30px !important;
  }
}
/* Videos Carousel */
.bbw-videos-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
}
.video-card {
  flex: 0 0 calc(33% - 18px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.video-card video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.video-card figcaption {
  text-align: center;
  font-weight: 600;
}
/* Quiz Section */
.bbw-quiz-section {
  max-width: 800px;
  margin: 0 auto;
}
.quiz-container {
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
}
.quiz-question {
  margin-bottom: 20px;
}
.quiz-question h4 {
  color: #FF6200;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quiz-option {
  padding: 10px;
  background: #1E90FF;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
}
.quiz-option.selected {
  background: #FF6200;
}
#next-btn {
  display: block;
  margin: 20px auto 0;
  padding: 10px 20px;
  background: #1E90FF;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
#next-btn:hover {
  background: #FF6200;
}
#quiz-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
/* Images Slider Carousel */
.bbw-images-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
}
.image-card {
  flex: 0 0 calc(25% - 18px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
.image-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}
.image-card h4 {
  color: #FF6200;
  margin: 0;
}
.image-card p {
  margin: 0;
  font-size: 0.9rem;
}
/* Responsive Adjustments */
@media (max-width: 880px) {
  .bbw-hero {
    height: 300px;
  }
  .bbw-hero-title {
    font-size: 1.8rem;
  }
  .bbw-hero-subtitle, .bbw-hero-description {
    font-size: 1rem;
  }
  .bbw-videos-carousel .video-card {
    flex: 0 0 calc(80% - 18px);
  }
  .bbw-images-carousel .image-card {
    flex: 0 0 calc(80% - 18px);
  }
  .bbw-marquee-images .track-images {
    gap: 20px;
  }
  .bbw-marquee-images img {
    width: 150px;
    height: 100px;
  }
}

.text-block strong {
  font-weight: bold;
  color: #ff7b00; /* Exemple de couleur orange pour mettre en valeur, ajuste selon ton thème */
}
.text-block p {
  margin-bottom: 1em; /* Espacement entre paragraphes pour qu'ils ne soient pas collés */
}



.monitor-tips .tips-list li img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 40px;
  border: 2px solid #0057d9 !important;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .monitor-tips .tips-list {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 1rem;
    padding: 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .monitor-tips .tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    min-width: 280px;
    max-width: 300px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
  .monitor-tips .tips-list li img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border: 2px solid #0057d9 !important;
    border-radius: 40px;
    flex-shrink: 0;
  }
  .monitor-tips .tips-list li span {
    flex: 1;
    font-size: 0.85rem;
    line-height: 1.3;
    max-width: 200px;
  }
}

.weight-tips-section .tips-list li span strong {
  font-weight: 700;
  color: #dd7026;
}

.weight-tips-section .tips-list li img {
  width: 120px;
  height: 120px;
  border-radius: 40px;
  border: 2px solid #003f9a;
  object-fit: cover;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .weight-tips-section .tips-list {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 1rem;
    padding: 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .weight-tips-section .tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    min-width: 280px;
    max-width: 300px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
  .weight-tips-section .tips-list li img {
    width: 110px;
    height: 110px;
    border-radius: 40px;
    border: 2px solid #003f9a;
    object-fit: cover;
    flex-shrink: 0;
  }
  .weight-tips-section .tips-list li span {
    flex: 1;
    font-size: .75rem;
    line-height: 1.3;
    max-width: 200px;
  }
}




.social-share-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

.error-message {
  color: #ff0000;
  font-size: 1.6rem;
  text-align: center;
  margin-top: 1rem;
}

.share-btn img {
  width: 27px;
  height: 27px;
}

@media screen and (max-width: 768px) {
  .social-share-buttons {
    gap: 0.5rem;
  }
  .share-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .share-btn img {
    width: 23px;
    height: 23px;
  }
}

.bbw-images-slider-section .image-card img {
  max-width: 100%;
  height: auto;
  image-rendering: auto;
  filter: none;
}
@media screen and (max-width: 768px) {
  .bbw-images-slider-section .image-card img {
    max-width: 100%;
    height: auto;
    image-rendering: auto;
    filter: none;
  }
}


.navigation-arrows {
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 2000; /* Augmenté pour éviter les chevauchements */
  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 1; /* Visible en permanence */
}

/* Mobile */
@media (max-width: 749px) {
  .navigation-arrows {
    bottom: 20px;
    right: 10px;
    margin-right: 0;
    margin-left: auto;
  }
}

/* Desktop */
@media (min-width: 750px) {
  .navigation-arrows {
    bottom: 20px;
    right: 10px;
    margin-right: 0;
    margin-left: auto;
  }
}

.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.arrow-home {
  background: #00000080; /* Fond semi-transparent */
}

.arrow-home:hover {
  background: #53abf3cc; /* Fond plus opaque au survol */
}

.arrow-up {
  background: #00000080;
}

.arrow-up:hover {
  background: #53abf3cc;
}

.arrow-left {
  background: #00000080;
}

.arrow-left:hover {
  background: #53abf3cc;
}

.arrow-right {
  background: #00000080;
}

.arrow-right:hover {
  background: #53abf3cc;
}

.arrow-refresh {
  background: #00000080;
}

.arrow-refresh:hover {
  background: #53abf3cc;
}

@media (max-width: 749px) {
  .arrow {
    width: 30px;
    height: 30px;
  }
  .arrow svg {
    width: 27px;
    height: 27px;
  }
}

@media (min-width: 750px) {
  .arrow {
    width: 35px;
    height: 35px;
  }
  .arrow svg {
    width: 30px;
    height: 30px;
  }
}

.arrow-home svg {
  stroke: #ffffff;
}

.arrow-up svg {
  stroke: #ffffff;
}

.arrow-left svg {
  stroke: #ffffff;
}

.arrow-right svg {
  stroke: #ffffff;
}

.arrow-refresh svg {
  fill: #ffffff !important;
}

/* Animation de rotation pour l'icône de rafraîchissement */
.arrow-refresh svg.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Privacy Policy Section */
.privacy-section {
  max-width: 1000px;
  margin: 100px auto !important;
  padding: 0 30px;
  text-align: left;
}

.privacy-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

.privacy-content {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.privacy-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #222;
  margin: 30px 0 15px;
}

.privacy-content p {
  margin-bottom: 20px;
}

.privacy-content ul {
  list-style-type: disc;
  margin: 20px 0;
  padding-left: 30px;
}

.privacy-content ul li {
  margin-bottom: 10px;
}

.privacy-content a {
  color: #ff6200;
  transition: color 0.3s ease;
}

.privacy-content a:hover {
  color: #e65500;
}

@media (max-width: 749px) {
  .privacy-section {
    margin: 20px auto;
    padding: 0 15px;
  }

  .privacy-title {
    font-size: 2rem;
  }

  .privacy-content h2 {
    font-size: 1.5rem;
  }

  .privacy-content {
    font-size: 0.9rem;
  }
}

/* Terms of Service Section */
.terms-section {
  max-width: 1000px;
  margin: 100px auto !important;
  padding: 0 20px;
  text-align: left;
}

.terms-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

.terms-content {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.terms-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #222;
  margin: 30px 0 15px;
}

.terms-content p {
  margin-bottom: 20px;
}

.terms-content ul {
  list-style-type: disc;
  margin: 20px 0;
  padding-left: 30px;
}

.terms-content ul li {
  margin-bottom: 10px;
}

.terms-content a {
  color: #ff6200;
  transition: color 0.3s ease;
}

.terms-content a:hover {
  color: #e65500;
}

@media (max-width: 749px) {
  .terms-section {
    margin: 20px auto;
    padding: 0 15px;
  }

  .terms-title {
    font-size: 2rem;
  }

  .terms-content h2 {
    font-size: 1.5rem;
  }

  .terms-content {
    font-size: 0.9rem;
  }
}


/* Newsletter Pop-up */
.newsletter-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10005;
  justify-content: center;
  align-items: center;
}

.popup-content {
  position: relative;
  background: #79baf7;
  padding: 20px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close-popup {
  position: absolute;
  top: 5px;
  right: 3px;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #000000;
}

.popup-image-container {
  width: 100%;
  max-height: 230px; /* Limite la hauteur du conteneur pour réduire la longueur du pop-up */
  overflow-y: auto; /* Active le défilement vertical manuel */
  border-radius: 8px 8px 0 0;
  margin-bottom: -10px;
  /* Styles de la barre de défilement */
  scrollbar-width: thin; /* Firefox : barre plus mince */
  scrollbar-color: #000000 #f0f0f0; 
}

/* Styles pour la barre de défilement (WebKit : Chrome, Safari, Edge) */
.popup-image-container::-webkit-scrollbar {
  width: 8px; /* Barre plus mince */
}

.popup-image-container::-webkit-scrollbar-track {
  background: #f0f0f0; /* Fond de la piste en gris clair */
  border-radius: 8px;
}

.popup-image-container::-webkit-scrollbar-thumb {
  background: #000000; /* Poignée en orange */
  border-radius: 8px;
}

.popup-image-container::-webkit-scrollbar-thumb:hover {
  background: #000000; /* Orange plus foncé au survol */
}

.popup-image {
  width: 100%;
  height: auto; /* Conserve les proportions de l'image */
  display: block; /* Évite les marges indésirables */
}

.popup-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000000;
  margin: 10px 0;
}

.popup-subtitle {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 15px;
}

.popup-marquee {
  background-color: #191929;
  overflow: hidden;
  width: 100%;
  padding: 3px 0;
  border-radius: 4px;
}

.popup-marquee .marquee-content {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
}

.popup-marquee .marquee-content p {
  margin: 0;
  padding: 0 10px;
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.popup-form input[type="text"],
.popup-form input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 2px solid #3c0beb;
  border-radius: 25px;
  font-size: 1rem;
  color: #000000;
}

.popup-form .checkbox {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  color: #444;
}

.popup-button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 25px;
  background-color: #000000;
  color: #ffffff;
  font-size: 1rem;
  border: 2px solid #0d32d8;
  cursor: pointer;
  transition: background-color 0.3s;
}

.popup-button:hover {
  background-color: #21327e;
  border: 2px solid #000000;
}

.popup-form .response-message {
  font-size: 0.9rem;
  margin-top: 10px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.popup-form .response-message.show {
  opacity: 1;
}

.social-contact-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -30px;
  margin-bottom: -15px;
}

.social-icons-container {
  display: flex;
  gap: 10px;
}

.social-icon img {
  width: 24px;
  height: auto;
  opacity: 1;
}

.contact-link a {
  font-size: 14px;
  color: #ff6200;
  margin-left: 10px;
}

.contact-link a:hover {
  color: #e65500;
}

@media (max-width: 749px) {
  .popup-content {
    padding: 15px;
    width: 95%;
  }

  .close-popup {
    position: absolute;
    top: -2px;
    right: -3px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #000000;
  }

  .popup-title {
    font-size: 1.5rem;
  }

  .popup-subtitle {
    font-size: 0.9rem;
  }

  .popup-marquee .marquee-content p {
    font-size: 14px;
  }

  .social-icon img {
    width: 20px;
  }

  .popup-image-container {
    max-height: 180px; 
    overflow-y: auto; 
    scrollbar-width: thin;
    scrollbar-color: #ff6200 #f0f0f0; 
  }

  .popup-image-container::-webkit-scrollbar {
    width: 8px; /* Barre plus mince sur mobile */
  }

  .popup-image-container::-webkit-scrollbar-track {
    background: #f0f0f0; /* Fond de la piste */
  }

  .popup-image-container::-webkit-scrollbar-thumb {
    background: #ff6200; /* Poignée en orange */
    border-radius: 8px;
  }

  .popup-image-container::-webkit-scrollbar-thumb:hover {
    background: #e65500; /* Orange plus foncé au survol */
  }
}

.diff-history {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.diff-history div {
  margin: 0.5rem 0;
}


/* Message Pop-up */
.message-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10006; /* Plus haut que le pop-up de newsletter (z-index: 10005) */
  justify-content: center;
  align-items: center;
}

.message-popup-content {
  position: relative;
  background: #f00c0c; /* Même fond que le pop-up de newsletter */
  padding: 20px;
  max-width: 300px;
  width: 80%;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation: fadeOut 10s forwards; /* Disparaît après 10 secondes */
}

.close-message-popup {
  position: absolute;
  top: 5px;
  right: 3px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #000000;
}

.message-popup-text {
  font-size: 1.2rem;
  color: #ffffff;
  margin: 10px 0;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none; /* Ne fonctionne pas directement, géré par JS */
  }
}

@media (max-width: 749px) {
  .message-popup-content {
    padding: 15px;
    width: 90%;
  }

  .message-popup-text {
    font-size: 0.9rem;
  }
}


/* Marquee Text Wrapper (second marquee only) */
.ebook-marquee {
  --duration: 50s;
  --gap: var(--space);
  display: flex;
  overflow: hidden;
  user-select: none;
  background-color: #5d96ec;
  gap: var(--gap);
  width: 100%;
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-right var(--duration) linear infinite;
}

.marquee__group p {
  margin: 0;
  color: #fdfdfd;
  font-size: 1.25rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.marquee--borders {
  padding-block: 0.5rem;
}

.ebook-marquee:hover .marquee__group {
  animation-play-state: paused;
}

@keyframes scroll-right {
  0% {
      transform: translateX(-100%);
  }
  100% {
      transform: translateX(0);
  }
}

@media (max-width: 600px) {
  .marquee-text-wrapper {
      font-size: 1rem;
  }
  .marquee__group p {
      font-size: 1rem;
  }
}

/* Slider Styles */
.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slider-image.active {
  opacity: 1;
}

.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgb(245, 220, 220);
  opacity: 0.5;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  cursor: pointer !important;
  border: none;
}

.dot.active {
  opacity: 1;
  background-color: #4314ec;
}

.dot:hover {
  opacity: 0.8;
}

.desktop-image {
  display: none;
}

.mobile-image {
  display: block;
}

@media (min-width: 768px) {
  .desktop-image {
      display: block;
  }
  .mobile-image {
      display: none;
  }
}

/* Hide scrollbar for mobile slider */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Font Classes */
.font-playfair {
  font-family: 'Playfair Display', serif;
}

.font-inter {
  font-family: 'Inter', sans-serif;
}

/* Truncate Text */
.truncate-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 7.5em;
  line-height: 1.7em;
}

/* Read More and Close Buttons */
.ebook-grid .read-more,
.ebook-grid .close-text {
  background: none;
  border: none;
  color: #6973ff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.ebook-grid .read-more:hover,
.ebook-grid .close-text:hover {
  color: #0a0909;
}

.ebook-grid .close-text {
  display: none;
}

.ebook-grid .text-center.mt-2.flex {
  margin-top: 0.2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Sharp Images */
.sharp-image {
  image-rendering: crisp-edges;
  max-width: 100%;
  object-fit: contain;
}

/* Container */
.ebook-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Hero Banner */
.ebook-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 750px !important;
}

@media (min-width: 768px) {
  .ebook-banner {
      height: 650px;
  }
}

.ebook-banner .absolute.inset-0 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}

.ebook-banner .relative.z-20 {
  position: relative;
  z-index: 20;
  text-align: center;
  padding: 1rem;
  color: rgb(81, 141, 168);
}

.ebook-banner .payhip-buy-button {
  background: linear-gradient(135deg, #49b6f5, #eee9df);
  color: rgb(0, 0, 0);
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  border: 2px solid #000000;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.ebook-banner .payhip-buy-button:hover {
  background: linear-gradient(135deg, #edeff5, #bde0f5) !important;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.ebook-banner h1 {
  color: #e48315;
  font-size: 40px;
}

.ebook-banner h2 {
  color: #bb7bb2;
  font-size: 30px;
}

@media (max-width: 767px) {
  .ebook-banner h1 {
    color: #e48315;
    font-size: 30px;
  }
  .ebook-banner h2 {
    color: #c474a9;
    font-size: 20px;
  }
}

/* Image + Text Section */
.ebook-image-text {
  padding: 1rem 0;
  background-color: #f7f7f7;
}

.ebook-image-text .flex.flex-col.items-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ebook-image-text .w-full.mb-8 {
  width: 100%;
  margin-bottom: 2rem;
}

.ebook-image-text .w-full.mb-8 img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.ebook-image-text .w-full.mb-8 img:hover {
  transform: scale(1.05);
}

.ebook-image-text .w-full.text-center {
  width: 100%;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.ebook-image-text .payhip-buy-button {
  background: linear-gradient(135deg, #f0eeeb, #6fc4f5);
  color: rgb(10, 1, 1);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  border: 2px solid #000000;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.ebook-image-text .payhip-buy-button:hover {
  background: linear-gradient(135deg, #97dff1, #ebe8e9);
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .ebook-image-text .flex.flex-col.items-center {
      flex-direction: row;
      justify-content: center;
      gap: 2rem;
  }


  .ebook-image-text .w-full.mb-8 {
      width: 50%;
      margin-bottom: 0;
  }
  .ebook-image-text .w-full.text-center {
      width: 50%;
      text-align: left;
  }
}

/* Four Images with Buttons (First and Second) */
.ebook-inspiration,
.ebook-why {
  padding: 1rem 0;
  background-color: #ffffff;
}

.ebook-grid.grid-cols-1.md\:grid-cols-4 {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 2rem;
}

@media (min-width: 768px) {
  .ebook-grid.grid-cols-1.md\:grid-cols-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
  }
}

.ebook-grid > .min-w-\[80\%\].md\:min-w-0.snap-center {
  flex: 0 0 80%;
  scroll-snap-align: center;
  min-width: 80%;
}

@media (min-width: 768px) {
  .ebook-grid > .min-w-\[80\%\].md\:min-w-0.snap-center {
      min-width: 0;
  }
}

.ebook-grid img {
  width: 100%;
  height: 16rem;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.ebook-grid img:hover {
  transform: scale(1.05);
}

.ebook-grid .cta-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.ebook-grid .payhip-buy-button {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #faf4f7, #a6dafc);
  color: rgb(31, 24, 14);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: 2px solid #000000;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 200px;
}

.ebook-grid .payhip-buy-button:hover {
  background: linear-gradient(135deg, #b0bde9, #fcf7f9);
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Quiz Section */
.ebook-quiz {
  padding: 0.1rem 0;
  background-color: #ffffff;
}

.ebook-quiz .max-w-2xl.mx-auto.bg-pink-50 {
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, #f5f2f3, #b0e0f3);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.ebook-quiz #quiz #question {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-size: 1.25rem;
  font-family: 'Inter', sans-serif;
  color: #1f2937;
  margin-bottom: 1.5rem;
  text-align: center;
  border-bottom: 2px solid #69a5ff;
  padding-bottom: 1rem;
}

.ebook-quiz .flex.flex-row.justify-center.space-x-4 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
}

.ebook-quiz .result-buttons.flex.flex-row.justify-center.space-x-6 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.5rem;
}

.ebook-quiz #results-list div {
  background: #c6e0f1;
  padding: 1rem;
  margin-top: 7px;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 2px solid #000000 !important;
}

.ebook-quiz .answer-yes {
  color: #16a34a;
}

.ebook-quiz .answer-no {
  color: #dc2626;
}

.ebook-quiz #yes-btn,
.ebook-quiz #no-btn {
  background: linear-gradient(135deg, #d8f3fa, #f5f3f3);
  color: rgb(0, 0, 0);
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.ebook-quiz #yes-btn:hover,
.ebook-quiz #no-btn:hover {
  background: linear-gradient(135deg, #74a1b3, #60a4fc);
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.ebook-quiz #restart-quiz,
.ebook-quiz .result-buttons .payhip-buy-button {
  background: linear-gradient(135deg, #f1e6ec, #87d2f0);
  margin-top: 5px;
  color: white;
  padding: 1rem !important;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  display: none; /* Cachés par défaut */
}

.ebook-quiz #results.show-buttons #restart-quiz,
.ebook-quiz #results.show-buttons .result-buttons .payhip-buy-button {
  display: inline-block; /* Affichés uniquement avec .show-buttons */
}

.ebook-quiz #restart-quiz:hover,
.ebook-quiz .result-buttons .payhip-buy-button:hover {
  background: linear-gradient(135deg, #4f5ff1, #f0eced);
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
  .ebook-quiz .max-w-2xl.mx-auto.bg-pink-50 {
      padding: 1rem;
      max-width: 90%;
  }
  .ebook-quiz #quiz #question {
      font-size: 1rem;
  }
  .ebook-quiz #yes-btn,
  .ebook-quiz #no-btn {
      padding: 0.5rem 1.5rem;
      font-size: 0.8rem;
  }
  .ebook-quiz #restart-quiz,
  .ebook-quiz .result-buttons .payhip-buy-button {
      padding: 0.5rem 1rem;
      font-size: 0.8rem;
  }
  .ebook-quiz .flex.flex-row.justify-center.space-x-4 {
      flex-direction: row;
      gap: 0.5rem;
  }
  .ebook-quiz .result-buttons.flex.flex-row.justify-center.space-x-6 {
      flex-direction: row;
      gap: 1rem;
  }
}

/* WhatsApp Icon */
.whatsapp-icon {
  position: fixed;
  left: 4px;
  bottom: 4px;
  z-index: 30;
}

.whatsapp-icon img {
  width: 48px;
  height: 48px;
  transition: transform 0.3s ease;
}

.whatsapp-icon img:hover {
  transform: scale(1.1);
}

.whatsapp-icon span {
  position: absolute;
  left: 56px;
  bottom: 1 !important;
  background: linear-gradient(135deg, #ebf2f7, #a3cfec);
  color: rgb(0, 0, 0);
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  padding: 0.5rem 0.5rem;
  border-radius: 5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.whatsapp-icon:hover span {
  opacity: 1;
}

@media (max-width: 767px) {
  .whatsapp-icon {
      left: 4px;
      bottom: 4px;
  }
}

/* Styles pour la section du popup */
#fitness-popup-section {
  position: relative;
}

/* Styles pour le conteneur du popup */
#fitness-popup-container {
  position: fixed;
  top: 500px; /* Position plus basse dans le corps */
  left: 10px; /* Position à gauche */
  z-index: 20000;
}

/* Styles pour la notification du popup */
.fitness-popup-notification {
  background-color: #ff6200; /* Orange pour correspondre au thème TrainingHoop */
  color: #FFFFFF; /* Blanc */
  padding: 10px 15px;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  cursor: pointer;
  max-width: 320px;
  font-size: 13px;
  position: relative;
  border: 2px solid #000000; /* Orange clair */
}

/* Styles pour le conteneur de l'avatar */
.fitness-avatar-container {
  position: relative;
}

/* Styles pour l'image avatar */
.fitness-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  margin-right: 10px;
  object-fit: cover;
  position: relative;
  top: -5px;
}

/* Styles pour le bouton de fermeture */
.fitness-close-btn {
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  top: 5px;
  left: 10px;
  cursor: pointer;
  color: #FFFFFF;
  transition: color 0.3s;
}

.fitness-close-btn:hover {
  color: #00b7eb; /* Bleu du thème TrainingHoop */
}

/* Styles pour le contenu du texte */
.fitness-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fitness-content a {
  text-decoration: none;
  color: inherit;
}

.fitness-title {
  font-size: 12px;
  font-weight: bold;
  color: #000000; /* Bleu pour le titre */
  margin: 0 0 2px;
  text-transform: uppercase;
}

.fitness-description {
  font-size: 12px;
  color: #FFFFFF;
  margin: 0;
}

/* Media query pour mobile */
@media (max-width: 768px) {
  .fitness-popup-notification {
      font-size: 11px;
  }

  /* Styles pour le conteneur du popup */
#fitness-popup-container {
  position: fixed;
  top: 550px !important; /* Position plus basse dans le corps */
  left: 10px; /* Position à gauche */
  z-index: 20000;
}
  .fitness-title,
  .fitness-description {
      font-size: 12px;
  }
  .fitness-avatar {
      width: 50px;
      height: 50px;
  }
}
/* Styles pour les points indicateurs des sliders */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding-bottom: 10px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  background-color: #d7dcf1; /* Gris clair pour les points inactifs */
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dots .dot.active {
  background-color: #1126df !important; /* Bleu pour les points actifs (thème TrainingHoop) */
}



/* Styles pour le carrousel des tips de poids sur mobile */
@media (max-width: 880px) {
  .weight-tips-section .carousel-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    position: relative;
  }

  .weight-tips-section .weight-tips-carousel {
    display: flex;
    width: 100%;
  }

  .weight-tips-section .tips-list {
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
    padding: 0;
    margin: 0;
    width: max-content;
  }

  .weight-tips-section .tips-list li {
    flex: 0 0 auto;
    width: 100%;
    max-width: 300px;
    padding: 10px;
    scroll-snap-align: start;
    box-sizing: border-box;
  }

  .weight-tips-section .tips-list li img {
    max-width: 100%;
    height: auto;
  }

  .weight-tips-section .slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .weight-tips-section .slider-dots .dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .weight-tips-section .slider-dots .dot.active {
    background-color: #2b00eb; /* Bleu thème TrainingHoop */
  }
}

/* Désactiver le carrousel sur desktop */
@media (min-width: 881px) {
  .weight-tips-section .carousel-wrap {
    overflow-x: visible;
  }

  .weight-tips-section .weight-tips-carousel {
    display: block;
  }

  .weight-tips-section .tips-list {
    display: flex;
    flex-direction: column;
  }

  .weight-tips-section .slider-dots {
    display: none;
  }
}


/* Ajouter au fichier CSS */
.btn--orange {
  cursor: pointer;
}
.hero-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 20px auto 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
}
.hero-form .icon-btn.close {
  position: absolute;
  top: 3px;
  right: -3px;
  font-size: 18px;
  color: #f5740b;
  background: transparent;
  border: none;
  cursor: pointer;
}
.hero-form input[type="text"],
.hero-form input[type="email"] {
  padding: 10px;
  border: 2px solid #000000;
  border-radius: 25px !important;
  font-size: 16px;
}
.hero-form .checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
}
.hero-form .btn {
  padding: 10px;
  font-size: 16px;
}
.hero-form .response-message {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}
.hero-form .response-message.show {
  display: block;
}
@media (max-width: 768px) {
  .hero-form {
      padding: 15px;
      max-width: 90%;
  }
  .hero-form input[type="text"],
  .hero-form input[type="email"] {
      font-size: 14px;
  }
  .hero-form .btn {
      font-size: 14px;
  }
}



/* Ajouter au fichier CSS */
.inspiration-grid {
  display: flex;
  gap: 8px;
  max-width: 1200px;
  align-items: stretch;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.inspiration-grid::-webkit-scrollbar {
  display: none;
}
.inspiration-grid {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.sharp-image {
  border: 2px solid #e79d13;
}

figcaption {
  color: #e96e0a;
  text-align: center;
  margin: 0 auto;
  padding: 0 0px;
}
@media (min-width: 768px) {
  .inspiration-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
  }
}


/* Reviews Section */
.reviews-section {
  padding: 1px 0px;
  background-color: #f8f9fa;
  text-align: center;
  max-width: 1300px !important;
}

.section-title {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.reviews-slider-container {
  overflow-x: auto;
  scrollbar-width: thin;
  -ms-overflow-style: auto;
}

.reviews-slider-container::-webkit-scrollbar {
  height: 8px;
}

.reviews-slider-container::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}

.reviews-slider {
  display: flex;
  gap: 20px;
  padding: 5px;
  width: max-content;
}

.review-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 10px;
  width: 300px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #1E90FF;
  object-fit: cover;
}

.review-info {
  text-align: left;
}

.review-name {
  font-size: 1.2rem;
  color: #e68c05;
  margin: 0;
  font-weight: 600;
}

.review-stars {
  color: #3006a5;
  font-size: 1.6rem;
  margin-top: 5px;
}

.review-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  font-style: italic;
  text-align: left;
}

.review-text strong {
  color: #1E90FF;
  font-weight: 700;
}

@media (max-width: 768px) {
  .review-card {
    width: 280px;
  }

  .section-title {
    font-size: 2rem;
  }
}



/* Style pour le bouton Subscribe du formulaire */
.hero-form .btn--orange {
  background-color: #000000;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  text-align: center;
  min-width: 150px;
}

.hero-form .btn--orange:hover {
  background-color: #e47310;
  transform: scale(1.05);
}

.hero-form .btn--orange:active {
  transform: scale(0.95);
}


/* Styles existants pour la section Inspiration */
.inspiration-grid {
  display: flex;
  gap: 8px;
  max-width: 1200px;
  align-items: stretch;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.inspiration-grid::-webkit-scrollbar {
  display: none;
}
.inspiration-grid {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.sharp-image {
  border: 2px solid #e79a0a !important;
}

@media (min-width: 768px) {
  .inspiration-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
  }
}


.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

/* Style pour le bouton Download (après soumission) */
.btn--purple {
  background-color: #f3960a;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 30px !important;
  border: 2px solid #000000 !important;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  text-align: center;
  min-width: 150px;
}

.btn--purple:hover {
  background-color: #917313;
  transform: scale(1.05);
}

.btn--purple:active {
  transform: scale(0.95);
}

/* Style pour le bouton Subscribe du formulaire */
.hero-form .btn--orange {
  background-color: #000000;
  color: #ffffff;
  padding: 10px 2px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  border: 2px solid #e7b615 !important;
  border-radius: 20px !important;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  text-align: center;
  min-width: 150px;
}

.hero-form .btn--orange:hover {
  background-color: #e6720c;
  transform: scale(1.05);
}

.hero-form .btn--orange:active {
  transform: scale(0.95);
}

/* Media query pour mobile */
@media (max-width: 768px) {
  .cta-row {
    flex-direction: column;
    gap: 12px;
  }

  .btn--purple,
  .hero-form .btn--orange {
    width: 100%;
    max-width: 300px;
    font-size: 13px;
    padding: 8px 16px;
    min-width: unset;
  }
}

/* Styles pour la section Trainers */
.trainers-section {
  padding: 5px 3px;
  max-width: 1350px;
  background-color: #d8e4f0;
}
.trainers-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  padding: 16px 0;
}
.trainers-carousel::-webkit-scrollbar {
  display: none;
}
.trainers-carousel {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.trainer-card {
  flex: 0 0 calc(50% - 8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgb(228, 237, 238);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 16px;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}
.trainer-card:hover {
  transform: translateY(-4px);
}
.trainer-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #1E90FF;
}
.trainer-caption {
  text-align: center;
  margin-top: 12px;
}
.trainer-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
}
.trainer-description {
  font-size: 0.9rem;
  color: #555;
  margin-top: 4px;
}
@media (min-width: 880px) {
  .trainers-carousel {
    gap: 24px;
  }
  .trainer-card {
    flex: 0 0 calc(25% - 18px);
  }
}

.cta-row {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 70px !important;
  flex-wrap: nowrap !important;
}

.cta-row .btn {
  flex: 1 !important;
  max-width: 30% !important;
  padding: 10px 16px !important;
  font-size: 0.8rem !important;
  border-radius: 30px !important;
  text-align: center !important;
}

@media (max-width: 767px) {
  .cta-row {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 50px !important;
    flex-wrap: nowrap !important;
  }
  .cta-row .btn {
    flex: 1 !important;
    max-width: 60% !important;
    padding: 10px 16px !important;
    font-size: 0.8rem !important;
    text-align: center !important;
  }
}

/* Blog Section Title */
.section-title {
  font-size: 2rem;
  color: #2d3748;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 1.5rem;
    color: #4a5568;
  }
}
.blog-section {
  padding: 40px 20px;
  background-color: #f9fafb;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-card {
  background: rgb(203, 234, 240);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
}
.blog-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #121416;
  margin: 0;
  text-decoration: none;
}
.blog-card .blog-title a {
  color: #121416;
  text-decoration: none !important; /* Force la suppression des soulignements */
  transition: color 0.3s ease;
}
.blog-card .blog-title a:hover {
  color: #df7d2e; /* Même couleur que read-more au survol */
  text-decoration: none !important; /* Pas de soulignement au survol */
}
@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .blog-title {
    font-size: 1rem;
    color: #121416;
  }
  .blog-card .blog-title a {
    color: #121416;
    text-decoration: none !important; /* Force la suppression des soulignements */
  }
  .blog-card .blog-title a:hover {
    color: #df7d2e;
    text-decoration: none !important; /* Pas de soulignement au survol */
  }
}

/* Blog Card Image */
.blog-card-image {
  display: block;
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin: 12px auto;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.blog-card-image a {
  display: block;
}
.blog-card-image a:hover img {
  opacity: 0.9; /* Effet d'opacité au survol */
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .blog-card-image {
    height: 170px;
  }
}

/* Blog Excerpt and Read More */
.blog-excerpt {
  font-size: 1rem;
  color: #4a5568;
  margin: 12px 0 8px;
  line-height: 1.5;
  font-family: 'Arial', sans-serif;
}
.read-more {
  color: #eeecea; /* Orange pour contraste */
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.read-more:hover {
  color: #f3d0b7; /* Orange plus foncé au survol */
  text-decoration: underline;
}
@media (max-width: 767px) {
  .blog-excerpt {
    font-size: 0.9rem;
  }
  .read-more {
    font-size: 0.9rem;
  }
}

/* Marquee Blog Section */
.marquee-blog {
  background-color: #2321a8;
  color: #ffffff;
  margin-top: 80px;
  z-index: 100;
  position: relative;
}
.marquee-blog .marquee__group p {
  font-size: 1.2rem;
}

/* Blog Article Section 1 */
.blog-article {
  padding: 80px 2px;
  margin-bottom: -70px !important;
  background-color: #f9fafb;
}
.article-container {
  max-width: 1000px;
  margin: 0 auto;
}
.article-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  text-align: center;
  margin-bottom: 16px;
}
.article-meta {
  text-align: center;
  color: #4a5568;
  font-size: 1rem;
  margin-bottom: 24px;
}
.article-content {
  line-height: 1.6;
  color: #333;
}
.article-content p {
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.article-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2d3748;
  margin: 32px 0 16px;
}
.article-content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 16px;
}
.article-content li {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.article-image {
  display: block;
  max-width: 100%;
  height: 500px;
  margin: 16px auto;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .article-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 16px auto;
    border-radius: 8px;
  }
}
@media (max-width: 767px) {
  .article-title {
    font-size: 1.2rem;
  }

  .article-content p,
  .article-content li {
    font-size: 1rem;
  }
  .article-image {
    margin: 12px auto;
  }
}
/* Share on Social Media */
.share-section {
  margin: 32px 0;
  text-align: center;
}
.share-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 16px;
}
.share-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.share-icon {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}
.share-icon:hover {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .share-section h2 {
    font-size: 1.5rem;
  }
  .share-icon {
    width: 28px;
    height: 28px;
  }
}

/* Related Articles */
.related-articles {
  margin: 32px 0;
}
.related-articles h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2d3748;
  text-align: center;
  margin-bottom: 24px;
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.related-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.related-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 12px;
}
.related-excerpt {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.5;
  margin-bottom: 8px;
}
.read-more {
  color: #df7d2e;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.read-more:hover {
  color: #b55e1e;
}
@media (min-width: 768px) {
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .related-articles h2 {
    font-size: 1.5rem;
  }
  .related-card h3 {
    font-size: 1.25rem;
  }
  .related-excerpt {
    font-size: 0.9rem;
  }
  .read-more {
    font-size: 0.9rem;
  }
}

/* Comments Section */
.comment-section {
  margin: 32px 0;
}
.comment-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 24px;
}
.comment {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}
.comment-meta {
  font-size: 0.9rem;
  color: #d87416;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
}
.comment-text {
  font-size: 1rem;
  color: #000000;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .comment-section h2 {
    font-size: 1.5rem;
  }
  .comment-meta {
    font-size: 0.85rem;
  }
  .comment-text {
    font-size: 0.9rem;
  }
}

/* Back to Blog Button */
.back-to-blog {
  position: fixed;
  bottom: 10px;
  right: 20px;
  display: flex;
  align-items: center;
  background: #000000;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}
.back-to-blog img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.back-to-blog:hover {
  background: #5d8bee;
}
@media (max-width: 767px) {
  .back-to-blog {
    font-size: 0.8rem;
    right: 5px;
    padding: 3px 1px;
  }
  .back-to-blog img {
    width: 20px;
    height: 20px;
  }
}


/* About Section */
.about-section {
  padding: 90px 20px !important;
  margin-bottom: -50px !important;
}
.about-content {
  background: rgb(44, 204, 240);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 24px;
  text-align: center;
  max-width: 1100px; /* Réduit pour centrer le texte sur desktop */
  margin: 0 auto;
}
.about-text {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.7; /* Augmenté pour plus d'aération */
  font-family: 'Arial', sans-serif;
}
.about-text p {
  margin: 0 0 20px; /* Espacement entre paragraphes */
}
.about-text p:last-child {
  margin-bottom: 0; /* Pas de marge en bas du dernier paragraphe */
}
@media (max-width: 767px) {
  .about-text {
    font-size: 1rem;
  }
  .about-text p {
    margin: 0 0 16px; /* Espacement réduit sur mobile */
  }
  .about-text p:last-child {
    margin-bottom: 0;
  }
}

/* Footer About */
.footer-about p {
  font-size: 1rem;
  color: #e8ecf3;
  line-height: 1.5;
  font-family: 'Arial', sans-serif;
  margin: 12px 0;
}
.footer-about .read-more {
  color: #67c6f1;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-about .read-more:hover {
  color:  #450894;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .footer-about p {
    font-size: 0.9rem;
  }
  .footer-about .read-more {
    font-size: 0.9rem;
  }
}


.article-container {
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid #e26d0e; /* Bordure bleue */
  border-radius: 10px;
  padding: 10px;
}

@media (max-width: 767px) {
  .article-container {
    max-width: 850px;
    margin: 0 auto;
    background: #ffffff;
    border: 2px solid #da7d04; /* Bordure bleue */
    border-radius: 10px;
  }
}

.logo {
  text-align: center;
}
.logo-image {
  max-width: 100%;
  height: 160px;
  display: block;
  margin: 0 auto;
}
.logo-text {
  text-align: center;
  margin: 0;
}

/* Contact Section */
.contact-section {
  max-width: 600px !important;
  margin: 0 auto;
  padding: 80px 2px !important;
  text-align: center;
  border-radius: 10px;
  margin-bottom: -70px !important;
}

.contact-intro {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 0.7rem !important;
}

.contact-form-container {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 0.5rem !important;
  position: relative;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  border: 2px solid #bbbab8;
  border-radius: 25px;
  padding: 0.75rem;
  font-size: 1rem;
  color: #1f2937;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  background-color: #f97316;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  border: 2px solid #8d7a68;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  max-width: 300px !important;
  margin: 0 auto;
}

.form-submit:hover {
  background-color: #251912;
}

.success-message {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #186b2c;
  color: #000000 !important;
  padding: -0.2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  text-align: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  margin-top: 1rem;
  z-index: 10;
}

.success-message.hidden {
  opacity: 0;
}

/* Responsive Design */
@media (max-width: 640px) {
  .contact-section {
    padding: 50px 5px;
    border: 2px solid #0004ff;
    margin-bottom: -60px !important;
  }

  .contact-form-container {
    padding: 1.5rem;
  }

  .form-input,
  .form-textarea {
    font-size: 0.875rem;
  }

  .form-submit {
    max-width: 100%;
  }

  .success-message {
    max-width: 90%;
    right: 0.5rem;
    bottom: 0.5rem;
  }
}