:root {
  --primary-color: #ff6392;
  --secondary-color: #8e9bae;
  --background-color: #f3f3f3;
  --text-color: #333;
  --white-color: #fff;
  --border-color: #d0d5dc;
  --red-color: #cd0000;
  --green-color: #1f631f;
  --orange-color: #ed951b;
}

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

@font-face {
  font-family: 'Futura Hv BT';
  src: url('/assets/font/FutuHv.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Futura Hv BT';
  src: url('/assets/font/FutuHvIt.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Futura Bk BT';
  src: url('/assets/font/futurabookbt.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Futura Md BT';
  src: url('/assets/font/futura-20medium-20bt.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Futura Hv BT';
  src: url('/assets/font/FuturaHeavyBT.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Futura Hv BT';
  src: url('/assets/font/FuturaHeavyItalicBT.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: 'Futura Hv BT';
  src: url('/assets/font/futurahi.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

html,
body {
  font-family: 'Futura Hv BT', sans-serif;
  background: var(--background-color);
  color: var(--text-color);
}

.primary-acne,
.primary-pigmentation,
.primary-aging,
.primary-texture,
.primary-dark-spots {
  display: none;
}

/* start:side-bar-css */

.sidebar {
  width: 400px;
  background: var(--white-color);
  height: 100vh;
  padding: 40px 26px 26px 26px;
  transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.sidebar .side-bar-logo {
  margin-bottom: 20px;
}

.sidebar .side-bar-heading {
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 12px;
}

.sidebar .side-bar-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 21.96px;
  color: var(--secondary-color);
  font-family: 'Futura Bk BT';
}

.sidebar ul.timeline-options {
  margin: 2.5em 0;
  padding-left: 12px;
  display: inline-block;
}

.sidebar ul.timeline-options li {
  list-style: none;
  margin: auto;
  min-height: 50px;
  border-left: 2px solid var(--primary-color);
  padding: 0 0 50px 30px;
  position: relative;
  transition: background-color 0.3s ease;
}

.sidebar ul.timeline-options li:last-child {
  border-left: 0;
}



.sidebar ul.timeline-options li::before {
  position: absolute;
  left: -16px;
  top: -5px;
  content: ' ';
  border: 8px solid var(--white-color);
  outline: 1px solid var(--border-color);
  border-radius: 500%;
  background: var(--border-color);
  height: 14px;
  width: 14px;
  transition: all 500ms ease-in-out;
}

/* For filled circles (completed steps) */

.sidebar ul.timeline-options li.filled::before {
  background-color: var(--white-color);
  border-color: var(--primary-color);
  outline: 1px solid var(--primary-color);
}

.sidebar ul.timeline-options li h6 {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 6px;
}

.sidebar ul.timeline-options li p {
  font-size: 16px;
  font-weight: 400;
  color: var(--secondary-color);
  font-family: 'Futura Bk BT';
}

/* end: side-bar-css  */

/* global */

.heading {
  font-size: 30px;
  font-weight: 600;
  line-height: 36.31px;
  width: 100%;
}

.sub-heading {
  font-size: 16px;
  font-weight: 400;
  line-height: 19.36px;
  font-family: 'Futura MD BT';
}

.relative {
  position: relative;
}

.hidden-overflow {
  overflow: hidden;
}

.d-flex {
  display: flex;
}

.mb-20 {
  margin-bottom: 20px;
}

.text-ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  transition: all 0.3s ease-in-out;
}

.text-ellipsis.expanded {
  -webkit-line-clamp: unset !important;
  overflow: visible;
  white-space: normal;
}

.read-more {
  color: var(--primary-color);
  cursor: pointer;
  font-size: 14px;
  display: inline-block;
}

a {
  text-decoration: none;
}

/* body-content */

.content {
  width: 60%;
  padding: 40px 26px 0px 26px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

.content .mobile-header {
  display: none;
}

.content .mobile-header .header-section #back-mobile-btn {
  display: none;
}

.step-content {
  display: none;
}

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

/* step-1-css */

.item-section {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 28px 0px;
}

.item-section .item-option {
  width: 135px;
  height: 114px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  background-color: var(--white-color);
  padding: 14px;
  cursor: pointer;
  position: relative;
}

.item-section .item-option img {
  margin-bottom: 8px;
}

.item-option img.select-icon,
.item-option img.unselect-icon {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
}

.item-option img.unselect-icon {
  display: block;
}

.item-option img.select-icon {
  display: none;
}

.item-option.selected {
  border-color: var(--primary-color);
  background-color: #ffe6f0;
}

.item-option.selected img.select-icon {
  display: block;
}

.item-option.selected img.unselect-icon {
  display: none;
}

/* step-2: face detect AI web cam */

video {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  width: 100%;
  height: 100%;
}

#video-section {
  margin-top: 14px;
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow: visible;
}

.countdown {
  position: absolute;
  font-size: 40px;
  color: white;
  padding: 10px;
  border-radius: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mask {
  position: absolute;
  top: 53%;
  left: 50%;
  width: 50%;
  aspect-ratio: 3 / 4;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid rgba(255, 255, 255, 0.85);
  box-sizing: content-box;
  height: calc(80% + 6px);
}

.blur {
  z-index: 1;
  border: 5000px solid hsla(0, 0%, 100%, 0.3);
}

.error-messages {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 22px;
  font-weight: 500;
  color: var(--white-color);
}

.error-messages p {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 4px;
  border-radius: 8px;
}

canvas {
  display: none;
}

.options {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
}

.option {
  margin: 0 10px;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.poor {
  background-color: var(--red-color);
  color: white;
  transition: background-position 0.3s ease-in-out;
}

.good {
  background-color: var(--green-color);
  color: white;
  transition: background-position 0.3s ease-in-out;
}

.capture-options {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  align-items: center;
  justify-content: center;
}

.capture-options button {
  margin: 10px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 8px;
}

.capture-options .snap-again-btn {
  border: 1px solid var(--border-color);
}

.capture-options .look-good-btn {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: var(--white-color);
}

#video {
  display: block;
  transform: scaleX(-1);
}

#capturePhoto {
  display: none;
  border: 2px solid var(--border-color);
  border-radius: 8px;
}

#capturePhoto img {
  border-radius: 8px;
}

.camera-section-heading {
  display: flex;
  align-items: center;
}

.step2-back-button {
  cursor: pointer;
}

/* step-3-form-css */

.form {
  width: 750px;
  margin: auto;
}

.form .form-field {
  width: 100%;
  margin-bottom: 20px;
}

.form .form-field label span {
  color: var(--red-color);
}

.form .user-form {
  padding-top: 24px;
}

.form .user-form input {
  box-sizing: border-box;
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-top: 8px;
  outline-color: var(--primary-color);
}

.form .user-form label {
  font-size: 16px;
  font-weight: 400;
  line-height: 19.36px;
  color: var(--secondary-color);
  text-align: left;
  display: block;
  font-family: 'Futura Bk BT';
}

/* Style the label */

.form .user-form .checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
  margin: 30px 0px;
}

/* Hide default checkbox */

.form .user-form .checkbox-label input[type='checkbox'] {
  appearance: none;
  width: auto;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 8px;
  margin: 0px;
}

/* Checked state */

.form .user-form .checkbox-label input[type='checkbox']:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Add checkmark */

.form .user-form .checkbox-label input[type='checkbox']::after {
  content: '✔';
  font-size: 14px;
  color: white;
  position: absolute;
  left: 3px;
  top: -1px;
  display: none;
}

/* Show checkmark when checked */

.form .user-form input[type='checkbox']:checked::after {
  display: block;
}

/* Only show when validation fails */

.form .user-form .error-message {
  color: var(--primary-color);
  font-size: 14px;
  display: none;
  padding-top: 6px;
  text-align: left;
}

/* navaigation-actions-css */

.navigation {
  margin: 0px auto;
  max-width: 746px;
  display: grid;
}

.report .navigation {
  max-width: 900px;
  /* opacity: 0; */
  /* visibility: hidden; */
  /* transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out; */
}

.report .navigation.active {
  opacity: 1;
  visibility: visible;
}

.report .navigation button {
  background: #0d83e3;
}

.report .navigation .navigation-product-price {
  background-color: #fdfdf3;
  padding: 0px 10px;
  margin: 20px 0px;
  border-radius: 6px;
  width: 100%;
  display: grid;
}

/* Keep the routine "Add to Cart" bar inline where it's placed in the page
   (right after "What's In Your Kit?"), overriding the mobile rule that pins
   every .navigation to a fixed bar at the bottom of the viewport. */
.navigation.routine-navigation {
  position: static;
  margin: 0 0 15px;
  bottom: auto;
  left: auto;
  right: auto;
  width: auto;
  transform: none;
  border-top: none;
  z-index: auto;
  padding: 0;
}

.routine-nudge {
  margin: 0 0 10px;
  padding: 8px 14px;
  border-radius: 6px;
  background: var(--routine-blue-light);
  color: var(--routine-blue);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.routine-nudge[hidden] {
  display: none;
}

.navigation-product-price.routine-nav-bar {
  display: flex !important;
  align-items: center;
  gap: 14px;
}

.routine-nav-bar .nav-bag-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--routine-blue-light);
  color: var(--routine-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.routine-nav-bar .price-list {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
}

.routine-nav-bar .price-detail {
  display: block;
  padding: 0;
}

.routine-nav-bar .price-detail p {
  font-size: 14px;
}

.routine-nav-bar .price-label {
  font-size: 12px;
  color: #888;
  margin: 0;
}

.routine-nav-bar .price-value {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.routine-nav-bar .buy-now-action {
  flex: 0 0 auto;
  width: auto;
  white-space: nowrap;
  padding: 12px 20px;
  font-size: 15px;
}

@media (max-width: 480px) {
  .navigation-product-price.routine-nav-bar {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .routine-nav-bar .price-list {
    flex: 1 1 auto;
    min-width: 0;
  }

  .routine-nav-bar .price-detail p {
    font-size: 13px;
  }

  .routine-nav-bar .buy-now-action {
    flex: 1 1 100%;
    width: 100%;
  }
}

.navigation #back-btn {
  display: none;
  gap: 6px;
  align-items: center;
  justify-content: center;
  background-color: var(--text-color);
  margin-top: 16px;
}

.navigation button {
  cursor: pointer;
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 8px;
  padding: 14px;
  border: 0;
  font-size: 20px;
  font-weight: 700;
  width: 100%;
}

.navigation button:disabled {
  background: gray;
  cursor: not-allowed;
}

.price-info {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-top: 8px;
}

.mrp {
  color: var(--secondary-color);
  margin-right: 10px;
}

.mrp span {
  text-decoration: line-through;
}

.selling-price {
  font-weight: bold;
  color: var(--primary-color);
  margin-right: 8px;
  font-size: 18px;
}

/* user-product-container */

#user-profile-container {
  display: flex;
}

#user-product-container {
  position: fixed;
  /* Keep it in view */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: white;
  /* Ensure visibility when shown */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  z-index: 1000;
}

.report {
  background: white;
}

.report h1 {
  font-size: 55px;
  font-weight: 600;
  text-align: center;
  padding: 38px 0px;
}

.report-container {
  background-color: #fdfdf3;
  box-shadow: 0px 1px 3.9px 0px #00000040;
  max-width: 900px;
  margin: auto;
  border-radius: 15px;
}

.report-container h2 {
  font-size: 34px;
  font-weight: 700;
  text-align: left;
  color: var(--text-color);
  padding: 12px 0px;
}

.report-container .chart-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 16px;
}

.report-container .chart-container .chart {
  margin: 0 auto;
  width: 40%;
  text-align: center;
  border-right: 2px dashed #a3a3a3;
}

.report-container .chart-container .chart canvas {
  display: inline-block !important;
  text-align: center;
  height: 100% !important;
}

.report-container .chart-container .chart-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: bold;
}

.report-container .chart-container .score-card {
  width: 60%;
  padding: 0px 0px 0px 50px;
}

/* .report-container .chart-container .score-card .score-percentage {} */

.report-container .chart-container .score-card .score-percentage .overall-score {
  font-size: 40px;
  font-weight: 600;
  background: var(--orange-color);
  border-radius: 41px;
  color: var(--white-color);
  text-align: center;
  width: fit-content;
  padding: 4px 30px;
}

.report-container .chart-container .score-card .score-percentage .score-Category {
  font-size: 30px;
  font-weight: 500;
  padding: 12px 0px;
}

.report-container .chart-container .score-card h6 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 14px;
}

.report-container .chart-container .score-card p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

.report-container .scin-scan-percentage {
  font-family: 'Futura Bk BT';
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0;
  text-align: center;
  background: #8fceff;
  padding: 14px;
  border-radius: 0 0 15px 15px;
}

.report #concern-container .Concern-points {
  font-family: Futura Bk BT;
  font-weight: 400;
  font-size: 8px;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.report #concern-container .Concern-points ul {
  width: 78%;
}

.report #concern-container .Concern-points ul li {
  list-style-type: none;
  font-size: 20px;
  display: flex;
  align-items: self-start;
}

.report #concern-container .Concern-points ul li:first-child {
  padding-bottom: 4px;
}

.report #concern-container .Concern-points ul li:first-child::before {
  content: none;
}

.report #concern-container .Concern-points ul li::before {
  content: '•';
  display: inline-block;
  width: 10px;
  margin-right: 5px;
  flex-shrink: 0;
}

.report #concern-container .concern-img {
  width: 22%;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.report #concern-container .concern-img img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.testimonial-container {
  text-align: center;
  border-radius: 12px;
  max-width: 900px;
  margin: auto;
}

.testimonial-container h3 {
  font-size: 26px;
  color: #333;
}

/* Testimonial Grid */

.face-image {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: start;
}

/* Individual Testimonial Box */

.face-image div {
  background: white;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.face-image div:hover {
  transform: translateY(-5px);
}

/* Testimonial Images */

.face-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 10px;
}

/* Testimonial Text */

.face-image p {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: left;
  font-family: 'Futura MD BT';
}

/* Testimonial Name */

.face-image h6 {
  font-size: 16px;
  color: #222;
  font-weight: bold;
  margin-top: 10px;
  text-align: left;
}

#progressBars {
  display: flex;
  align-items: center;
  margin: 40px 0px;
}

.progress-container {
  border-radius: 15px;
  border: 1.5px solid #e2e8f0;
}

.progress-container .score-value {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #333333;
  padding: 18px;
}

.progress-container .score-label {
  border-radius: 0px 0px 15px 15px;
  text-align: center;
  color: #333333;
  background: #fffbf5;
  padding: 20px 0px;
  border-width: 1px 0px 0px 0px;
  border-style: solid;
  border-color: #e2e8f0;
}

/* Static gradient progress bar */

.progress-container .gradient-scale {
  position: relative;
  width: 200px;
  height: 14px;
  border-radius: 30px;
  background: linear-gradient(to right, #e24d4c 0%, #ff6961 60%, #ffe247 80%, #77dd77 100%);
  margin: 0px 20px 18px 20px;
}

/* Circular indicator */

.progress-container .progress-indicator {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.product-container {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.report .products {
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 5px;
  margin-bottom: 1rem;
}

.report .products h3 {
  font-size: 45px;
  font-weight: 600;
  text-align: center;
  margin-top: 20px;
  padding: 20px 12px;
  border-top: 1px dashed var(--border-color);
}

.report .testimonial-container h3 {
  font-size: 45px;
  font-weight: 600;
  text-align: center;
  padding: 30px 12px;
}

.report div .side-bar-logo {
  display: block;
  margin: auto;
  padding: 30px;
  max-width: 300px;
}

.report .products .product-list {
  /* display: flex; */
  /* flex-direction: row; */
  /* gap: 20px; */
  max-width: 900px;
  margin: 0 auto;
}

.report .products .product-list .product-kit {
  width: 50%;
  margin: auto;
}

.report .products .product-list .product-kit img {
  width: 100%;
  height: auto;
  max-height: 520px;
  border: 1px solid var(--border-color);
  border-radius: 17px;
  margin-bottom: 20px;
}

.pricing-container {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pricing-card {
  width: 100%;
  background-color: #fcfcfc;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #c7c7c7;
  height: fit-content;
  cursor: pointer;
}

.pricing-card.selected {
  border: 1px solid #0d83e3;
  background-color: #fdfdf3;
}

.pricing-card.selected .card-header {
  background-color: #fdfdf3;
  border-bottom: 1px solid #0d83e3;
}

.card-header {
  padding: 15px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px solid #c7c7c7;
  background: #ffffff;
}

.results-gradient-section {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 15px;
  padding: 28px 20px 24px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.results-gradient-section h3 {
  text-align: center;
  margin-bottom: 36px;
  font-size: 18px;
}

.results-gradient-bar {
  position: relative;
  height: 6px;
  border-radius: 4px;
  background: linear-gradient(to right, #E24D4C, #ffe247, #77dd77);
  margin: 25px 14px 30px;
}

.results-gradient-bar .gradient-dot {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #c7c7c7;
  transform: translate(-50%, -50%);
}

.results-gradient-bar .gradient-percent {
  position: absolute;
  top: -22px;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 600;
  color: #555;
}

.results-zones {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.results-zone {
  position: relative;
  flex: 1;
  text-align: center;
  padding: 0 12px;
}

.results-zone + .results-zone::before {
  content: '';
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  border-left: 1px dashed #ddd;
}

.results-zone p {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 150px;
}

.zone-badge {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.zone-badge.needs-care {
  background: #fde2e2;
  color: #E24D4C;
}

.zone-badge.improving {
  background: #fff3cd;
  color: #b8860b;
}

.zone-badge.healthy {
  background: #d9f2d9;
  color: #2e7d32;
}

:root {
  --routine-blue: #0d83e3;
  --routine-blue-light: rgba(13, 131, 227, 0.1);
}

.product-steps {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 12px;
  margin-bottom: 15px;
  padding: 4px 4px 12px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  justify-content: safe center;
}

.product-step-card {
  position: relative;
  flex: 0 0 170px;
  scroll-snap-align: start;
  width: 170px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 14px 12px;
  text-align: left;
  cursor: pointer;
  transition: opacity 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.product-step-card.selected {
  border-color: var(--routine-blue);
  box-shadow: 0 2px 8px rgba(13, 131, 227, 0.15);
}

.product-step-card:not(.selected) {
  opacity: 0.6;
}

.product-step-card .step-checkbox {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: #fff;
  border: 2px solid #c7c7c7;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.product-step-card.selected .step-checkbox {
  background: var(--routine-blue);
  border-color: var(--routine-blue);
}

.product-step-card.selected .step-checkbox::after {
  content: '';
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}

.product-step-card .step-product-image {
  width: 100%;
  height: 110px;
  object-fit: contain;
  margin-bottom: 8px;
}

.step-badges {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

.step-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
}

.step-badge.step-number {
  background: var(--routine-blue-light);
  color: var(--routine-blue);
}

.step-badge.step-category {
  background: transparent;
  color: var(--routine-blue);
}

.product-step-card .step-product-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
  color: #1a1a1a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-step-card .step-product-price {
  font-size: 15px;
  font-weight: bold;
  color: #1a1a1a;
  margin-top: auto;
  padding-top: 8px;
}

.product-image {
  width: auto;
  height: auto;
  margin: 26px auto 15px auto;
  position: relative;
  display: flex;
  justify-content: center;
}

.product-image img {
  width: 140px;
  border: 0.2px solid #969997;
  border-radius: 15px;
  transform: scaleX(-1);
}

.product-image .product-image-container {
  position: relative;
}

.multiplier {
  position: absolute;
  top: -20px;
  right: -16px;
  background-color: #0d83e3;
  color: white;
  font-weight: bold;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pack-info {
  font-size: 24px;
  color: #8d8d8d;
  text-align: center;
  margin: 10px 0;
  font-family: 'Futura BK BT';
}

.price {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin: 10px 0;
}

.savings {
  background-color: #0d83e3;
  color: white;
  text-align: center;
  padding: 5px 15px;
  width: fit-content;
  margin: 0 auto;
  border-radius: 25px;
  font-size: 14px;
  border-radius: 3px;
  padding: 4px;
}

.mrp {
  font-size: 24px;
  color: #8a8a8a;
  text-align: center;
  margin: 15px 0 5px;
}

.mrp span {
  text-decoration: line-through;
  font-family: 'Futura BK BT';
}

.taxes {
  font-size: 14px;
  color: #8a8a8a;
  text-align: center;
  margin-bottom: 5px;
  font-family: 'Futura BK BT';
}

.value-badge {
  background-color: #0d83e3;
  color: white;
  text-align: center;
  font-size: 20px;
  padding: 12px 0px;
}

.results-badge {
  background-color: #0d83e3;
  color: white;
  text-align: center;
  font-size: 20px;
  padding: 12px 0px;
}

.coach-container {
  max-width: 900px;
  margin: 40px auto 20px auto;
  background-color: #fdfdf3;
  box-shadow: 0px 1px 3.9px 0px #00000040;
  border-radius: 15px;
}

.coach-container-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px;
}

.coach-info {
  width: 60%;
}

.coach-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 6px;
}

.coach-subtitle {
  font-size: 26px;
  color: #8d8d8d;
  margin-bottom: 8px;
  font-family: 'Futura Bk BT';
  line-height: 40px;
  padding: 4px 0px;
}

.coach-image {
  width: auto;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
  min-width: 200px;
}

.price-list {
  padding-top: 10px;
}

.price-detail {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 4px;
}

.price-detail p {
  font-size: 20px;
  color: #000;
  font-family: 'Futura Bk BT';
}

.price-detail .price-discount {
  color: #0d83e3;
  font-family: 'Futura Hv BT';
}

.price-detail p b {
  font-family: 'Futura Hv BT';
}

.call-btn {
  background-color: #ed951b;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 63px;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  width: fit-content;
  font-family: 'Futura HV BT';
}

.call-now p {
  color: var(--text-color);
  font-size: 22px;
}

.call-now p span {
  color: #ed951b;
}

.results-banner {
  background-color: #8fceff;
  color: #000;
  text-align: center;
  padding: 12px;
  font-size: 18px;
  border-radius: 0 0 15px 15px;
  font-family: 'Futura Bk BT';
}

.results-percentage {
  font-weight: bold;
}

/* .report .products .product-list .product-content {
  width: 60%;
  padding: 0px 20px;
  margin: 0px auto;
}

.report .products .product-list .product-content .product-desc {
  line-height: 40px;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  padding-top: 20px;
  color: #000000;
}

.report .products .product-list .product-content h4 {
  font-size: 35px;
  font-weight: 700;
}

.report .products .product-list .product-content h4 .kit-price {
  text-decoration: line-through;
}

.report .products .product-list .product-content h4 .kit-sale-price {
  font-size: 40px;
  color: var(--primary-color);
  padding-left: 6px;
}

.report .products .product-list .product-content .product-title-container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding-bottom: 20px;
}

.report .products .product-list .product-content .product-title {
  font-size: 20px;
  font-weight: 400;
  text-align: left;
  color: #000000;
  white-space: nowrap;
  padding: 14px 0px;
}

.report .products .product-list .product-content .product-title-point {
  padding: 0;
}

.report .products .product-list .product-content .product-details {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  justify-content: space-between;
} */

/* progress bar */

#progress {
  position: relative;
  /* width: 354px;
  height: 354px; */
  width: 100%;
  height: 100%;
  margin: auto;
}

svg {
  width: 100%;
  height: auto;
  display: block;
}

path {
  stroke-linecap: round;
  stroke-width: 4;
  fill: none;
}

path.grey {
  stroke: #e7e7e8;
}

path.progress {
  stroke: url(#progressGradient);
  stroke-dasharray: 251.2;
  stroke-dashoffset: 251.2;
  transition: stroke-dashoffset 1s ease-in-out;
}

.circle-labels {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  box-sizing: border-box;
  font-size: 28px;
  font-weight: bold;
  bottom: -6px;
  left: -10px;
}

.circle-label-poor {
  color: #e24d4c;
}

.circle-label-good {
  color: #77dd77;
}

.marker {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
}

.marker::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Centering the Image Inside the Circle */

.profile-image {
  position: absolute;
  top: 58%;
  left: 45.3%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
}

.navigation .buy-now-action {
  width: 400px;
  margin: 20px auto;
  text-align: center;
}

.navigation .buy-now-action .buy-now-price {
  justify-content: center;
  align-items: center;
  position: relative;
}

/* swiper */

.swiper-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 0.4rem;
  text-align: center;
}

.product-card img {
  width: 100%;
  text-align: center;
  border: 1.65px solid var(--border-color);
  border-radius: 25px;
}

.product-card p {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin: 0px 6px;
  line-height: 26px;
}

.product-card .product-price {
  font-size: 12px;
  padding-top: 0;
  color: var(--secondary-color);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color);
}

.swiper-pagination-bullet {
  background: var(--primary-color);
}

.score-swiper-pagination {
  position: absolute;
}

.plus-icon {
  font-size: 20px;
  font-weight: 300;
  position: absolute;
  left: -20px;
  top: 100px;
  transform: translate(-50%, -50%);
  /* Centers it perfectly */
  background: white;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.score-swiper {
  width: 100%;
  padding: 20px;
  cursor: grab;
}

.progress-container {
  width: auto !important;
  background: white;
  border-radius: 15px;
  text-align: center;
}

.progress-container.swiper-slide {
  margin-right: 16px !important;
}

/* toaster */

.toast {
  position: fixed;
  top: 20px;
  /* Move to the top */
  right: 20px;
  /* Align to the right */
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 14px;
  color: var(--white-color);
  z-index: 1000;
  opacity: 0;
  animation: fadeIn 0.3s forwards, fadeOut 0.3s 8s forwards;
  min-width: 250px;
  max-width: 350px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Error Toast - Red */

.toast-error {
  background-color: var(--red-color);
}

/* Success Toast - Green */

.toast-success {
  background-color: var(--green-color);
}

/* Fade In Animation */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade Out Animation */

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* loader */

/* Loader Background */

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none;
  /* Hidden by default */
}

/* Spinning Loader */

.loader {
  width: 50px;
  height: 50px;
  border: 6px solid var(--white-color);
  border-top: 6px solid var(--primary-color);
  /* Primary color */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Spinner Animation */

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* call */

/* .call-button {
    display: none;
} */

/* #call-popup {
    display: none;
} */

/* Media Queries for Responsive Design */

@media (min-width: 2560px) {
  #progressBars {
    justify-content: center;
  }
}

@media (max-width: 1366px) {

  /* Laptops */
  .sidebar {
    width: 360px;
  }

  .content {
    padding: 30px;
  }

  .report .products .product-list .product-kit {
    width: 50%;
  }

  /* .report .products .product-list .product-content {
    width: 50%;
  } */
  .navigation {
    width: auto;
  }

  .form {
    width: auto;
  }
}

@media (max-width: 1024px) {

  /* Tablets */
  .sidebar {
    display: none;
    /* Hide sidebar */
  }

  .mobile-header {
    width: 100%;
    padding: 0px 0px 20px 0px;
    position: relative;
  }

  .mobile-header-slider {
    white-space: nowrap;
  }

  .mobile-header div button {
    position: absolute;
    left: -5px;
    top: 20px;
    background-color: transparent;
    border: 0;
    display: none;
  }

  .step2-back-button {
    display: none;
  }

  .mobile-header div button img {
    width: 38px !important;
  }

  .mobile-timeline-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: nowrap;
  }

  /* Each Step Circle */
  .mobile-step-circle {
    position: relative;
    text-align: center;
    flex: 1;
    min-width: 116px;
    padding-top: 24px;
  }

  /* Step Title */
  .mobile-step-circle h6 {
    font-size: 11px;
    font-weight: 400;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
  }

  /* Step Description */
  .mobile-step-circle p {
    font-size: 12px;
    color: var(--secondary-color);
    margin: 0;
  }

  /* Circle Indicator */
  .mobile-step-circle::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    border: 3px solid var(--white-color);
    outline: 0.5px solid var(--border-color);
    z-index: 2;
  }

  .mobile-step-circle.filled::before {
    background-color: var(--white-color);
    border-color: var(--primary-color);
    outline-color: var(--primary-color);
  }

  /* Connecting Line */
  .mobile-step-circle:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    z-index: 1;
  }

  .content {
    width: 80%;
    padding: 20px;
  }

  .content .mobile-header {
    display: block;
  }

  .content .mobile-header h1 {
    font-size: 28px;
    font-weight: 700;
    padding: 20px 0px;
  }

  .content .mobile-header p {
    color: var(--secondary-color);
    padding-bottom: 24px;
  }

  .heading {
    font-size: 24px;
  }

  .navigation {
    width: 100%;
  }

  .report div .side-bar-logo {
    display: block;
    margin: auto;
    padding: 20px;
  }

  /* .report .products .product-list .product-content .product-title {
    line-height: 30px;
  } */
  .back-button {
    display: none !important;
  }
}

@media (max-width: 768px) {

  /* Small Tablets */
  .heading {
    font-size: 18px;
    line-height: normal;
  }

  .content {
    width: 90%;
  }

  .content .mobile-header {
    padding: 14px 0px;
  }

  .content .mobile-header p {
    font-size: 12px;
  }

  #progress .profile-image {
    width: 120px;
    height: 120px;
  }

  .report {
    padding: 0px 16px 122px 16px;
  }

  .report h1 {
    font-size: 30px;
    padding: 0px 0px 20px 0px;
  }

  .item-section .item-option {
    margin-bottom: 0;
  }

  .report .products h3 {
    font-size: 18px;
    line-height: 1;
    padding: 10px 0px 12px 0 !important;
    margin-top: 10px;
    border-top: 1px dashed var(--border-color);
  }

  .report .testimonial-container h3 {
    font-size: 18px;
    line-height: 24px;
    padding: 20px 0px;
  }

  .report .report-container {
    max-width: 100%;
  }

  .report .report-container h2 {
    font-size: 14px;
    padding: 18px 0px;
  }

  .report-container .chart-container .chart {
    border-width: 1px;
    padding: 20px;
  }

  .report-container .chart-container .score-card .score-percentage .overall-score {
    font-size: 18px;
    padding: 4px 14px;
  }

  .report-container .chart-container .score-card .score-percentage {
    display: block;
    margin-bottom: 6px;
  }

  .report-container .chart-container .score-card .score-percentage .score-Category {
    font-size: 11px;
    padding: 4px 0px;
  }

  .report-container .chart-container .score-card {
    padding: 20px;
  }

  .report-container .chart-container .score-card h6 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .report-container .chart-container .score-card p {
    font-size: 10px;
    line-height: 14px;
  }

  #progressBars {
    margin: 1.6rem 0px;
  }

  .progress-container .score-value {
    font-size: 16px;
    padding: 12px;
  }

  .progress-container .score-label {
    font-size: 10px;
    font-weight: 600;
    padding: 10px 0px;
  }

  .progress-container .gradient-scale {
    width: 80px;
    height: 6px;
    margin: 0px 10px 12px 10px;
  }

  .report .products .product-list {
    border-radius: 15px;
  }

  .circle-labels {
    left: -6px;
    font-size: 14px;
    padding: 0;
    bottom: -4px;
  }

  .product-card p {
    font-size: 10px;
    line-height: 16px;
  }

  .read-more {
    font-size: 10px;
  }
}

@media (max-width: 600px) {
  body {
    background-color: var(--white-color);
  }

  .subheading {
    font-size: 15px;
  }

  .content {
    width: 100%;
    min-height: 100vh;
    padding: 0px 16px 60px 16px;
  }

  .content .mobile-header h1 {
    padding: 14px 0px;
    padding-bottom: 14px;
    font-size: 18px;
  }

  .content .mobile-header img {
    width: 128px;
  }

  .item-section {
    gap: 10px;
    padding: 16px 0px;
  }

  .item-section .item-option {
    height: 100px;
    width: 118px;
  }

  .item-section .item-option img {
    width: 42px;
  }

  .item-option img.select-icon,
  .item-option img.unselect-icon {
    right: -5px;
  }

  .navigation {
    margin: 0px;
    position: fixed;
    bottom: 0px;
    left: 50%;
    right: 0;
    width: 100%;
    transform: translate(-50%, 0px);
    background-color: #fdfdf3;
    border-top: 1px solid var(--border-color);
    z-index: 10;
    padding: 0px 20px;
  }

  .navigation button {
    margin: 7px auto !important;
    padding: 10px;
    width: 100% !important;
    font-size: 18px;
  }

  .report .navigation .navigation-product-price {
    margin: 0;
  }

  .mask {
    height: calc(60% + 6px);
  }

  .capture-options {
    position: fixed;
    bottom: 0;
    left: 50%;
    right: 0;
    width: 100%;
    transform: translate(-50%, 0px);
    background-color: var(--background-color);
    border-top: 1px solid var(--border-color);
  }

  .capture-options button {
    padding: 10px 16px;
    width: 100%;
    margin: 10px;
    font-size: 14px;
  }

  .options {
    margin-top: 6px;
  }

  .option {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .form .user-form label {
    font-size: 14px;
  }

  .form .user-form .checkbox-label {
    margin: 20px 0px;
  }

  .product-card img {
    border-radius: 15px;
  }

  .plus-icon {
    top: 44px;
    box-shadow: inherit;
  }

  .error-messages {
    font-size: 18px;
  }

  .report .logo-container {
    padding: 24px;
  }

  .report div .side-bar-logo {
    width: 138px;
    padding: 0px;
  }

  .report h1 {
    font-size: 18px;
  }

  .report .report-container h2 {
    padding: 4px 0px;
  }

  .report-container .chart-container {
    padding: 14px;
  }

  .report-container .chart-container .chart {
    padding: 0px;
    margin-bottom: 0px;
    width: 50%;
  }

  .report-container .chart-container .score-card {
    padding: 0px 6px 0px 14px;
    width: 50%;
  }

  .report-container .chart-container .score-card .score-percentage {
    margin: 0;
  }

  .report-container .chart-container .score-card h6 {
    font-size: 10px;
  }

  .report .products .product-list {
    display: block;
  }

  .report .products .product-list .product-kit {
    width: 100%;
  }

  .report .products .product-list .product-kit img {
    border-radius: 13.5px;
    margin-bottom: 12px;
    height: auto;
  }

  .face-image {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .score-swiper {
    padding: 0;
  }

  #user-product-container .navigation {
    margin: 0px;
    padding: 0px;
  }

  .card-header {
    font-size: 11px;
    padding: 8px;
  }

  .pack-info {
    font-size: 14px;
  }

  .price {
    font-size: 16px;
    margin: 4px 0;
  }

  .savings {
    font-size: 10px;
  }

  .mrp {
    font-size: 10px;
    margin: 10px 0 4px;
  }

  .texes {
    font-size: 6px;
  }

  .value-badge {
    font-size: 11px;
    padding: 6px 0px;
  }

  .results-badge {
    font-size: 11px;
    padding: 6px 0px;
  }

  .coach-title {
    font-size: 14px;
  }

  .coach-container {
    margin: 0.5rem auto;
  }

  .coach-container-card {
    padding: 10px 20px;
  }

  .coach-subtitle {
    font-size: 12px;
    line-height: 15px;
    padding: 0;
  }

  .call-btn {
    font-size: 10px;
    display: flex;
  }

  .call-btn svg {
    width: 11px;
    height: 11px;
  }

  .call-now p {
    display: none;
  }

  .coach-image {
    min-width: unset;
  }

  .results-banner {
    font-size: 14px;
    padding: 8px;
  }

  .multiplier {
    font-size: 10px;
    width: 20px;
    height: 20px;
  }

  .taxes {
    font-size: 6px;
  }

  .product-image {
    margin: 14px auto 4px auto;
  }

  .product-image img {
    min-width: unset;
    width: 64px;
    border-radius: 8px;
  }

  .multiplier {
    top: -9px;
    right: -9px;
  }

  .pack-info {
    margin: 0px 0;
  }

  .face-image p {
    font-size: 12px;
  }

  .progress-container .progress-indicator {
    width: 11px;
    height: 11px;
    border-width: 3px;
  }

  .report #concern-container .Concern-points ul li {
    font-size: 8px;
  }

  .report #concern-container .Concern-points ul li::before {
    margin-right: 0px;
    width: 8px;
  }

  .report-container .scin-scan-percentage {
    font-size: 14px;
    padding: 8px;
  }

  .price-list {
    padding-top: 2px;
  }

  .price-detail {
    padding: 1.5px;
  }

  .price-detail p {
    font-size: 14px;
  }

  .marker {
    width: 22px;
    height: 22px;
  }

  .report #concern-container .Concern-points ul {
    width: 65%;
  }

  .report #concern-container .concern-img {
    max-width: 35%;
  }
}

@media (max-width: 400px) {
  .report-container .chart-container .score-card .score-percentage .overall-score {
    font-size: 18px;
  }

  #progress .profile-image {
    width: 100px;
    height: 100px;
  }

  .report-container .scin-scan-percentage {
    font-size: 12px;
  }

  .results-banner {
    font-size: 12px;
  }
}

@media (max-width: 340px) {
  .mobile-step-circle {
    min-width: 100px;
  }

  #progress .profile-image {
    width: 90px;
    height: 90px;
  }

  .results-badge {
    font-size: 9px;
  }

  .value-badge {
    font-size: 9px;
  }
}

.skin-age {
  font-size: 20px;
  font-family: 'Futura Hv BT';
  font-style: italic;
  padding-top: 15px;
}

.box-description {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid #e9e9e9;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 15px;
  margin-top: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.box-description p {
  font-weight: 400 !important;
  font-size: 17px;
  font-family: 'Futura Md BT';
}

.box-description h6 {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 20px;
}

.ingredients {
  padding-top: 0.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed var(--border-color);
}

.ingredients h3 {
  border: none !important;
  margin: 0 !important;
  padding-bottom: 11px !important;
}

.ingredients img {
  max-width: 280px;
  border-radius: 8px;
  border: 1px solid #000000;
  width: 100%;
  display: block;
}

.ingredients img {
  max-width: 280px;
  border-radius: 8px;
  border: 1px solid #000000;
}

.ingredients h2 {
  text-align: center;
  padding-bottom: 1rem;
  max-width: 490px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .ingredients p {
    font-size: 10px;
    font-family: 'Futura Md BT';
  }

  .ingredients h2 {
    font-size: 18px;
  }
}

@media (min-width: 769px) {
  .ingredients h3 {
    font-size: 20px !important;
  }
}

/* Accordian CSS  */
.accordion-container {
  background: #fff;
  margin-top: 20px;
}

.accordion-header {
  background: #f1f1f1;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.accordion-header span {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.accordion-content {
  display: none;
  padding: 0;
}

.accordion-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  background: #f1f1f1;
  margin-bottom: 10px;
}

.accordion-header svg {
  transition: transform 0.3s ease;
}

.icon-circle {
  width: 40px;
  /*width: 28px;
  height: 28px;
  background-color: #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;*/
}

.item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.item-number {
  font-weight: bold;
  font-size: 16px;
  background: #000;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-left {
  display: flex;
  flex-direction: column;
}

.item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.item-number {
  font-weight: bold;
  font-size: 16px;
  background: #000;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.item-title {
  font-size: 16px;
  font-weight: bold;
}

.item-desc {
  padding-left: calc(24px + 10px);
  /* match number size + gap */
  font-size: 14px;
  color: #444;
  line-height: 1.4;
}
.item-desc strong {
  font-size: 12px;
}

.see-more-btn {
  display: inline;
  background: none;
  border: none;
  padding: 0;
  margin-left: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--routine-blue, #0d83e3);
  cursor: pointer;
}

.item-image img {
  max-width: 60px;
  height: auto;
  border-radius: 50%;
}

.desktop-banner {
  display: block;
}

.mobile-banner {
  display: none;
}

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

.bundle-container img {
  max-width: 900px;
  margin: 20px auto;
  width: 100%;
}

/*.ingredients img{
  width:300px;
  height: auto;
  margin: 0 auto;
}*/
@media (max-width: 768px) {

  .bundle-container img {
    max-width: 500px;
    margin:  -5px auto 15px auto;
    width: 100%;
  }


  .desktop-banner {
    display: none;
  }

  .mobile-banner {
    display: block;
  }

  .accordion-header {
    font-size: 12px;
    padding: 10px;
    margin-bottom: 5px;
  }

  .box-description h6 {
    font-size: 12px;
  }

  .box-description p {
    font-size: 12px;
  }

  .report #concern-container .Concern-points {
    margin-top: 10px;
  }

  .skin-age {
    font-size: 10px;
  }

  .accordion-item {
    align-items: flex-start;
    padding: 10px;
    gap: 10px;
  }

  .icon-circle {
    width: 30px;
    ;
  }

  .item-title {
    font-size: 10px;
  }

  .item-desc {
    padding-left: calc(20px + 10px);
  }

  .item-number {
    width: 20px;
    font-size: 10px;
    height: 20px;
  }

  .item-header {
    margin-bottom: 0px;
  }

  .item-desc {
    font-size: 9px;
    font-family: 'Futura Md BT';
  }

  .ingredients h2 {
    font-size: 1rem;
  }

}