/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #F5F4F3;
  font-family: 'Work Sans', sans-serif;
  color: #1C1B1B;
  -webkit-font-smoothing: antialiased;
}

/* ── Product Section ──────────────────────────────────────── */
.product-section {
  width: 100%;
  min-height: 800px;
  display: flex;
  align-items: flex-start;
  background-color: #F5F4F3;
}

.product-layout {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px 80px;
  display: flex;
  align-items: flex-start;
  gap: 40px; /* increase slightly */
}

/* ── Left: Image ──────────────────────────────────────────── */
.product-image-col {
  align-items: flex-start;
  padding-top: 60px; /* pushes image down to match reference */
}

.product-layout {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px 80px;
  display: flex;
  align-items: flex-start;
  gap: 40px; /* increase slightly */
}

/* ── Left: Image ──────────────────────────────────────────── */
.product-image-col {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.product-img {
  width: 380px;   /* tighter, more premium */
  height: auto;
  object-fit: contain;
}

/* ── Right: Info ──────────────────────────────────────────── */
.product-info-col {
  flex: 1;
  min-width: 0;
  padding-top: 84px;
  align-self: flex-start;
}

/* Main Header — Libre Baskerville, 36px, -3%, 100% */
.product-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 100%;
  color: #602622;
  margin-bottom: 8px;
}

/* Sub-title — Work Sans Medium, 13px, uppercase, 10%, 140% */
.product-subtitle {
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  line-height: 140%;
  color: #1C1B1B;
  margin-bottom: 22px;
}

/* Body text — Work Sans, 16px, -3%, 140% */
.product-body {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 140%;
  color: #1C1B1B;
  margin-bottom: 16px;
}

/* Important note */
.product-note {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 140%;
  color: #1C1B1B;
  margin-bottom: 20px;
}

.product-note strong {
  font-weight: 700;
  font-style: normal;
  color: #80130B;
}

/* Badges row */
.product-badges {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.product-badge {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 140%;
  color: #1C1B1B;
}

.product-badge-dot {
  width: 6px;
  height: 6px;
  background-color: #1C1B1B;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.product-badge1 {
  display: flex;
  align-items: flex-start;
  flex-direction: coloumn;
  gap: 6px;
}

.product-badge,
.product-badge1 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-badge::before,
.product-badge1::before {
  content: '';
  width: 14px;
  height: 14px;
background: url('prodimages/tick.svg') no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}
/* Pricing */
.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 20px;
  
}

.product-pricing-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 140%;
  color: #1C1B1B;
  
}

.product-pricing-amount {
  font-family: 'Work Sans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #80130B;
  letter-spacing: -0.02em;
}

/* CTA Button — Work Sans, 16px, Capitalised, 10%, 140% */
.product-cta {
  width: 100%;
  padding: 15px 24px;
  background-color: transparent;
  border: 1.5px solid #000000;
  color: #1c1b1b;
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  line-height: 140%;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  display: block;
  margin-bottom: 0;
}

/* Hover */
.product-cta:hover {
  background-color: #CCC4C4;
  color: #602622;
  border-color: #602622;
}

/* Selected */
.product-cta.active {
  background-color: #602622;
  color: #F5F4F3;
  border-color: #602622;
}

/* ── Accordion (FIXED) ───────────────────────────────────── */
.product-accordion {
  margin-top: 20px;
}

/* Clean single divider system */
.accordion-item {
  border-bottom: 1px solid rgba(0,0,0,0.15);
}

.accordion-item:first-child {
  border-top: none;
}

/* Trigger */
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;

  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1C1B1B;

  transition: color 0.2s ease;
}

/* Active title color (matches your reference) */
.accordion-item.open .accordion-trigger {
  color: #80130B;
}

/* Chevron */
.accordion-chevron {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.accordion-item.open .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.open .accordion-body {
  max-height: 1000px; /* big enough buffer */
}

/* List */
.accordion-list {
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
}

/* List items */
.accordion-list li {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: #1C1B1B;

  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

/* Bullet style */
.accordion-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
}

/* Paragraph body */
.accordion-text {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.02em;
  margin-top: 10px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .product-section {
    height: auto;
    padding: 60px 0;
  }

  .product-layout {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0 24px;
  }

  .product-image-col {
    justify-content: center;
  }

  .product-img {
    width: 100%;
    max-width: 360px;
    height: auto;
  }

  .product-info-col {
    width: 100%;
  }

  .product-title {
    font-size: 28px;
  }
}
/* ── Product page default header ─────────────────────────── */
.product-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 50px;
  transition: opacity 0.3s ease;
}

.product-header .logo-container {
  position: static;
  transform: none;
}

.logo{
  width: 200px;
  height: 143px;
}



.product-header .menu-icon {
  position: absolute;
  top: 30px;
  left: 50px;
}

/* Push product section down so it doesn't sit under the header */
.product-section {
  padding-top: 120px;
}

/* ══════════════════════════════════════════════════════════
   SCIENCE BEHIND THE TREATMENT SECTION
   ══════════════════════════════════════════════════════════ */

.science-section {
  background-color: #F5F4F3;
  padding: 70px 0 80px;
  padding-top: 0px;
}

/* Container with padding for text/columns — but NOT for the timeline */
.science-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

.science-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 30px;
  font-weight: 400;
  color: #602622;
  text-align: center;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.science-title em { font-style: italic; }

.science-subtitle {
  font-family: 'Work Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #1C1B1B;
  text-align: center;
  letter-spacing: -0.03em;
  margin-bottom: 50px;
}

/* ── Timeline — full bleed, edge to edge ──────────────────── */
.science-timeline-wrapper {
  width: 100%;
  padding: 0;
  margin-bottom: 70px;
}

.science-timeline {
  position: relative;
  width: 100%;
  height: 4px;
}

.science-seg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  background-image: radial-gradient(circle, #BEBEBE 1px, transparent 1px);
  background-size: 6px 3px;
  background-repeat: repeat-x;
  background-position: 0 center;
  z-index: 0;
}

.science-seg-full { left: 0; width: 100%; }

.science-fill {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0%;
  height: 3px;
  transform: translateY(-50%);
  background-image: radial-gradient(circle, #80130B 1px, transparent 1px);
  background-size: 6px 3px;
  background-repeat: repeat-x;
  background-position: 0 center;
  z-index: 1;
  pointer-events: none;
}

/* Dots */
.science-dot {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  background-color: #BEBEBE;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: all 0.3s ease;
}

.science-dot-1 { left: 20%; }
.science-dot-2 { left: 50%; }
.science-dot-3 { left: 80%; }

.science-dot.active {
  background-color: #80130B;
  box-shadow: 0 0 10px rgba(128, 19, 11, 0.6);
  filter: blur(3px);
  width: 28px;
  height: 28px;
  animation: pulseDot 1.5s infinite;
}

/* Previously visited dot — solid red, no blur, no animation */
.science-dot.visited {
  background-color: #80130B;
  box-shadow: none;
  filter: none;
  width: 18px;
  height: 18px;
  animation: none;
}

@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(128, 19, 11, 0.7); }
  70%  { box-shadow: 0 0 0 15px rgba(128, 19, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(128, 19, 11, 0); }
}

/* Dot titles */
.science-dot-title {
  position: absolute;
  top: 30px;
  transform: translateX(-50%);
  white-space: nowrap;
  text-align: center;
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.8px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #1C1B1B;
  transition: color 0.3s ease, font-size 0.3s ease;
}

.science-dot-title-1 { left: 20%; }
.science-dot-title-2 { left: 50%; }
.science-dot-title-3 { left: 80%; }

.science-dot-title.active {
  color: #80130B;
  font-size: 18px;
}

/* ── Two Columns ──────────────────────────────────────────── */
.science-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: center;
  min-height: 380px;
}

.science-col {
  position: relative;
  min-height: 380px;
}

.science-item {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%) scale(0.97);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
  pointer-events: none;
}

.science-item.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
  pointer-events: auto;
}

.science-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  display: block;
}

.science-text-highlight {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #80130B;
  letter-spacing: -0.03em;
  line-height: 1.5;
  margin-bottom: 20px;
}

.science-text-highlight span{
  font-size: 16px;
  font-weight: 400;
  color: #1C1B1B;
}

.science-text-body {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1C1B1B;
  letter-spacing: -0.03em;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* Right col text — anchor to bottom of the column */
.science-right-col .science-item {
  top: auto;
  bottom: 0;
  transform: translateY(0) scale(0.97);
}

.science-right-col .science-item.active {
  transform: translateY(0) scale(1);
}

/* ── CTA — exact same size/style as .product-cta ─────────── */
.science-cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 110px;
}

.science-cta {
  width: 465px;
  height: 57px;
  /* padding: 15px 24px; */
  background-color: transparent;
  border: 1.5px solid #1C1B1B;
  color: #1C1B1B;
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  line-height: 140%;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  display: block;
}


.science-cta:hover {
  background-color: #CCC4C4;
  color: #602622;
  border-color: #602622;
}

.science-cta.active {
  background-color: #602622;
  color: #F5F4F3;
  border-color: #602622;
}

@media (max-width: 768px) {
  .science-container { padding: 0 24px; }
  .science-title { font-size: 22px; }
  .science-columns { grid-template-columns: 1fr; min-height: auto; }
  .science-col { min-height: 280px; }
  .science-timeline-wrapper { margin-bottom: 80px; }
}
/* ── Journey CTA button ───────────────────────────────────── */
.journey-cta-wrapper {
  margin-top: 40px;
}

.journey-cta {
  width: 387px;
  height: 57px;
  padding: 0;
  background-color: transparent;
  border: 1.5px solid #1C1B1B;
  color: #1C1B1B;
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  display: block;
}

.journey-cta:hover {
  background-color: #CCC4C4;
  color: #602622;
  border-color: #602622;
}

.journey-cta.active {
  background-color: #602622;
  color: #F5F4F3;
  border-color: #602622;
}
/* ══════════════════════════════════════════════════════════
   WHAT TO EXPECT OVER TIME SECTION
   ══════════════════════════════════════════════════════════ */

.expect-section {
  background-color: #F5F4F3;
  padding: 80px 0 90px;
}

.expect-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

.expect-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 30px;
  font-weight: 400;
  color: #602622;
  text-align: center;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 55px;
}
.expect-title em { font-style: italic; }

/* ── 3-Column Grid ───────────────────────────────────────── */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.expect-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Image area ─────────────────────────────────────────── */
.expect-image-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 14px;
}

.expect-image-wrap {
  width: 250px;
  height: 266px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.expect-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Arrow + label below image — centered */
.expect-image-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  width: 187px;
}

.expect-arrow {
  width: 74px;
  height: 8px;
  display: block;
}

.expect-image-label span {
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.10em;
  line-height: 140%;
  text-transform: uppercase;
  color: #1C1B1B;
  text-align: center;
}

/* ── Text content ────────────────────────────────────────── */
.expect-card-content {
  padding: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.expect-phase-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1C1B1B;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.expect-phase-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #1C1B1B;
  opacity: 0.25;
}

/* Phase bar — accordion trigger */
.expect-phase-bar {
  background-color: #CCC4C4;
  padding: 6px 12px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  width: 100%;
  box-sizing: border-box;
}

.expect-phase-bar span {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #602622;
}

.expect-card-body {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.6;
  color: #1C1B1B;
  margin-bottom: 10px;
}

.expect-card-note {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.6;
  color: #1C1B1B;
  font-style: italic;
}

/* ── Scroll reveal ───────────────────────────────────────── */
.expect-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.expect-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Before / After Slider ───────────────────────────────── */
.ba-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
}

.ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-before-img {
  z-index: 1;
}

.ba-after-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  /* NO transition — instant response on drag */
}

.ba-after-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;  /* will be overridden by JS to match slider full-width */
  height: 100%;
  object-fit: cover;
}

/* Divider line */
.ba-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #F5F4F3;
  z-index: 3;
  transform: translateX(-50%);
  /* NO transition on divider itself — instant */
}

/* Handle knob */
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: #F5F4F3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.ba-slider:active .ba-handle,
.ba-slider.dragging .ba-handle {
  transform: translate(-50%, -50%) scale(1.12);
}

/* Month labels */
.ba-arrow-label {
  position: absolute;
  bottom: 10px;
  font-family: 'Work Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F5F4F3;
  z-index: 4;
  pointer-events: none;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.ba-arrow-left  { left: 10px; z-index: 1; }
.ba-arrow-right { right: 10px; z-index: 4; }

@media (max-width: 900px) {
  .expect-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .expect-container { padding: 0 24px; }
  .expect-title { font-size: 22px; }
}


/* ══════════════════════════════════════════════════════════
   COMPARISON TABLE SECTION
   ══════════════════════════════════════════════════════════ */

.compare-section {
  background-color: #F5F4F3;
  padding: 90px 0 90px;
}

.compare-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 80px;
}

/* Main title — Libre Baskerville, 36px, -3%, 140%, #602622 */
.compare-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 36px;
  font-weight: 400;
  color: #602622;
  text-align: center;
  letter-spacing: -0.03em;
  line-height: 140%;
  margin-bottom: 60px;
}

.compare-title em {
  font-style: italic;
}

.compare-table-wrap {
  width: 100%;
  position: relative;
}

/* Vertical divider lines — absolutely positioned */
.compare-vline {
  position: absolute;
  width: 1px;
  height: 384px;
  background-color: #000000;
  bottom: 0;
  pointer-events: none;
  z-index: 2;
}

/* After Meshkati col: label(340) + meshkati(148) = 488px from table left.
   Table is centered, so offset from wrapper = (wrapper - 932px) / 2 + 488px.
   Using calc with 50% trick since table is centered via margin:auto */
.compare-vline-1 {
  left: calc(50% - 932px/2 + 340px + 148px);
}

/* After Online Prescription col: 340 + 148 + 222 = 710px */
.compare-vline-2 {
  left: calc(50% - 932px/2 + 340px + 148px + 222px);
}

/* Use a wrapper div to house the table at exact 932px */
.compare-table {
  width: 932px;
  max-width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  table-layout: fixed;
}

col.col-label    { width: 340px; }
col.col-meshkati { width: 148px; }
col.col-mid      { width: 222px; }
col.col-last     { width: 222px; }

/* ── Header row ── */
.compare-header-row th {
  padding: 0 0 18px 0;
  vertical-align: bottom;
  border: none;
}

.compare-th-label {
  /* empty */
}

/* Work Sans Medium, 16px, 0% letter spacing, 130% line height */
.compare-th-meshkati {
  text-align: center;
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0em;
  line-height: 130%;
  color: #602622;
  text-transform: uppercase;
  padding-left: 10px;
  padding-right: 10px;
}

.compare-th-other {
  text-align: center;
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0em;
  line-height: 130%;
  color: #1C1B1B;
  padding-left: 10px;
  padding-right: 10px;
}

.compare-th-mid {
}

/* ── Body rows — no horizontal borders, only vertical dividers via box-shadow ── */
.compare-row td {
  padding: 0;
  border: none;
  height: 68px;
  vertical-align: middle;
}

/* Row highlight on hover only */
.compare-row:hover td {
  background-color: #E2DDDD;
  transition: background-color 0.2s ease;
}

/* Label cell */
.compare-td-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1C1B1B;
  letter-spacing: -0.02em;
  line-height: 1.4;
  /* padding-left: 0; */
  padding-left: 16px !important;
  vertical-align: middle;
}

/* Meshkati value cell */
.compare-td-check {
  text-align: center;
  vertical-align: middle;
}

/* Middle cell */
.compare-td-mid {
  text-align: center;
  vertical-align: middle;
}

/* Last cell — no borders */
.compare-td-last {
  text-align: center;
  vertical-align: middle;
}

/* Checkmark — dark red */
/* Tick / Cross SVG icons */
.compare-icon {
  width: 36px;
  height: 43px;
  display: inline-block;
  vertical-align: middle;
}

/* "Sometimes" / "Limited" */
.compare-text-val {
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #5a5454;
  letter-spacing: 0em;
  line-height: 1;
}

@media (max-width: 768px) {
  .compare-container { padding: 0 24px; }
  .compare-title { font-size: 26px; margin-bottom: 36px; }
  .compare-table { width: 100%; }
  .compare-th-meshkati,
  .compare-th-other { font-size: 13px; }
  .compare-td-label { font-size: 12px; }
}
/* ── Expect Accordion ────────────────────────────────────── */
.expect-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #1C1B1B;
}

.expect-phase-bar.open .expect-chevron {
  transform: rotate(180deg);
}

.expect-accordion-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding-top 0.3s ease;
  padding-top: 0;
}

.expect-accordion-body.open {
  max-height: 600px;
  opacity: 1;
  padding-top: 14px;
}
/* ── Icon Features Section (below Journey) ───────────────── */
.product-features-section {
  background-color: #f0ecea;
  padding: 70px 100px 80px;
}

.product-features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-features-section .feature-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-features-section .feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  height: 80px;
}

.product-features-section .feature-icon img {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.product-features-section .feature-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #1C1B1B;
  text-align: center;
}

.product-features-section .feature-description {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: #1C1B1B;
  text-align: justify;
  letter-spacing: -0.42px;
  max-width: 156px;
}

@media (max-width: 960px) {
  .product-features-section {
    padding: 50px 24px 60px;
  }
  .product-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .product-features-section .feature-icon {
    height: 70px;
    margin-bottom: 20px;
  }
  .product-features-section .feature-icon img {
    width: 50px;
    height: 50px;
  }
  .product-features-section .feature-title {
    font-size: 14px;
  }
  .product-features-section .feature-description {
    font-size: 13px;
    max-width: 100%;
  }
}
/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  position: relative;   /* stays in flow */
  width: 100%;
  background-color: #4F1713;
  transform: translateY(100%);  /* hidden initially */
  will-change: transform;
}

/* .main sits above the sticky footer */
.main {
  position: relative;
  z-index: 1;
  background-color: #F5F4F3;
}

/* Each column starts invisible, slides up when footer is revealed */
.footer-col {
  opacity: 1;
  transform: translateY(40px);
  transition:
    opacity   0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer.footer-revealed .footer-col:nth-child(1) { opacity: 1 !important; transform: translateY(0); transition-delay: 0.15s; }
.site-footer.footer-revealed .footer-col:nth-child(2) { opacity: 1 !important; transform: translateY(0); transition-delay: 0.30s; }
.site-footer.footer-revealed .footer-col:nth-child(3) { opacity: 1 !important; transform: translateY(0); transition-delay: 0.45s; }
.site-footer.footer-revealed .footer-col:nth-child(4) { opacity: 1 !important; transform: translateY(0); transition-delay: 0.60s; }

/* Map fades in last */
.footer-map {
  opacity: 1;
  transform: scale(0.96);
  transition:
    opacity   0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.85s,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.85s;
}

.site-footer.footer-revealed .footer-map {
  opacity: 1 !important;
  transform: scale(1);
}

.footer-inner {
  display: grid;
  grid-template-columns: 180px 270px 270px 360px;
  gap: 40px;
  align-items: start;
  width: 1200px;
  height: 364px;
  margin: 0 auto;
  padding: 52px 0;
  box-sizing: border-box;
}

/* Col 1 — Logo */
.footer-col-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-logo {
    width: 306px;
    height: 173px;
    object-fit: contain;
}

.footer-brand-name {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

/* Groups inside cols */
.footer-group {
  margin-bottom: 28px;
}
.footer-group:last-child {
  margin-bottom: 0;
}

/* Small heading labels */
.footer-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.10em;
  line-height: 1.4;
  color: #ffffff;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

/* Body info text */
.footer-info {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0;
  text-align: justify;
}

/* Footer links */
.footer-link,
.footer-nav-link,
.footer-social-link {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.footer-link:hover,
.footer-nav-link:hover {
  opacity: 0.7;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.footer-social-link:hover {
  opacity: 0.7;
}

/* Nav links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.footer-nav-link {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.03em;
  display: inline-block;
}

/* Map */
.footer-col-map {
  height: 100%;
}

.footer-map {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Responsive */
@media (max-width: 1240px) {
  .footer-inner {
    width: 100%;
    height: auto;
    padding: 52px 32px;
  }
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 40px 24px;
  }
  .footer-col-logo {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .footer-col-map {
    grid-column: 1 / -1;
    min-height: 200px;
  }
}

@media (max-width: 540px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 32px 20px;
  }
  .footer-col-logo {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* OPTIONS LAYOUT */
.product-options {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  margin: 35px 0 25px;
}

.option-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option-divider {
  width: 1px;
  height: 80px;
  background: rgba(0,0,0,0.2);
  height: auto;
}

.option-title {
  font-size: 15px;
  font-weight: 500;
}

.radio-option input[type="radio"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid #1C1B1B;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

.radio-option input[type="radio"]:checked {
  border-color: #80130B;
}

.radio-option input[type="radio"]:checked::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #80130B;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.radio-option.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.option-group.disabled input[type="radio"] {
  border-color: #D6D6D6;
}

.option-group.disabled input[type="radio"]:checked::after {
  background: #E3A5A1;
}

.option-subtext {
  font-size: 13px;
  color: #777;
  margin-left: 26px;
}

.product-price-dynamic {
  font-size: 26px;
  color: #80130B;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 12px;
align-items: center;
}

/* Bold headings inside accordion */
.accordion-heading {
  font-weight: 600;
  margin: 10px 0 6px;
}

/* Remove default bullets ONLY for this version */
.accordion-list.clean li {
  list-style: none;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Kill the old pseudo bullet */
.accordion-list.clean li::before {
  display: none;
}
/* Disabled state (matches your first screenshot) */
.option-group.disabled {
  opacity: 1; /* keep text visible */
}

/* Grey text + radios */
.option-group.disabled .radio-option {
  color: #B9B9B9;
}

.option-group.disabled .radio-option input {
  accent-color: #E3A5A1; /* soft pink like your screenshot */
}

/* Subtext */
.option-group.disabled .option-subtext {
  color: #C7C7C7;
}

/* Title */
.option-group.disabled .option-title {
  color: #B9B9B9;
}
/* Wrapper for spacing */
.product-price-wrapper {
  margin: 28px 0 20px;
  text-align: center;
}

/* Price pill */
.product-price-dynamic {
  display: inline-block;
  background: #e6e1df;
  color: #8b1e14;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 22px;
  padding: 14px 28px;
  border-radius: 14px;
  letter-spacing: 0.3px;
  
}

/* Secondary text */
.product-price-dynamic span {
  font-weight: 400;
  opacity: 0.9;
  margin-left: 6px;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.product-badge::before,
.product-badge1::before {
  transform: translateY(1px);
}

