section.hair-restoration-options {
  padding: 100px 172px;
}

.hair-restoration-options .option-card {
  overflow: hidden;
}

.hair-restoration-options .option-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.hair-restoration-options .option-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hair-restoration-options .option-card__body h3 {
  color: var(--headingColor);
  font-size: 32px;
}

.hair-restoration-options .option-card__body p {
  color: var(--textColor);
  opacity: 0.85;
}

.option-carousel__controls {
  display: none;
}

.option-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.option-carousel__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}

.option-carousel__nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.option-carousel__nav-btn svg {
  width: 18px;
  height: 18px;
}

.option-carousel__nav-btn svg path,
.option-carousel__nav-btn svg line,
.option-carousel__nav-btn svg polyline {
  stroke: var(--textColor);
}

.option-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.option-carousel__dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.option-carousel__dots .dot.is-active {
  background: var(--textColor);
  transform: scale(1.2);
}

.hair-restoration-options .book-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  border-radius: 100px;
  font-family: var(--worksans);
  font-size: 16px;
  font-weight: 600;
  color: var(--headingColor);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  width: 100%;
  max-width: 399px;
}

.hair-restoration-options .book-now:hover {
  color: #2b2b2b;
  transform: translateY(-2px);
}

.hair-restoration-options h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 55px;
  width: 675px;
  height: 110px;
  margin: auto;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1199px) {
  .hair-restoration-options .book-now {
    padding: 14px 40px;
    font-size: 15px;
  }
  section.hair-restoration-options {
    padding: 70px 30px;
  }
}

@media (max-width: 1199px) {
  .option-carousel__track {
    flex-wrap: nowrap !important;
    justify-content: flex-start !important; /* ← add this line */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .hair-restoration-options .glass-container-bg {
    border-radius: 24px;
  }

  .hair-restoration-options h2 {
    font-size: 44px;
    line-height: normal;
    width: 100%;
  }

  section.hair-restoration-options {
    padding: 50px 20px;
  }

  .option-carousel__track::-webkit-scrollbar {
    display: none;
  }

  .option-carousel__track > [class*="col-"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    scroll-snap-align: center;
  }

  .option-card {
    border-radius: 20px;
  }

  .option-card__img {
    border-radius: 20px 20px 0 0;
  }

  .option-card__body h3 {
    font-size: 22px;
  }

  .option-card__body p {
    font-size: 14px;
    line-height: 22px;
  }

  .option-note {
    font-size: 14px;
    line-height: 20px;
  }

  .option-carousel__controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .hair-restoration-options .book-now {
    padding: 14px 32px;
    width: 100%;
    max-width: 399px;
  }
}
