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

body {
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.09rem;
  overflow-x: hidden;
}

ul {
  padding-left: 30px;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition:
    background 0.3s,
    backdrop-filter 0.3s;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition:
    background 0.3s,
    backdrop-filter 0.3s;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  margin: 0 auto;
}

.logo img {
  height: 100px;
  display: block;
}

.phone {
  font-size: 14px;
  color: #6d5952;
}

.book {
  border-radius: 50px;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  background-color: #6d5952;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.header-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 10px 0;
  background-color: #fff;
  border-top: 1px solid #eee;
}

.header-nav a {
  text-decoration: none;
  color: #6d5952;
  font-size: 16px;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  white-space: nowrap;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #fff;
  border-top: 1px solid #ddd;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 99;
}

.mobile-menu a {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  text-decoration: none;
  color: #6d5952;
}

.hero-section {
  width: 100%;
  padding: 3rem 1rem;
  box-sizing: border-box;
  text-align: center;
}

.hero-container {
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 0.6rem;
}

.hero-video-wrapper {
  width: 100%;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
  border: none;
}

.peeling-tech-section {
  padding: 40px 20px;
  background-color: #ffffff;
  font-family: "Barlow", sans-serif;
}

.peeling-tech-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.peeling-tech-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.peeling-tech-content {
  flex: 1;
  min-width: 300px;
}

.peeling-tech-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.peeling-tech-intro,
.peeling-tech-description {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.peeling-tech-list {
  padding-left: 20px;
  margin-bottom: 20px;
}

.peeling-tech-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.5;
}

.peeling-reserve-button {
  margin-top: 25px;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  color: #ffffff;
  background-color: #6d5952;
  transition: all 0.3s ease;
  font-weight: bold;
}

.peeling-reserve-button:hover {
  background-color: #5a4844;
}

.tout-savoir-media img {
  width: 100%;
}

/* --- GIFT CARD SECTION (Desktop First) --- */
.gift-card-section {
  padding: 0px 40px;
  background-color: #fff;
  /* Or another color if you prefer */
}

.gift-card-container {
  position: relative;
  /* This is crucial for positioning the button */
  max-width: 900px;
  /* Adjust the max size as you see fit */
  margin: 0 auto;
}

.gift-card-image {
  width: 100%;
  height: auto;
  display: block;
  /* Removes extra space below the image */
  /*   border-radius: 8px; */
  /* Optional: adds slightly rounded corners */
}

.gift-card-button {
  position: absolute;
  /* Position it at the bottom center */
  bottom: 70px;
  /* Adjust this value to control how much it overlaps */
  left: 50%;
  transform: translateX(-50%);

  /* Button Styling */
  display: inline-block;
  background-color: #3a2d24;
  /* Dark brown from your theme */
  color: #fff;
  padding: 16px 35px;
  border-radius: 50px;
  /* Pill shape */
  font-family: "Barlow", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  /* Prevents the text from wrapping */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.gift-card-button:hover {
  background-color: #57463c;
  transform: translateX(-50%) translateY(-3px);
  /* Slight lift on hover */
}

.endosphere-science-section {
  padding: 4rem 1rem;

  text-align: center;
  font-family: "Barlow", sans-serif;
}

.endosphere-science-container {
  max-width: 900px;
  margin: 0 auto;
}

.endosphere-science-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.endosphere-science-intro {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.endosphere-science-benefits {
  text-align: left;
  list-style: disc;
  margin: 1rem auto 2rem;
  max-width: 600px;
  padding-left: 1.2rem;
}

.endosphere-science-benefits li {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  color: #6d5952;
}

.endosphere-science-note {
  font-size: 1.05rem;
  margin: 1rem auto 2rem;
}

.endosphere-science-button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.endosphere-science-button {
  background-color: #6d5952;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 40px;
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.tout-savoir-peeling {
  display: flex;
  flex-direction: row;
}

.tout-savoir-media {
  max-width: 33%;
  min-width: 33%;
}

.tout-savoir-content {
  max-width: 66%;
  padding-left: 15px;
}




.peeling-facts-section {
  padding: 0;
  background-color: #fff;
  font-family: "Barlow", sans-serif;
  text-align: center;
}

.peeling-facts-content {
  margin: auto;
  padding: 0px;
  height: 100%;
  position: relative;
}

.peeling-facts-icon {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffffff;
}

.peeling-facts-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.peeling-facts-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

.peeling-results-section {
  text-align: center;
  padding: 50px 20px;
  font-family: "Barlow", sans-serif;
}

.peeling-results-title {
  font-size: 1.6rem;
  max-width: 800px;
  margin: 0 auto 40px;
}

.cellulite-education-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 100px;
}

.education-main-heading {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #333;
}

.cellulite-types-carousel {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.carousel-content-display {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
  min-height: 300px;
}

.carousel-navigation-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9;
}

.carousel-nav-button {
  width: 50px;
  height: 50px;
  border: 2px solid #ddd;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  color: #666;
}

.carousel-nav-button:hover {
  border-color: #333;
  background: #f9f9f9;
  color: #333;
}

.visual-representation-area {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: right;
  position: relative;
}

.textual-information-section {
  flex: 1;
}

.slide-title-heading {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.slide-description-paragraph {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

.recognition-guide-section h4 {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.symptoms-characteristics-list {
  list-style: none;
}

.symptom-list-item {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
  line-height: 1.5;
}

.symptom-list-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 16px;
}

.slide-indicator-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator-dot.active-dot {
  background: #333;
}

.indicator-dot:hover {
  background: #666;
}

.accordion-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 10px;
}

.accordion-item {
  border-bottom: 1px solid #6d5952;
}

.accordion-header {
  background-color: white;
  cursor: pointer;
  padding: 15px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.accordion-header:hover {
  background-color: #eeeeee;
}

.accordion-content {
  display: none;
  padding: 15px;
  background-color: #fff;
  animation: fadeIn 0.3s ease-in-out;
  text-align: left;
}

.accordion-item.active .accordion-content {
  display: block;
}

.body-benefits-section {
  background-color: #e1cec3;
  padding: 60px 20px;
  text-align: center;
}

.body-benefits-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000;
}

.body-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-item img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
}

.benefit-item p {
  font-size: 1rem;
  color: #000;
  line-height: 1.4;
}

/* Hide all slides by default */

.slide-pourquoi {
  position: relative;
}

.slide-pourquoi .doublechin-slide-text {
  text-align: center;
  position: absolute;
  top: 50px;
  background: transparent;
  padding: 30px;
}

.slide-pourquoi .doublechin-slide-text h3 {
  margin-bottom: 70px;
  font-size: 40px;
  text-align: center !important;
}

.slide-pourquoi p {
  width: 100%;
  padding: 0px 0px;
  font-size: 30px !important;
  text-align: center !important;
}

.slide-flex {
  display: flex;
  flex-direction: row;
}

.slide-content {
  display: none;
}

.slide-content img {
  height: 250px;
  width: 250px;
  object-fit: cover;
  border-radius: 50%;
}

.slide-content ul {
  padding: 10px;
}

.slide-content.active-slide {
  display: block;
}

.care-section {
  background: #e1cec3;
  padding: 3rem 1rem;
}

.care-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.care-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: block;
}

.care-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #222;
}

.care-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #444;
}

.care-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.care-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #444;
}

.care-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #222;
  font-size: 1.2rem;
  line-height: 1;
}

.care-list li:last-child::before {
  content: "→";
  font-size: 1.2rem;
}

.bodysculpt-zone-selector {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
}

.zone-btn {
  border: none;
  background: none;
  cursor: pointer;
  text-align: center;
  transition: transform 0.3s ease;
}

.zone-btn span {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  transition: border 0.3s;
  align-content: center;
}

.zone-btn.active span {
  border-color: #6d5952;
}

.zone-btn span {
  display: block;
  margin-top: 8px;
  font-weight: bold;
  font-size: 0.95rem;
}

.zone-btn:hover {
  transform: scale(1.05);
}

.bodysculpt-before-after {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.bodysculpt-before-after .before,
.bodysculpt-before-after .after {
  max-width: 300px;
}

.bodysculpt-before-after img {
  width: 100%;
  border-radius: 15px;
  transition: opacity 0.3s ease;
}

.bodysculpt-zones-section {
  padding: 60px 20px;
  font-family: "Barlow", sans-serif;
}

.bodysculpt-zones-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.bodysculpt-body-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.body-zones-image {
  position: relative;
  max-width: 400px;
  flex: 1;
}

.body-image {
  width: 100%;
  border-radius: 10px;
  background-color: #e1cec3;
}

#benefits-summary {
  margin: 2rem auto;
  padding: 0 1rem;
}

.bs2-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Slider layout: prev / viewport / next */
.bs2-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}

.bs2-nav {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The masked viewport */
.bs2-track-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  /* two columns of 320px each */
}

/* Track & Slides */
.bs2-track {
  display: flex;
  max-width: 33%;
  transition: transform 0.4s ease;
}

.bs2-slide {
  flex: 0 0 100%;
  display: flex;
  gap: 1.5rem;
  box-sizing: border-box;
  padding: 0.5rem 0;
  align-items: center;
}

/* Media & Content */
.bs2-slide-media {
  flex: 1;
}

.bs2-slide-media img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.bs2-slide-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bs2-slide-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #222;
}

.bs2-slide-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.cernes-section {
  background: #e1cec3;
  padding: 3rem 1rem;
}

.cernes-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 2rem;
  align-items: center;
}

.cernes-image img {
  height: 350px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: block;
}

.cernes-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #111;
}

.cernes-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #444;
}

.treatment-point {
  position: absolute;
  display: flex;
  align-items: center;
  z-index: 2;
}

.treatment-point .dot {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid #b59884;
  border-radius: 50%;
  animation: blink 1.8s infinite;
}

.treatment-point span {
  margin-left: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6d5952;
  white-space: nowrap;
  pointer-events: none;
}

@keyframes blink {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}

.bodysculpt-zones-text {
  flex: 1;
  min-width: 250px;
  max-width: 425px;
  align-self: center;
}

.bodysculpt-zones-word-isolated {
  font-size: 1.5rem;
  color: #b59884;
  font-style: italic;
}

.bodysculpt-zones-text p {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000000;
}

.bodysculpt-zones-text ul {
  list-style: disc;
  padding-left: 20px;
  color: #6d5952;
  font-size: 1rem;
}

.bodysculpt-zones-text li {
  margin: 8px;
}

.point-bras {
  top: 13%;
  left: 33%;
  flex-direction: column;
}

.point-abdomen {
  top: 36%;
  left: 55%;
}

.point-fessiers {
  top: 43%;
  left: 32%;
  flex-direction: column;
}

.point-cuisses {
  top: 53%;
  left: 38%;
  flex-direction: column;
}

.point-mollets {
  top: 35%;
  left: 38%;
  flex-direction: column;
}

.point-hanche {
  top: 45%;
  left: 54%;
  flex-direction: column;
}

.point-dos {
  top: 26%;
  left: 36%;
  flex-direction: column;
}

.point-flancs {
  top: 36%;
  left: 37%;
  flex-direction: column;
}

.bodysculpt-pricing-section {
  padding: 60px 20px;
  font-family: "Barlow", sans-serif;
  background-color: #fff;
}

.bodysculpt-pricing-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.pricing-column {
  background-color: #e1cec3;
  border-radius: 12px;
  padding: 25px;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.pricing-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.pricing-column h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #6d5952;
}

.subtitle {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 25px;
}

.pricing-list {
  list-style: none;
  padding: 0;
}

.pricing-list li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  transition: color 0.3s;
  border-bottom: 0.1px solid #cab5ad;
}

.pricing-list li:hover {
  color: #6d5952;
}

.old {
  text-decoration: line-through;
  color: #ffffff;
  margin-right: 10px;
}

.bodysculpt-tabs-section {
  padding: 20px 20px;
  max-width: 900px;
  margin: auto;
}

.tabs {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
}

.tab-btn {
  background: none;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  padding: 14px 24px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.tab-btn.active {
  border-color: #6d5952;
  color: #6d5952;
}

.tab-wrapper {
  position: relative;
  min-height: 200px;
}

.tab-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}

.tab-content.active {
  position: relative;
  opacity: 1;
  pointer-events: all;
}

.highlight {
  font-size: 1.1rem;
  color: #000;
  padding: 20px;
  border-radius: 8px;
  line-height: 1.6;
}

.contra-list {
  list-style: disc;
  padding-left: 20px;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

.contra-list li {
  margin: 16px;
}

.bodysculpt-video-section {
  padding: 60px 20px;
  text-align: center;
  font-family: "Barlow", sans-serif;
}

.video-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.peeling-faq-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
  padding-bottom: 20px;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 15px 0;
  position: relative;
  color: #6d5952;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  height: 0;
  opacity: 0;
}

.faq-answer p {
  padding: 10px 0 20px;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.doublechin-carousel {
  position: relative;
  max-width: 800px;
  margin: 60px auto;
  border-radius: 15px;
  height: auto;
}

.doublechin-carousel-track {
  position: relative;
  height: auto;
}

.doublechin-slide {
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  opacity: 0;
  transition: opacity 0.6s ease;
  text-align: center;
  box-sizing: border-box;
  background-color: #feecea;
}

.doublechin-slide.active {
  opacity: 1;
  position: relative;
  z-index: 1;
}

.doublechin-slide img {
  width: 50%;
  object-fit: contain;
  border-radius: 15px 15px 0 0;
}

.doublechin-slide-text {
  background: #feecea;
  padding: 20px;
  min-width: 66%;
}

.doublechin-slide-text h3 {
  font-size: 30px !important;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
  text-align: left;
}

.doublechin-slide-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  text-align: left;
}

.doublechin-slide-content {
  text-align: left;
  padding: 20px 20px;
}

.doublechin-slide-content p {
  margin-bottom: 15px;
}

.doublechin-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #e1cec3;
  border: none;
  color: #fff;
  font-size: 28px;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 2;
  border-radius: 5px;
}

.doublechin-prev {
  left: -50px;
}

.doublechin-next {
  right: -50px;
}

.doublechin-carousel {
  margin: 40px auto;
  padding: 0 15px;
}

.doublechin-carousel-btn {
  width: 35px;
  height: 35px;
  font-size: 1.5rem;
  padding: 0;
  line-height: 1;
}

.doublechin-prev {
  left: 0;
}

.doublechin-next {
  right: 0;
}

.doublechin-slide img {
  width: 100%;
  min-width: 33%;
}

.doublechin-slide-text {
  padding: 15px;
  padding-left: 30px;
}

.doublechin-slide-text h3 {
  font-size: 18px;
}

.doublechin-slide-text p {
  font-size: 14px;
}

.gift-text {
  position: absolute;
  margin: 0 50px;
  top: 50px;
  background: #feecea4f;
  border-radius: 10px;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  padding: 15px;
  width: 90%;
}

.content-wrapper-flower {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

.triangle.left-center:after {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  left: -20px;
  right: auto;
  top: 20px;
  bottom: auto;
  border: 22px solid;
  border-color: #fff5ee transparent transparent transparent;
}

.triangle.right-center:before {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  left: auto;
  right: -20px;
  top: 20px;
  bottom: auto;
  border: 32px solid;
  border-color: #eeede9 transparent transparent transparent;
}

.info-block {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.info-block:hover {
  transform: scale(1.02);
}

.info-block h2 {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #6d5952;
}

.info-block p,
.info-block ul {
  display: none;
  margin-top: 10px;
  font-size: 1rem;
}

.toggle-icon {
  transition: transform 0.3s ease-in-out;
}

.expanded .toggle-icon {
  transform: rotate(180deg);
}

.expanded p,
.expanded ul {
  display: block;
}

.cryolipolyse-steps {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.step-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.step-row.reverse {
  flex-direction: row-reverse;
}

.step-text {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.step-box {
  background-color: #fff5ee;
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  max-width: 600px;
}

.step-box.reverse-box {
  background-color: #eeede9;
}

.step-box strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.step-box p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.step-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.step-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
  height: 0px;
}

.footer-contact {
  position: relative;
  background-color: #f3e6d5;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 3rem 2rem;
  flex-wrap: wrap;
  color: #000;
}

.footer-contact-content {
  position: relative;
  z-index: 2;
  max-width: 400px;
}

.footer-contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.footer-contact-links li a {
  color: #6d5952;
  text-decoration: none;
  font-size: 1rem;
  transition:
    color 0.3s,
    text-decoration 0.3s;
}

.footer-contact-links li a:hover {
  color: #090909;
  text-decoration: underline;
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.footer-contact-info li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-contact-info i {
  font-size: 1.4rem;
  margin-right: 0.8rem;
  color: #50403a;
}

.footer-contact-socials {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  padding: 0;
  margin: 0;
  color: #50403a;
}

.footer-contact-socials a {
  color: #50403a;
}

.footer-contact-socials li {
  font-size: 1.4rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.footer-contact-socials li:hover {
  transform: scale(1.2);
}

/* Background Image */
.footer-contact-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 45%;
  background-image: url("./img/footer-img.jpeg");
  /* Replace with your actual image */
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.footer-contact-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  /* Adjust opacity here */
  z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .slide-content img {
    width: 120px;
    height: 120px;
  }

  .peeling-facts-content.gsap-facts-fade img {
    object-fit: contain;
    width: 100%;
  }

  .tout-savoir-peeling {
    display: block;
  }

  .tout-savoir-media {
    max-width: 100%;
    text-align: center;
  }

  .tout-savoir-media img {
    width: 33%;
  }

  .tout-savoir-content {
    max-width: 100%;
  }

  .doublechin-slide img {
    width: 50%;
  }

  .slide-pourquoi img {
    width:100%;
  }

  .slide-pourquoi .doublechin-slide-text {
    top: 15px;
    padding: 15px;
  }

  .slide-pourquoi .doublechin-slide-text h3 {
    margin-bottom: 20px;
    font-size: 25px !important;
  }

  .slide-flex {
    display: block;
  }

  .doublechin-slide-text p {
    font-size: 16px !important;
  }

  .phone.desktop-only {
    display: none;
  }

  .gift-card-section {
    padding: 0px;
  }

  .gift-text {
    margin: 0 20px;
    font-size:16px;
  }

  .gift-card-button {
    padding: 14px 28px;
    font-size: 1.1rem;
    bottom: 20px;
  }

  .hero-section {
    padding: 0;
  }

  .hero-title {
    font-size: 1.8rem;
    padding: 0 1rem;
  }

  .peeling-tech-section {
    padding: 0px 20px;
  }

  .peeling-body-wrapper {
    flex-direction: column;
  }

  .peeling-zones-text {
    max-width: 372px;
  }

  .peeling-pricing-section {
    padding: 0px 20px;
  }

  .peeling-tech-container {
    flex-direction: column-reverse;
  }

  .footer-contact-background::after {
    background-color: rgb(0 0 0 / 0%);
  }

  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact-background {
    position: static;
    width: 100%;
    height: 250px;
    margin-top: 2rem;
    background-position: center top;
  }

  .endosphere-science-benefits {
    text-align: left;
    padding-left: 1.5rem;
  }

  .endosphere-science-button {
    font-size: 0.9rem;
    padding: 0.8rem 1.6rem;
  }

  .carousel-content-display {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    min-height: auto;
  }

  .carousel-navigation-panel {
    flex-direction: row;
    justify-content: center;
    order: -1;
  }

  .cellulite-types-carousel {
    padding: 25px;
  }

  .education-main-heading {
    font-size: 20px;
  }

  .slide-title-heading {
    font-size: 20px;
  }

  .visual-representation-area {
    width: 120px;
    height: 120px;
  }

  .visual-placeholder {
    width: 120px;
    height: 120px;
  }

  .care-container {
    grid-template-columns: 1fr;
  }

  .care-content h2 {
    text-align: center;
  }

  .bs2-slide {
    flex-direction: column;
  }

  .bs2-track-wrapper {
    max-width: 100%;
  }

  .cernes-container {
    grid-template-columns: 1fr;
  }

  .cernes-content h2 {
    text-align: center;
  }
}
