* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.container2 {
  max-width: 1350px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
/* Product Section */
.product-section {
  /* display: grid; */
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 1120px) {
  .product-section {
    display: grid;
    grid-template-columns: 1.2fr 1.1fr;
    gap: 2.4rem;
  }
}

/* Thumbnail Gallery */
.thumbnail-gallery {
  display: none;
  flex-direction: column;
  gap: 30px;
  width: 13%;
  position: fixed;
  top: 2rem;
  height: 650px;
}

@media (min-width: 1020px) {
  .thumbnail-gallery {
    display: flex;
  }
}

.product-section-gallery {
  display: flex;
  gap: 19px;
}
.thumbnail-item {
  background: linear-gradient(135deg, #e6d7ff, #ddd6fe);
  border-radius: 14px;
  max-height: 90px;
  height: 90px;
  width: 90px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  opacity: 0.6;
}

.thumbnail-item:hover,
.thumbnail-item.active {
  border-color: #9333ea;
  background: linear-gradient(135deg, #ddd6fe, #c4b5fd);
  opacity: 1;
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Main Gallery */
/* ----- Main Gallery ----- */
.main-gallery {
  position: fixed;
  top: 2rem;
  width: 80%;
  max-width: 500px;
  left: 14%;
  height: auto;
  z-index: 1;
  transition: all 0.3s ease;
}

/* Adjust on medium screens */
@media (max-width: 1300px) {
  .main-gallery {
    max-width: 440px;
    left: 10%;
  }
}

/* Mobile / Tablet layout */
@media (max-width: 1200px) {
  .main-gallery {
    position: relative;
    width: 100%;
    max-width: 100%;
    left: 0;
    top: 0;
  }

  .sticky-gallery {
    position: relative !important;
  }

  .thumbnail-gallery {
    flex-direction: column;
    gap: 20px;
    width: auto;
    height: auto;
    position: relative;
  }

  .product-section-gallery {
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .main-gallery {
    width: 100%;
  }
}

/* ----- Main Image Container ----- */
.main-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1rem;
  height: auto;
  background: none !important;  /* Remove background */
  padding: 0;
}

/* Desktop fixed height look */
@media (min-width: 992px) {
  .main-image-container {
    height: 650px;
  }
}

/* Mobile responsive height */
@media (max-width: 991px) {
  .main-image-container {
    height: auto;
  }
}

/* ----- Main Image ----- */
.main-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;     /* No cropping */
  object-position: center;
}

/* ----- Mobile thumbnails ----- */
.mobile-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
  overflow-x: auto;
}

.mobile-thumbnails img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 8px;
  cursor: pointer;
}
.certification-badges {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.badge {
  background: #f59e0b;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  animation: fadeInScale 0.5s ease forwards;
}

.badge:nth-child(2) {
  animation-delay: 0.1s;
}
.badge:nth-child(3) {
  animation-delay: 0.2s;
}
.badge:nth-child(4) {
  animation-delay: 0.3s;
}

.main-image {
  /* height: 24rem; */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  /* max-width: 600px;
  max-height: 500px;  */
}
/* 
@media screen and (max-width: 991px) {
 .main-image {
  height: 24rem;
} 
} */

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

/* Mobile Thumbnails */
.mobile-thumbnails {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  justify-content: center;
}


@media (max-width: 767px) {
  .mobile-thumbnails {
    justify-content: space-around;
    padding-left: 3px;
    padding-right: 3px;
  }
}

.mobile-thumbnail-item {
  background: linear-gradient(135deg, #e6d7ff, #ddd6fe);
  border-radius: 1rem;
  width: 80px;
  height: 80px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  flex-shrink: 0;
  overflow: hidden;
  margin-top: 4px;
}

.mobile-thumbnail-item:hover,
.mobile-thumbnail-item.active {
  border-color: #9333ea;
  background: linear-gradient(135deg, #ddd6fe, #c4b5fd);
  transform: scale(1.05);
}

.mobile-thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Details */
.product-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: fit-content;
}

.product-header h1 {
  width: 100%;
  font-family: "Robecha-Daniera-Regular";
  margin-top: 20px;
  font-size: 2.9rem;
  font-weight: 200;
  line-height: 1.2;
  margin-bottom: 25px;
  line-height: 45px;
}

.product-description {
  color: #050405;
  font-weight: 650;
  line-height: 27px;
  font-family: "Montserrat";
  margin-bottom: 10px;
  font-size: 17px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.stars {
  display: flex;
  gap: 0.35rem;
}

.stars i {
  color: #f4c36e;
  font-size: 10px;
}

.review-count {
  font-family: "Montserrat";
  color: #050405;
  opacity: 0.5;
  font-size: 12px;
}

/* Pricing Options */
.pricing-options {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.pricing-option {
  border: 1px solid #fcfafd;
  border-radius: 10px;
  padding: 7px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing-option:hover {
  border-color: #000;
  background-color: #faf5ff;
  transform: scale(1.02);
}

.pricing-option.popular {
  border-color: #ddd6fe;
  background: #faf5ff;
}

.option-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.option-icon {
  max-width: 90px;
  height: 60px;
  overflow: hidden;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.option-icon img {
  object-fit: contain;
  height: 60px;
}

.option-details {
  line-height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.option-details h3 {
  font-family: "Montserrat";
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
}

.limited-offer {
  font-size: 14px;
  font-family: "Montserrat";
  color: #050405;
  font-weight: 700;
}

.option-pricing {
  text-align: right;
}

.original-price {
  color: #c86bf3;
  opacity: 0.5;
  text-decoration: line-through;
  font-size: 20px;
  font-family: "Montserrat";
  font-weight: 400;

  margin-right: 0.5rem;
}

.sale-price {
  color: #c86bf3;
  font-weight: 400;
  font-family: "Montserrat";

  font-size: 20px;
}

.savings {
  display: block;
  font-size: 14px;
  color: #2f4136;
  font-family: "Montserrat";
  text-align: right;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 10px;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #050405;
  font-family: "Montserrat";
}

.feature-item i {
  color: #050405;
  opacity: 0.6 !important;
}

.feature-item span {
  font-size: 14px;
  color: #050405;
  font-weight: 400;
  font-family: "Montserrat";
}

/* Action Buttons */
.action-buttons {
  margin-top: 30px;
  display: flex;
  gap: 0.75rem;
}

.btn-primary,
.btn-secondary {
  flex: 1;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: #050505;
  color: white;
}

.btn-primary:hover {
  background: #1f2937;
}

.btn-secondary {
  background: transparent;
  color: #050505;
  border: 1px solid #d1d5db;
}

.btn-secondary:hover {
  background: #f9fafb;
}

/* Product Info */
.card-title {
  /* border-top: 1px solid #e5e7eb; */
  min-height: 60px;
  line-height: 22px;
}

.product-info-header p {
  font-family: "Montserrat";
  color: #050405;
  opacity: 0.6;
}

.product-info-header .highlight {
  font-weight: 600;
  font-family: "Montserrat";
  color: #050405;
  opacity: 1;
  font-size: 18px;
  margin-top: 30px;
}
.channels {
  margin-top: 30px;
}

.channels h3 {
  font-weight: 700 !important;
  margin-bottom: 0.5rem;
  font-family: "Montserrat";

  font-size: 19px;
}

.channels ul {
  list-style: none;
  color: #050405;
  margin-left: 40px;
}

.channels li {
  font-family: "Montserrat";
  opacity: 0.6;
  margin-bottom: 0.25rem;
}

/* FAQ Section */
.faq-section {
  padding-top: 1.4rem !important;
  /* border-top: 1px solid #e5e7eb; */
}

.faq-item {
  /* border: 1px solid #e5e7eb; */
  border-radius: 15px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.faq-question {
  width: 100%;
  padding: 1rem 1.5rem;
  background: #f9f4fb;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.125rem;
  font-weight: 600;
  color: #050505;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: rgba(0, 0, 0, 0.02);
}

.faq-question i {
  transition: transform 0.2s ease;
}
.faq-question.active {
  background-color: #ebd8f6;
}

.faq-question.active i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #ebd8f6;

  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 500px;
}

.faq-answer ul {
  padding: 1rem 1.5rem;
  /* border-top: 1px solid #f3f4f6; */
  list-style: none;
}

.faq-answer li {
  color: #6b7280;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.faq-answer li::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  background: #c084fc;
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

/* Base Styles */
.benefits-section {
  max-width: 1200px;
  margin: 0 auto;
}
.benefits-section h2 {
  font-family: "Robecha-Daniera-Regular";
  font-size: 2.8rem;
  font-weight: 300;
  text-align: center;
  color: #050405;
  margin-bottom: 3rem;
}

/* Benefit Item */
.benefit-item {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 5rem;
}

/* Reverse layout on large screens */
.benefit-item.reverse {
  flex-direction: row-reverse;
}

/* Image & Content Flexing */

.benefit-content {
  width: 100%;
}

/* Image Box */
.benefit-image {
  width: 70%;
  background: #f3f4f6;
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 300px;
}
.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.benefit-image img:hover {
  transform: scale(1.1);
}

/* Text Content */
.benefit-content h3 {
  font-family: "Montserrat";
  font-size: 2.5rem;
  font-weight: 600;
  color: #050405;
  opacity: 0.8;
  margin-bottom: 19px;
}
.benefit-content p {
  font-family: "Montserrat";
  font-size: 1.2rem;
  line-height: 1.5;
  color: #050405;
  font-weight: 300;
}

/* MOBILE: Stack vertically */
@media (max-width: 767px) {
  .benefit-item {
    flex-direction: column;
    text-align: center;
  }
  .benefit-image,
  .benefit-content {
    width: 100%;
  }
  .benefit-content p {
    margin: 0 auto 1rem;
    max-width: 600px;
  }
  .benefits-section h2 {
    font-size: 2rem;
  }
}

/* TABLET: moderate sizing */
@media (min-width: 768px) and (max-width: 1023px) {
  .benefit-item {
    flex-direction: row;
  }
  .benefit-image,
  .benefit-content {
    flex: 1 1 50%;
  }
  .benefits-section h2 {
    font-size: 2.4rem;
  }
}

.face-bg {
  width: 200%;
  height: 200px;
  position: absolute;
  left: -50%;
  top: 46%;
  background: #f2e8f7;
}

@media screen and (max-width: 991px) {
  .face-bg {
    top: 42%;
  }
}

/* DESKTOP: larger text, reverse takes effect above */
@media (min-width: 1024px) {
  .benefits-section {
    padding: 2rem 0;
  }
  .benefits-section h2 {
    font-size: 2.7rem;
  }
  .benefit-content h3 {
    font-size: 41px;
    font-weight: 700;
  }
  .benefit-content p {
    font-size: 25px;
  }
}

/* Clinical Results Section */
.clinical-results-section {
  padding: 4rem 0 0 0;
}

.results-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  width: 85%;
  margin: 0rem auto 3rem auto;
}

@media (max-width: 768px) {
  .results-cards {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

.results-card {
  background: linear-gradient(135deg, #3d2369, #3d2369);
  border-radius: 10px;
  padding: 1rem;
  color: white;
  padding-bottom: 2rem;
}

.results-card h3 {
  font-size: 27px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 2rem;
  font-family: "Robecha-Daniera-Regular";
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.tone-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.result-item {
  text-align: center;
}

.result-item h4 {
  font-weight: 500;
  font-size: 17px;
  font-family: "Montserrat";
  color: #ffffff;
  line-height: 20px;
}

.result-value {
  font-size: 15px;
  font-weight: 600;
  font-family: "Montserrat";
}
.positive {
  color: #d9b771 !important;
}

.nigative {
  color: #c296db !important;
}

.tone-grid .result-value {
  font-size: 14px;
}

.result-note {
  font-size: 13px;
  margin-top: 0.25rem;
  opacity: 0.8;
  color: #c296db;
}

.disclaimer {
  text-align: center;
}

.disclaimer h3 {
  font-size: 1.9rem;
  font-weight: 300;
  color: #050505;
  font-family: "Robecha-Daniera-Regular";
}

.disclaimer-text {
  color: #050405;
  font-size: 0.875rem;
  font-family: "Montserrat";
}

.disclaimer-text p {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

/* Safety Section */
.safety-section {
  width: 80%;
  margin: auto;
  text-align: center;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .safety-section {
    width: 100%;
    margin: auto;
    text-align: center;
    margin-top: 40px;
  }
}
.quote-mark {
  width: 50px;
  margin: auto;
  margin-bottom: 30px;
  font-size: 21rem;
  color: #c084fc;
  margin-bottom: 1.5rem;
  font-family: "Robecha-Daniera-Regular";
}

.quote-mark.closing {
  transform: rotate(180deg);
  margin-bottom: 0;
  margin-top: 30px;
}

.safety-section p {
  font-size: 22px;
  font-weight: 400;
  color: #050505;
  line-height: 1.5;
  max-width: 4xl;
  margin: 0 auto;
  font-family: "Montserrat";
}

.safety-section .highlight {
  color: #9333ea;
  font-weight: 600;
}

/* Gold Treatment Section */
.gold-treatment-section {
  padding: 4rem 0;
}

.gold-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .gold-content {
    grid-template-columns: 0.4fr 0.7fr;
  }
}

.gold-image {
  max-width: 360px;
  margin: auto;
  background: linear-gradient(135deg, #e6d7ff, #c084fc);
  border-radius: 1.5rem;
}

.electrode-comparison {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.electrode-comparison p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.electrode-types {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.electrode-type {
  text-align: center;
}

.electrode {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

.electrode.small {
  background: #050505;
}
.electrode.medium {
  background: #6b7280;
}
.electrode.large {
  background: #9ca3af;
}
.electrode.gold {
  background: #f59e0b;
}

.electrode-type span {
  font-size: 0.75rem;
  color: #6b7280;
}

.treatment-head {
  display: flex;
  justify-content: center;
}

.head-visualization {
  width: 12rem;
  height: 12rem;
  background: linear-gradient(135deg, #050505, #000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.electrode-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.electrode-pad {
  width: 3rem;
  height: 3rem;
  background: #f59e0b;
  border-radius: 0.25rem;
}

.center-point {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  background: white;
  border-radius: 50%;
}

.gold-text h2 {
  font-size: 2.9rem;
  font-weight: 300;
  color: #050405;
  margin-bottom: 1rem;
  font-family: "Robecha-Daniera-Regular";
}

.gold-text p {
  width: 95%;
  color: #050505;
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-family: "Montserrat";
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .gold-text p {
    width: 100%;
  }
}
/* Clinical Results After 28 Days */
.clinical-results-28-days {
  padding: 4rem 0;
  background: #faf5ff;
  text-align: center;
}

.clinical-results-28-days h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #050505;
  margin-bottom: 3rem;
}

.results-visualization {
  position: relative;
  display: inline-block;
}

.results-visualization img {
  border-radius: 1rem;
}

.result-annotation {
  position: absolute;
  background: white;
  border-radius: 0.5rem;
  padding: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.result-annotation h4 {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.result-annotation p {
  color: #9333ea;
  font-weight: bold;
  font-size: 0.875rem;
}

.result-annotation.top-left {
  top: 3rem;
  left: 2rem;
}

.result-annotation.top-center {
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.result-annotation.top-right {
  top: 3rem;
  right: 2rem;
}

.result-annotation.bottom-right {
  bottom: 4rem;
  right: 2rem;
}

/* Before/After Section */
.before-after-section {
  position: relative;
  padding-top: 30px;
}

.before-after-section-bg {
  background: #f2e8f7;
  position: absolute;
  z-index: -1;
  top: 54%;
  transform: translateY(-50%);
  height: 160px;
  width: 100%;
}

.before-after-header {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.before-after-header p:first-child {
  font-size: 23px;
  line-height: 33px;
  color: #050505;
  font-weight: 450;
  margin-bottom: 0.5rem;
  font-family: "Montserrat";
}

@media screen and (max-width: 991px) {
  .before-after-header p:first-child {
    font-size: 1rem;
    font-family: "Montserrat";
  }
}

.before-after-header .disclaimer {
  color: #050405;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  font-family: "Montserrat";
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 5xl;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .before-after-grid {
    grid-template-columns: 1fr 1.5fr 1fr;
  }
}

.before-after-image {
  max-width: 360px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.image-half {
  max-width: 360px;
  margin: auto;
  position: relative;
}

.image-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-label {
  position: absolute;
  bottom: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: white;
  font-size: 0.875rem;
  font-weight: bold;
}

.before-label {
  left: 1rem;
  background: #050505;
}

.after-label {
  right: 1rem;
  background: #059669;
}

.arrow-left,
.arrow-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 1.5rem;
}

.arrow-left {
  left: 50%;
  transform: translate(-50%, -50%);
}

.arrow-right {
  right: 50%;
  transform: translate(50%, -50%);
}

@media screen and (max-width: 767px) {
  .before-after-section-bg {
    top: 52%;
  }
  .before-after-header .disclaimer {
    font-size: 18px;
  }
}
/* Treatment Sequence Section */
.treatment-sequence-section {
  padding: 4rem 0;
  background: white;
}

.sequence-container {
  max-width: 4xl;
  margin: 0 auto;
}

.sequence-container {
  /* border: 2px solid #3b82f6; */
  border-radius: 1rem;
  padding: 3rem;
  background: white;
}

@media screen and (max-width: 767px) {
  .sequence-container {
    padding: 0rem;
  }
}

.line-wrapper {
  position: relative;
  text-align: center;
  margin: 20px 0; /* space around the line */
}

.line-wrapper::before {
  content: "";
  position: absolute;
  top: 45%;
  left: -50%;
  width: 200%;
  height: 6px;
  background-color: #f2e8f7; /* line color */
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .line-wrapper::before {
    display: none;
  }
}

.line-text {
  display: inline-block;
  background-color: #fff; /* white background behind text */
  padding: 0 20px;
  position: relative;
  z-index: 2;

  font-size: 2.89rem;
  font-weight: 200;
  color: #050405;
  text-align: center;
  font-family: "Robecha-Daniera-Regular";
}
.sequence-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sequence-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  align-items: center;
}

.step-icon {
  width: 70px;
  height: 70px;
  background: #7c3aed;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rotating-icon {
  /* width: 2rem;
  height: 2rem; */
  /* border: 2px solid white; */
  /* border-radius: 50%; */
  /* animation: rotate 2s linear infinite; */
}

.rotating-icon.impulse {
  border-top-color: transparent;
}

.rotating-icon.sinusoidal {
  border-left-color: transparent;
  border-right-color: transparent;
  animation-duration: 3s;
}

.step-content {
  flex: 1;
}

.step-content p {
  color: #050505;
  font-size: 16px;
  line-height: 1.75;
  font-family: "Montserrat";
}

.sequence-conclusion {
  margin-top: 3rem;
  text-align: center;
}

.sequence-conclusion p {
  font-size: 1.03rem;
  font-weight: 500;
  color: #050505;
  font-family: "Montserrat";
  text-align: left;
  width: 96%;
}

@media screen and (max-width: 767px) {
  .sequence-conclusion p {
    text-align: center;
  }
}
/* Dual Waveform Section */

.dualwaform-section {
  position: relative;
  padding: 3rem 0;
}

.dualwaform-background-image-bg {
  position: absolute;
  width: 200%;
  height: auto;
  background-color: #f2e8f7;
  left: -50%;
  height: 100%;
  z-index: -10;
  top: 0;
}
.dualwaform-image-wrapper {
  position: relative;
}
@media screen and (max-width: 767px) {
  .dualwaform-image-wrapper {
    width: 100%;
    left: 0%;
  }
}

.dualwaform-background-image {
  position: absolute;
  left: 66%;
  top: 1%;
  width: 350px;
  height: 360px;
  object-fit: cover;
}

.dualwaform-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--brand-white);
  opacity: 0.5;
}

.dualwaform-text-container {
  position: relative;
  z-index: 1;
  padding: 2rem 1rem;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .dualwaform-text-container {
    padding: 2rem 0rem;
  }

  .dualwaform-text-container img {
    display: none;
  }
}

.dualwaform-text-content {
  max-width: 740px;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.dualwaform-heading {
  font-size: 47px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.5rem;
  font-family: "Robecha-Daniera-Regular";
}

.dualwaform-description {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 1.75rem;
  font-family: "Montserrat";
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .dualwaform-heading {
    font-size: 2rem;
  }
  .dualwaform-description {
    font-size: 15px;
  }
}

.dualwaform-features-section {
  position: relative;
  top: -35px;
}

.dualwaform-features-container {
  max-width: 1200px;
}

.dualwaform-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 2rem;
}

@media (min-width: 768px) {
  .dualwaform-feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.dualwaform-feature-item {
  z-index: 1;
  font-family: "Montserrat", sans-serif;
}

.dualwaform-feature-icon {
  width: 64px;
  height: 64px;
  font-size: 30px;
  background-color: #3d2369;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.dualwaform-feature-title {
  font-size: 18px;
  color: #050505;
  font-weight: bold;
  margin-bottom: 0.75rem;
  font-family: "Montserrat", sans-serif;
}

.dualwaform-feature-text {
  font-size: 18px;
  color: #050505;
  font-weight: 300;
  line-height: 26px;
  font-family: "Montserrat";
  opacity: 0.6;
  width: 95%;
}

.dualwaform-check-icon {
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.dualwaform-check-svg {
  width: 24px;
  height: 24px;
  color: var(--brand-secondary);
  flex-shrink: 0;
}

/* Customer Reviews Section */
.customer-reviews-section {
  width: 96%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .customer-reviews-section {
    width: 100%;
  }
}

.customer-reviews-section h2 {
  font-size: 37px;
  font-weight: 300;
  color: #050505;
  text-align: left;
  margin-bottom: 2rem;
  font-family: "Robecha-Daniera-Regular";
}

.reviews-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .reviews-content {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.rating-row {
  display: flex;
  align-items: center;
}

.rating-row .stars {
  display: flex;
  gap: 7px;
}

.rating-row .stars i {
  color: #f4c36e;
  font-size: 14px;
}

.rating-row .stars .far {
  color: #f4c36e;
}

.rating-bar {
  margin-left: 30px;

  flex: 1;
  height: 7px;
  background: #f5f5f5;
}

.rating-fill {
  height: 100%;
  background: #d9b771;
  border-radius: 9999px;
  transition: width 0.3s ease;
}

.rating-count {
  font-size: 0.875rem;

  color: #050405;
  width: 1rem;
  font-weight: 500;
  font-family: "Montserrat";
  text-align: center;
}

.overall-rating {
  text-align: center;
}

.rating-circle {
  width: 4rem;
  height: 4rem;
  background: #d9b771;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.overall-rating p {
  color: #050505;
  margin-bottom: 0.5rem;
  font-family: "Montserrat";
  font-weight: 500;
}

.overall-rating .stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}

.overall-rating .stars i {
  color: #f4c36e;
  font-size: 1rem;
}

.write-review {
  display: flex;
  justify-content: center;
}

.write-review .custom-button:not(.now):hover svg {
  transform: translateX(120px);
}

@media (min-width: 1024px) {
  .write-review {
    text-align: right;
  }
}

.btn-outline {
  background: transparent;
  border: 1px solid #d1d5db;
  color: #050505;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-outline:hover {
  background: #f9fafb;
}

/* Comparison Table Section */
.comparison-table-section {
}

.comparison-table-section h2 {
  font-size: 2.9rem;
  font-weight: 300;
  color: #050505;
  text-align: center;
  margin-bottom: 3rem;
  font-family: "Robecha-Daniera-Regular";
}

.table-container {
  border-radius: 1rem;
  overflow: hidden;
  background: white;
  padding: 20px 25px;
  background-color: #fbf7ef;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.featuresth {
  display: flex;
  align-items: end;
  height: 100%;
  display: block;
}

.comparison-table th {
  height: 190px;
  padding-top: 0px !important;
}

.comparison-table th,
.comparison-table td {
  padding-top: 0;
  max-width: 316px;
  max-height: 72px;
  width: 200px;
  padding: 15px;
  height: 72px;
  font-family: "Montserrat";

  text-align: center;
  background-color: #fbf7ef;
}

.comparison-table td {
  border-right: 1px dashed #c3c0ba;
  border-bottom: 1px dashed #c3c0ba;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: none;
  /* border-bottom: none; */
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table thead {
  background: #f9fafb;
}

.comparison-table th {
  font-weight: 700;
  color: #050505;
  font-size: 20px;
  font-family: "Montserrat";
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table td:first-child {
  font-weight: 700;
  font-size: 18px;
  padding-left: 0;
  color: #050505;
  font-family: "Montserrat";
  text-align: left;
}

.product-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.product-header span {
  line-height: 24px;
}

.product-icon {
  width: 2rem;
  height: 5.8rem;
  border-radius: 0.25rem;
}

.product-icon.golden {
  /* background: ##D9B771; */
}

.product-icon.competitor {
}

.golden-column {
  background: #d9b771;
}

.comparison-table tbody tr:nth-child(even) {
  background: #f9fafb;
}

.comparison-table tbody tr:nth-child(even) .golden-column {
  background: #fbf7ef;
}

/* You May Also Like Section */
.you-may-also-like-section {
  padding: 4rem 0;
}

.you-may-also-like-section h2 {
  font-size: 2.9rem;
  font-weight: 300;
  color: #050505;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 53px;
  font-family: "Robecha-Daniera-Regular";
  width: 61%;
  margin: 30px auto;
}

.products-grid {
  width: 87%;
  margin: auto !important;
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 70px;
  margin: 0 30px;
}

@media (max-width: 1335px) {
  .products-grid {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }
}

@media (max-width: 1090px) {
  .products-grid {
    gap: 2rem;
    margin: 0;
    grid-template-columns: repeat(3, 1fr);
  }
  .you-may-also-like-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 991px) {
  .products-grid {
    gap: 2rem;
    margin: 0;
    grid-template-columns: repeat(2, 1fr);
  }
  .you-may-also-like-section h2 {
    width: 90%;
  }
}

@media (max-width: 767px) {
  .products-grid {
    gap: 2rem;
    margin: 0;
    grid-template-columns: repeat(1, 1fr);
  }
  .you-may-also-like-section h2 {
    width: 98%;
  }
}

.product-card {
  max-width: 360px;
  margin: auto;
  background: #e6e7e982;
  border-radius: 14px;
  padding: 1rem 1rem 1.3rem 1rem;
}

.product-card.highlighted {
  border: 2px solid #3b82f6;
}

.product-image {
  background: #f3f4f6;
  border-radius: 1rem;
  margin-bottom: 14px;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 8rem;
  object-fit: contain;
  border-radius: 6px;
  border: 2px solid #b2b2b4;
  background-color: #d2d2d3;
}

.image-nav {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
}

.image-nav span {
  font-size: 1.5rem;
  color: #6b7280;
  cursor: pointer;
}

.product-info {
  display: flex;
  flex-direction: column;
  padding: 5px 10px;
}

.product-info .limited-offer {
  font-size: 17px;
  color: #d9b771;
  font-weight: 500;
  font-family: "Montserrat";
}

.product-info h3 {
  font-size: 17px;
  color: #050505;
  font-weight: 500;
  font-family: "Montserrat";
}

.product-info p {
  color: #050405;
  font-size: 13px;
  margin-bottom: 35px;
}

.product-info .pricing {
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.product-info .original-price {
  color: #050405;
  text-decoration: line-through;
  opacity: 0.3;
  font-weight: 300;
  font-family: "Montserrat";
}

.product-info .sale-price {
  font-size: 1.5rem;
  font-weight: 500;
  color: #050505;
  font-family: "Montserrat";
}

.product-info .savings {
  font-size: 14px;
  font-weight: 600;
  color: #050505;
  font-family: "Montserrat";
  margin-left: auto;
}

.product-info .rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 10px;
}

.product-info .rating .stars {
  display: flex;
  gap: 0.125rem;
}

.product-info .rating .stars i {
  color: #f4c36e;
  font-size: 0.7rem;
}

.product-info .rating span {
  font-size: 0.7rem;
  color: #6b7280;
}

/* FAQ CTA Section */
.faq-cta-section {
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow-y: hidden;
}

.faq-cta-section .faq-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 800px;
}

.faq-cta-section .faq-bg img {
  width: 100%;
  height: 100%;
}

.faq-cta-section h2 {
  font-size: 2.35rem;
  font-weight: 300;
  color: #d9b771;
  margin-bottom: 6px;
  font-family: "Robecha-Daniera-Regular";
}

.faq-cta-section p {
  color: white;

  font-size: 17px;
  line-height: 1.35;
  /* margin-bottom: 0.5rem; */
  font-family: "Montserrat";
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .faq-cta-section p {
    width: 96%;
    margin: auto;
  }
}

.faq-cta-section .faq-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.reach-out-link {
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.3s ease;
}

.reach-out-link:hover {
  color: #fde68a;
}

.btn-faq {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 3rem;
}

.btn-faq:hover {
  background: white;
  color: #047857;
}

/* Animations */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  .product-header h1 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .tone-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sequence-step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .waveform-step {
    text-align: center;
  }

  .table-container {
    overflow-x: auto;
  }

  .comparison-table {
    min-width: 800px;
  }
}

@media (max-width: 480px) {
  .certification-badges {
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .badge {
    font-size: 0.625rem;
    padding: 0.125rem 0.5rem;
  }
  .action-buttons {
    flex-direction: column;
  }
  .main-image {
    /* height: 16rem; */
  }

  .pricing-option {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .option-pricing {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
}

/* major 8 */

.gradiant-bg {
  padding: 80px 0 100px 0;
  overflow: hidden;
  background: linear-gradient(
    to right,
    #ebd8f6,
    #ebd8f6 20%,
    #a075b9 75%,
    #a075b9 75%
  );
}
@media screen and (max-width: 767px) {
  .gradiant-bg {
    padding: 50px 0 50px 0;
  }
}
.title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 100;
  letter-spacing: 4px;
  color: #2d3748;
  margin: 4rem 0 4rem 0;
  text-transform: uppercase;
  margin-top: 0;
  font-family: "Robecha-Daniera-Regular";
}

.interactive-section {
  gap: 0;
  align-items: center;
  flex: 1;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .interactive-section {
    display: flex;
  }
}

.wheel-container {
  position: relative;
  padding: 2rem;
  z-index: 2;
}

.wheel {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  position: relative;
  background: #fff9ee;
  border: 12px solid #d9b771;
  box-shadow: 0 0 0 8px #2f4136;
  overflow: hidden;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  margin: auto;
}

.wheel-segment {
  position: absolute;
  width: 310px;
  height: 240px;
  transform-origin: 50% 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(25% 0%, 75% 0%, 50% 81%);
  border: 2px solid #ffffff;
  top: -8px;
  left: 50%;
  transform-origin: 50% 200px;
  background: #f1e1c1;
}

/* All segments use cream/beige color by default */
.segment-1 {
  transform: translateX(-50%) rotate(0deg);
}
.segment-2 {
  transform: translateX(-50%) rotate(45deg);
}
.segment-3 {
  transform: translateX(-50%) rotate(90deg);
}
.segment-4 {
  transform: translateX(-50%) rotate(135deg);
}
.segment-5 {
  transform: translateX(-50%) rotate(180deg);
}
.segment-6 {
  transform: translateX(-50%) rotate(225deg);
}
.segment-7 {
  transform: translateX(-50%) rotate(270deg);
}
.segment-8 {
  transform: translateX(-50%) rotate(315deg);
}

/* Active/selected segment gets dark green color */
.wheel-segment.active {
  background: #2f4136;
  z-index: 10;
  /* box-shadow: 0 0 0 3px #d4af37, 0 8px 25px rgba(45, 90, 39, 0.4); */
}

.wheel-segment:hover {
  z-index: 5;
  background: #05040507;
}

.wheel-segment.active:hover {
  background: #050405;
}

/* Click animation for segments */
.wheel-segment.clicked {
  animation: segmentClickPulse 0.6s ease-out;
}

@keyframes segmentClickPulse {
  0% {
    transform: translateX(-50%) scale(1);
    background: #f5f0e8;
  }
  25% {
    transform: translateX(-50%) scale(1.1);
    background: #e8dcc6;
  }
  50% {
    transform: translateX(-50%) scale(1.05);
    background: #2d5a27;
  }
  100% {
    transform: translateX(-50%) scale(1);
    background: #2d5a27;
  }
}

.segment-number {
  position: absolute;
  font-size: 2rem;
  font-weight: 400;
  color: #2d3748;
  z-index: 15;
  transition: all 0.4s ease;
  font-family: "Montserrat";
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
}

/* Keep numbers upright regardless of segment rotation
      .segment-1 .segment-number {
        transform: translateX(-50%) rotate(0deg);
      }
      .segment-2 .segment-number {
        transform: translateX(-50%) rotate(-45deg);
      }
      .segment-3 .segment-number {
        transform: translateX(-50%) rotate(-90deg);
      }
      .segment-4 .segment-number {
        transform: translateX(-50%) rotate(-135deg);
      }
      .segment-5 .segment-number {
        transform: translateX(-50%) rotate(-180deg);
      }
      .segment-6 .segment-number {
        transform: translateX(-50%) rotate(-225deg);
      }
      .segment-7 .segment-number {
        transform: translateX(-50%) rotate(-270deg);
      }
      .segment-8 .segment-number {
        transform: translateX(-50%) rotate(-315deg);
      } */

/* Enhanced selected number styling */
.wheel-segment.active .segment-number {
  color: #ffffff;
}

/* Click animation for numbers */
.segment-number.clicked {
  animation: numberClickBounce 0.6s ease-out;
}

@keyframes numberClickBounce {
  0% {
    transform: translateX(-50%) scale(1);
  }
  20% {
    transform: translateX(-50%) scale(1.3) rotate(10deg);
  }
  40% {
    transform: translateX(-50%) scale(1.1) rotate(-5deg);
  }
  60% {
    transform: translateX(-50%) scale(1.2) rotate(3deg);
  }
  80% {
    transform: translateX(-50%) scale(1.05) rotate(-1deg);
  }
  100% {
    transform: translateX(-50%) scale(1.15) rotate(0deg);
  }
}

/* Hover effect for numbers */
/* .wheel-segment:hover .segment-number {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      } */

/* .wheel-segment.active:hover .segment-number {
        transform: translateX(-50%) scale(1.2);
        box-shadow: 0 0 0 2px #d4af37, 0 8px 25px rgba(212, 175, 55, 0.7),
          inset 0 2px 4px rgba(255, 255, 255, 0.3);
      } */

/* Selection indicator ring around the number */
/* .segment-number::before {
        content: "";
        position: absolute;
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
        border-radius: 50%;
        border: 2px solid transparent;
        transition: all 0.3s ease;
        z-index: -1;
        opacity: 0;
      } */

/* .wheel-segment.active .segment-number::before {
        border-color: #d4af37;
        background: radial-gradient(
          circle,
          rgba(212, 175, 55, 0.2) 0%,
          transparent 70%
        );
        opacity: 1;
      } */

/* Click animation for the selection ring */
/* .segment-number.clicked::before {
        animation: ringClickExpand 0.6s ease-out;
      } */

@keyframes ringClickExpand {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
    border-width: 4px;
  }
  100% {
    transform: scale(1);
    opacity: 1;
    border-width: 2px;
  }
}

.wheel-arrow {
  position: absolute;
  top: 13%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200000;
}

.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 145px;
  height: 145px;
  background: #2d5a27;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  border: 4px solid #fff9ee;
  transition: all 0.3s ease;
}

.wheel-center.clicked {
  animation: centerClickSpin 0.8s ease-out;
}

@keyframes centerClickSpin {
  0% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1) rotate(180deg);
  }
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(360deg);
  }
}

/* .wheel-center::before {
  content: "✦";
  font-size: 2.9rem;
  color: #d4af37;
  font-weight: bold;
} */

.content-area {
  position: absolute;
  left: 25%;
  /* top: 0%; */
  width: 100%;

  background: white;
  z-index: 1;
  padding: top;
  padding: 50px 23% 50px 19%;
}

@media screen and (max-width: 1200px) {
  .content-area {
    left: 0px;
    position: relative;
    width: 80%;
    margin: auto;
    padding: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .content-area {
    width: 100%;
  }
  .wheel-arrow {
    width: 32px;
  }
}

@media screen and (max-width: 467px) {
  .wheel-arrow {
    width: 32px;
    top: 15%;
  }
}

.content-title {
  font-size: 32px;
  font-weight: 300;
  color: #2d3748;
  margin-bottom: 1.4rem;
  line-height: 1.3;
  font-family: "Robecha-Daniera-Regular";
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.content-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a5568;
  width: 79%;
  font-weight: 400;
  opacity: 1;
  transform: translateY(0);
  font-family: "Montserrat";

  transition: all 0.4s ease;
}

/* Content change animation */
.content-area.updating .content-title,
.content-area.updating .content-description {
  opacity: 0;
  transform: translateY(20px);
}

/* Selection status indicator */
.selection-indicator {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: #d4af37;
  border-radius: 50%;
  border: 2px solid #ffffff;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
  z-index: 20;
}

.wheel-segment.active .selection-indicator {
  opacity: 1;
  transform: scale(1);
}

.selection-indicator.clicked {
  animation: indicatorClickPop 0.4s ease-out;
}

@keyframes indicatorClickPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Wheel rotation positions for each segment to be at top */
.wheel.rotate-to-1 {
  transform: rotate(0deg);
}
.wheel.rotate-to-2 {
  transform: rotate(-45deg);
}
.wheel.rotate-to-3 {
  transform: rotate(-90deg);
}
.wheel.rotate-to-4 {
  transform: rotate(-135deg);
}
.wheel.rotate-to-5 {
  transform: rotate(-180deg);
}
.wheel.rotate-to-6 {
  transform: rotate(-225deg);
}
.wheel.rotate-to-7 {
  transform: rotate(-270deg);
}
.wheel.rotate-to-8 {
  transform: rotate(-315deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  /* .interactive-section {
          grid-template-columns: 1fr;
          background: rgba(255, 255, 255, 0.95);
        } */

  .wheel {
    width: 350px;
    height: 350px;
  }

  .wheel-segment {
    width: 175px;
    height: 175px;
    transform-origin: 50% 175px;
    clip-path: polygon(8% 0%, 87% 0%, 49% 96%);
  }

  .wheel-center {
    width: 100px;
    height: 100px;
  }

  .content-area {
    padding: 2rem;
  }

  .segment-number {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .title {
    margin: 2rem 0 3rem 0;
    font-size: 1.8rem;
  }

  .wheel {
    width: 300px;
    height: 300px;
  }

  .wheel-segment {
    width: 200px;
    height: 180px;
    transform-origin: 50% 150px;
    clip-path: polygon(17% 0%, 77% 0%, 50% 80%);
  }

  .wheel-center {
    width: 80px;
    height: 80px;
  }

  .wheel-center::before {
    font-size: 2rem;
  }

  .segment-number {
    font-size: 1.6rem;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .wheel {
    width: 250px;
    height: 250px;
  }

  .wheel-segment {
    width: 125px;
    height: 125px;
    transform-origin: 50% 125px;
    clip-path: polygon(8% 0%, 87% 0%, 49% 96%);
  }

  .segment-number {
    font-size: 1.4rem;
    width: 40px;
    height: 40px;
  }
}

/* Accessibility */
.wheel-segment:focus {
  /* outline: 4px solid #4299e1; */
  /* outline-offset: 4px; */
  z-index: 15;
}

.wheel-segment:focus .segment-number {
  /* box-shadow: 0 0 0 3px #4299e1, 0 6px 20px rgba(66, 153, 225, 0.4); */
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .wheel,
  .wheel-segment,
  .segment-number,
  .segment-number::before,
  .selection-indicator,
  .wheel-center,
  .content-title,
  .content-description {
    transition: none;
    animation: none;
  }
}

.main-title {
  font-size: 2.9rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 4rem;
  color: #050505;
  max-width: 64rem;
  line-height: 1.2;
}

.main-title sup {
  font-size: 1.5rem;
}

.main-container {
  position: relative;
  width: 100%;
  max-width: 32rem;
  margin: 0 auto;
  padding-top: 5rem;
}

.image-container {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

.face-image {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.lines-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.callout {
  position: absolute;
  text-align: center;
}

.callout-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: #050505;
  letter-spacing: normal;
  font-family: "Montserrat";

  margin-bottom: 0.25rem;
}

.callout-percentage {
  font-size: 1rem;
  font-weight: 600;
  color: #9333ea;
}

.callout-percentage sup {
  font-size: 0.75rem;
}

/* Nasolabial Wrinkles - Top Left */
.nasolabial {
  top: -7rem;
  left: -22rem;
}

/* Forehead Wrinkles - Top Center Left */
.forehead {
  top: -5rem;
  left: -10rem;
}

/* Crow's Feet - Top Right */
.crows-feet {
  top: -4rem;
  right: -11rem;
}

/* Under-Eye Wrinkles - Top Far Right */
.under-eye {
  top: -2rem;
  right: -23rem;
}

/* Responsive design */
@media (min-width: 768px) {
  .main-title {
    font-size: 4rem;
    margin-bottom: 4rem;
  }

  .callout-title {
    font-size: 1rem;
  }

  .callout-percentage {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .main-title {
    font-size: 6rem;
  }

  .callout-title {
    font-size: 1rem;
  }

  .callout-percentage {
    font-size: 1.125rem;
  }
}

@media (max-width: 640px) {
  .main-title {
    font-size: 1.875rem;
    margin-bottom: 2rem;
  }

  .main-container {
    padding-top: 3rem;
  }

  .nasolabial {
    top: -3rem;
    left: -1.5rem;
  }

  .forehead {
    top: -3rem;
    left: 1.5rem;
  }

  .crows-feet {
    top: -3rem;
    right: -1.5rem;
  }

  .under-eye {
    top: -6rem;
    right: -0.5rem;
  }

  .callout-title {
    font-size: 0.75rem;
  }

  .callout-percentage {
    font-size: 0.875rem;
  }
}

.pricing-offer-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  color: #050405;
  text-align: center;
  padding: 10px;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
  z-index: 14 !important;
}
.pricing-offer-banner-inner {
  display: flex;
  justify-content: space-between;
  font-family: "Montserrat";
  align-items: center;
}
@media (max-width: 722px) {
  .pricing-offer-banner-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-family: "Montserrat";
    align-items: center;
    gap: 10px;
  }
}

.pricing-offer-banner-inner strong {
  font-weight: 500;
}

.pricing-offer-banner-inner code {
  color: #d9b771;
  margin-left: 10px;
  font-weight: 600;
}
@media (max-width: 467px) {
  .pricing-offer-banner-inner code {
    display: block;
  }
}

.pricing-offer-banner-inner .sale-price,
.pricing-offer-banner-inner .original-price {
  color: #050405;
  font-weight: 600;
}
.pricing-offer-banner-inner .original-price {
  font-weight: 400;
}

.wrapper {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
  font-family: sans-serif;
}

/* Face */

.wrapper .image {
  width: 100%;
  height: 100%;
  position: relative;
}
.man-title {
  font-size: 2.6rem;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .man-title {
    font-size: 2rem;
    margin-top: 40px;
  }
}
.wrapper img.face {
  object-fit: cover;
  border-radius: 0.5rem;
}
.wrapper img.face2 {
  display: none;
}

/* Desktop SVG connectors */
.wrapper svg.overlay {
  position: absolute;
  top: 60px;
  left: 0;
  width: 800px;
  height: 300px;
  pointer-events: none;
}

/* Desktop callouts */
.callout {
  position: absolute;
  padding: 0.5rem;
  text-align: center;
}
.callout .title {
  font-size: 18px;
  font-weight: 600;
  color: #050405;
  font-family: "Montserrat";
  letter-spacing: normal;
  text-transform: capitalize;

  margin-bottom: 0.25rem;
}
.callout .value {
  font-size: 1rem;
  color: #9333ea;
  font-weight: 600;
}

/* Desktop positions */
.nasolabial {
  top: -1.5rem;
  left: -13%;
}
.forehead {
  top: 0.5rem;
  left: 10%;
}
.crows-feet {
  width: fit-content;
  top: -1.5rem;
  left: 70%;
}
.under-eye {
  width: fit-content;

  top: 0.5rem;
  left: 86%;
}

/* Mobile dots (hidden by default) */
.dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #9333ea;
  display: none;
  cursor: pointer;
}
.tooltip {
  position: absolute;
  top: 1rem;
  left: -4.2rem;
  width: 140px;
  padding: 0.5rem;
  background: #fff;
  border-radius: 0.25rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
  pointer-events: none;
  z-index: 99999999;
}
.dot:hover .tooltip {
  opacity: 1;
  visibility: visible;
}
.tooltip .title {
  font-size: 18px;
  font-weight: 600;
  color: #050405;
  font-family: "Montserrat";
  letter-spacing: normal;
  text-transform: capitalize;
  margin: 0 0 0 0.2rem;
}
.tooltip .value {
  font-size: 0.95rem;
  color: #9333ea;
  font-weight: 600;
}

/* ——— Responsive: mobile ——— */
@media (max-width: 991px) {
  .wrapper {
  }
  img.face {
    display: none;
    top: 0;
    left: 0;
  }
  .image {
    width: 100%;
    max-width: 350px;
    position: relative;
    margin: auto;
  }
  img.face2 {
    width: 350px;
    margin: auto;
    display: block !important;
  }
  svg.overlay,
  .callout {
    display: none !important;
  }
  .dot {
    display: block;
  }
  /* reposition each dot over the wrinkle */
  .dot.nasolabial {
    top: 56%;
    left: 32%;
  }
  .dot.forehead {
    top: 32%;
    left: 44%;
  }
  .dot.crows-feet {
    top: 44%;
    left: 64%;
  }
  .dot.under-eye {
    top: 50%;
    left: 55%;
  }
}

.custom-button span {
  font-family: "Montserrat";
}

.customer-reviews-section .write-review .custom-button:not(.now):hover svg {
  transform: translateX(135px);
}

.tab-navigation {
  max-width: 600px;
  display: flex;
  margin-bottom: 60px;
  border-bottom: 1px solid #e0d5c7;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-button {
  background: none;
  border: none;
  padding: 20px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tab-button.active {
  color: #c8a882;
  font-weight: 700;
}

.tab-button.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #c8a882;
}

.tab-button:hover:not(.active) {
  color: #888;
}

/* View All Link */
.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #050405;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 50px;
  transition: all 0.3s ease;
}

.view-all-link:hover {
  font-weight: bolder;
}

.arrow {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.view-all-link:hover .arrow {
  transform: translateX(4px);
}

/* Ingredients Grid */
.ingredients-grid {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.ingredient-card {
  display: grid;
  grid-template-columns: 3fr 1fr;
  /* gap: 30px; */
  align-items: start;
}

.ingredient-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.ingredient-description {
  font-size: 18px;
  color: #666;
  line-height: 1.7;
  max-width: 600px;
}

.reference-link {
  color: #c8a882;
  text-decoration: none;
  font-weight: 500;
}

.reference-link:hover {
  text-decoration: underline;
}

.ingredient-image {
  width: 200px;
  height: 200px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Tab Content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  width: 90%;
  margin: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 20px 15px;
  }

  .tab-button {
    padding: 15px 20px;
    font-size: 14px;
  }

  .ingredient-card {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: start;
  }

  .ingredient-content h2 {
    font-size: 24px;
  }

  .ingredient-description {
    font-size: 16px;
  }

  .ingredient-image {
    width: 150px;
    height: 150px;
    justify-self: center;
  }

  .view-all-link {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .tab-navigation {
    margin-bottom: 40px;
  }

  .tab-button {
    padding: 12px 15px;
    font-size: 12px;
  }

  .ingredient-content h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .ingredient-description {
    font-size: 15px;
  }

  .ingredient-image {
    width: 120px;
    height: 120px;
  }

  .ingredients-grid {
    gap: 25px;
  }
}

/* Loading animation for images */
.ingredient-image {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ingredient-image.loaded {
  opacity: 1;
}

/* Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 800px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.modal-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.close-button {
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: white;
  transition: background-color 0.3s ease;
}

.close-button:hover {
  background: #b8986f;
}

.ingredients-list {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  text-align: justify;
}

/* Mobile responsive for modal */
@media (max-width: 768px) {
  .modal-content {
    padding: 30px 20px;
    margin: 10px;
    max-height: 90vh;
  }

  .modal-title {
    font-size: 28px;
  }

  .ingredients-list {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .modal-content {
    padding: 20px 15px;
  }

  .modal-title {
    font-size: 24px;
  }
}

.faq-item::before {
  display: none;
}

@media (min-width: 769px) and (max-width: 1366px) {
    .main-gallery {
        max-width: 350px;
    }

    .mobile-thumbnails{
      padding-bottom: 0px !important;
    }
}