/** Shopify CDN: Minification failed

Line 3045:1 Expected "}" to go with "{"

**/
.predictive-search {
  display: none;
  position: absolute;
  top: calc(100% + 0.1rem);
  left: -0.1rem;
  border-width: var(--popup-border-width);
  border-style: solid;
  border-color: rgba(var(--color-foreground), var(--popup-border-opacity));
  background-color: rgb(var(--color-background));
  z-index: 3;
  border-bottom-right-radius: var(--popup-corner-radius);
  border-bottom-left-radius: var(--popup-corner-radius);
  box-shadow: var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius)
    rgba(var(--color-shadow), var(--popup-shadow-opacity));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.predictive-search--search-template {
  z-index: 2;
  width: calc(100% + 0.2rem);
}

.predictive-search__results-groups-wrapper {
  display: flex;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  padding-bottom: 1rem;
}

@media screen and (max-width: 749px) {
  .predictive-search--header {
    right: 0;
    left: 0;
    top: 100%;
  }

  .predictive-search__results-groups-wrapper {
    flex-direction: column;
  }

  .predictive-search__results-groups-wrapper:not(.predictive-search__results-groups-wrapper--no-suggestions) {
    /* On mobile, when there are no suggestions the first .predictive-search__results-groups-wrapper
     * is virtually empty due to a display: hidden on the predictive-search__pages-wrapper child.
     * This causes the gap to render and look like a big top margin */
    gap: 2rem;
  }
}

@media screen and (min-width: 750px) {
  .predictive-search {
    border-top: none;
    width: calc(100% + 0.2rem);
  }

  .header predictive-search {
    position: relative;
  }
}

predictive-search[open] .predictive-search,
predictive-search[loading] .predictive-search {
  display: block;
}

.predictive-search__result-group {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 2rem;
}

.predictive-search__result-group:first-child .predictive-search__pages-wrapper {
  display: none;
}

@media screen and (min-width: 750px) {
  .predictive-search__results-groups-wrapper--no-products .predictive-search__result-group:nth-child(2),
  .predictive-search__result-group:last-child .predictive-search__pages-wrapper {
    display: none;
  }
  .predictive-search__result-group:first-child .predictive-search__pages-wrapper {
    display: initial;
  }
  .predictive-search__result-group:first-child {
    flex: 0 0 26.4rem;
  }
  .predictive-search__results-groups-wrapper--no-products .predictive-search__result-group:first-child,
  .predictive-search__result-group:only-child {
    flex-grow: 1;
  }
}

.predictive-search__heading {
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  margin: 0 2rem;
  padding: 1.5rem 0 0.75rem;
  color: rgba(var(--color-foreground), 0.7);
}

predictive-search .spinner {
  width: 1.5rem;
  height: 1.5rem;
  line-height: 0;
}

predictive-search:not([loading]) .predictive-search__loading-state,
predictive-search:not([loading]) .predictive-search-status__loading {
  display: none;
}

predictive-search[loading] .predictive-search__loading-state {
  display: flex;
  justify-content: center;
  padding: 1rem;
}

predictive-search[loading] .predictive-search__search-for-button {
  display: none;
}

predictive-search[loading] .predictive-search__results-groups-wrapper ~ .predictive-search__loading-state {
  display: none;
}

predictive-search[loading] .predictive-search__results-groups-wrapper ~ .predictive-search__search-for-button {
  display: initial;
}

.predictive-search__list-item[aria-selected='true'] > *,
.predictive-search__list-item:hover > *,
.predictive-search__item[aria-selected='true'],
.predictive-search__item:hover {
  color: rgb(var(--color-foreground));
  background-color: rgba(var(--color-foreground), 0.04);
}

.predictive-search__list-item[aria-selected='true'] .predictive-search__item-heading,
.predictive-search__list-item:hover .predictive-search__item-heading {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.predictive-search__item {
  display: flex;
  padding: 1rem 2rem;
  text-align: left;
  text-decoration: none;
  width: 100%;
}

.predictive-search__item--link-with-thumbnail {
  display: grid;
  grid-template-columns: 5rem 1fr;
  grid-column-gap: 2rem;
  grid-template-areas: 'product-image product-content';
}

.predictive-search__item-content {
  grid-area: product-content;
  display: flex;
  flex-direction: column;
}

.predictive-search__item-content--centered {
  justify-content: center;
}

.predictive-search__item-vendor {
  font-size: 0.9rem;
}

.predictive-search__item-heading {
  margin: 0;
}

.predictive-search__item-query-result *:not(mark) {
  font-weight: bolder;
}

.predictive-search__item-query-result mark {
  color: rgba(var(--color-foreground), 0.75);
}

.predictive-search__item-query-result mark {
  background-color: transparent;
}

.predictive-search__item .price {
  color: rgba(var(--color-foreground), 0.7);
  font-size: 1.2rem;
}

.predictive-search__item-vendor + .predictive-search__item-heading,
.predictive-search .price {
  margin-top: 0.5rem;
}

.predictive-search__item--term {
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 2rem;
  word-break: break-all;
  line-height: calc(1 + 0.4 / var(--font-body-scale));
}

@media screen and (min-width: 750px) {
  .predictive-search__item--term {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.predictive-search__item--term .icon-arrow {
  width: calc(var(--font-heading-scale) * 1.4rem);
  height: calc(var(--font-heading-scale) * 1.4rem);
  flex-shrink: 0;
  margin-left: calc(var(--font-heading-scale) * 2rem);
  color: rgb(var(--color-link));
}

.predictive-search__image {
  grid-area: product-image;
  object-fit: contain;
  font-family: 'object-fit: contain';
}

/* Testimonials Strength Section */
.testimonials-strength-section {
    padding: 50px 20px;
    background: linear-gradient(to bottom, #111111 0%, #000 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-strength-title {
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    margin: 0 0 30px 0;
}

.testimonials-strength-subtitle {
    font-size: 21px;
    font-weight: 600;
    color: #787878;
    margin: 0;
    transition: opacity 0.3s ease;
}

.testimonials-strength-name {
    font-size: 40px;
    color: #fff;
    margin: 20px 0;
    transition: opacity 0.3s ease;
}

.testimonials-strength-text {
    font-size: 19px;
    font-weight: bold;
    margin: 0;
    color: #787878;
    transition: opacity 0.3s ease;
}

.testimonials-strength-container {
    margin: 0 auto;
    text-align: left;
    padding: 0 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    height: 650px;
}

.testimonials-strength-slides {
    position: relative;
    width: 100%;
}

.testimonials-strength-slide {
    transition: opacity 0.3s ease;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.testimonials-strength-slide-box {
    background-color: #000;
    border-radius: 18px;
    width: 1200px;
    height: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
}

.testimonials-strength-left-side {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonials-strength-left-side p, 
.testimonials-strength-left-side h2 {
    width: 380px;
    text-align: left;
}

.testimonials-strength-right-side {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonials-strength-image {
    width: 420px;
    height: 289px;
    object-fit: cover;
    border-radius: 18px;
}

.testimonials-strength-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.testimonials-strength-star {
    width: 24px;
    height: 24px;
}

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

.testimonials-strength-dot {
    width: 15px;
    height: 15px;
    background-color: #222222;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonials-strength-dot.testimonials-strength-active {
    background-color: #fff;
}

@media (max-width: 768px) {
    .testimonials-strength-section {
        padding: 30px 20px 40px 20px;
    }
    
    .testimonials-strength-title {
        font-size: 21px;
    }
    
    .testimonials-strength-container {
        padding: 20px 10px;
        height: auto;
    }

    .testimonials-strength-slide-box {
        flex-direction: column;
        height: auto;
        width: 100%;
    }

    .testimonials-strength-left-side, 
    .testimonials-strength-right-side {
        width: 100%;
        padding: 10px;
    }

    .testimonials-strength-left-side p, 
    .testimonials-strength-left-side h2 {
        width: 380px;
        text-align: left;
    }

    .testimonials-strength-image {
        width: 100%;
        height: auto;
        max-width: 370px;
    }

    .testimonials-strength-stars {
        margin-top: 10px;
        justify-content: center;
    }

    .testimonials-strength-dots {
        margin-top: 10px;
    }
}

/* Research Strength Section */
.research-strength-section {
  padding: 75px 0 40px;
  overflow: hidden;
  background-color: #f2f2f2;
  position: relative;
}

.research-strength-title {
  font-size: 58px;
  font-weight: 600;
  color: #000;
  margin: 0 0 50px 0;
  letter-spacing: -.003em;
  text-align: center;
}

.research-strength-title-highlight {
  color: #66a4ee;
}

.research-strength-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.research-strength-cards {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0 115px;
  gap: 25px;
}

.research-strength-cards::-webkit-scrollbar {
  display: none;
}

.research-strength-card {
  flex: 0 0 520px;
  height: 520px;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.research-strength-card:hover {
  transform: scale(1.02)
}

.research-strength-card-image {
  width: 100%;
  height: 520px;
  border-radius: 25px;
  object-fit: cover;
}

.research-strength-card-title {
  position: absolute;
  top: 25px;
  left: 25px;
  margin: 0;
  font-size: 30px;
  color: #000;
  font-weight: 600;
  z-index: 2;
}

.research-strength-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #c8c8c8;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.research-strength-nav:hover {
  background-color: #d6d6d6;
}

.research-strength-nav-left {
  left: 20px;
}

.research-strength-nav-right {
  right: 20px;
}

.research-strength-nav-icon {
  width: 24px;
  height: 24px;
}

.research-strength-container:hover .research-strength-nav-left,
.research-strength-container:hover .research-strength-nav-right {
  display: none;
}

.research-strength-container:hover .research-strength-nav-left[style*="display: block"],
.research-strength-container:hover .research-strength-nav-right[style*="display: block"] {
  display: block;
}

@media (max-width: 768px) {
  .research-strength-section {
    padding: 10px 0;
  }

  .research-strength-cards {
    padding-left: 20px;
  }

  .research-strength-card {
    flex: 0 0 300px;
    height: 350px;
  }

  .research-strength-card-image {
    height: 350px;
  }

  .research-strength-card-title {
    font-size: 18px;
  }

  .research-strength-nav {
    width: 40px;
    height: 40px;
  }

  .research-strength-nav-icon {
    width: 20px;
    height: 20px;
  }
}

/* Testimonial Loop Section */
.testimonials-section {
  background-color: #f2f2f2;
  padding: 50px 0px;
  overflow: hidden;
}

.testimonial-row {
  position: relative;
  display: flex; /* Flex display for horizontal layout */
  overflow: hidden; /* Hide overflow to ensure smooth scroll */
}

.testimonial-track {
  display: flex; /* Flex display for the track to align items horizontally */
  animation: scroll-left 35s linear infinite; /* Animation for scrolling */
}

.top-row .testimonial-track {
  animation-direction: reverse; /* Top row scrolls right to left */
}

.bottom-row .testimonial-track {
  animation-direction: normal; /* Bottom row scrolls left to right */
}

.testimonial-box {
  background-color: #fff;
  border: none;
  border-radius: 25px;
  padding: 20px 25px 0 25px;
  margin: 0 20px 20px 0;
  flex: 0 0 auto;
  width: 280px;
  height: 300px;
  position: relative;
}

.stars {
  color: #FFD700; /* Gold color for stars */
  font-size: 32px; /* Size of the stars */
  text-align: center; /* Center stars */
  margin: 0;
}

.star {
  margin-right: -2px; /* Adjust this value to bring stars closer; negative margin reduces spacing */
}

.review-text {
  font-size: 19px; /* Font size for the review text */
  color: #000; /* Dark grey color for text */
  text-align: left; /* Center align the review text */
  margin: 10px 0 0 0;
}

.reviewer-name {
  font-size: 15px; /* Font size for the reviewer name */
  font-weight: 600;
  color: #6E6E73; /* Lighter grey for the reviewer name */
  position: absolute; /* Position absolutely within the box */
  bottom: 15px; /* Adjusted to fit within button */
  right: 20px; /* Position from right */
  margin: 0;
  background-color: transparent; /* Dark background for button */
  pointer-events: none; /* Makes the button unclickable */
  text-align: center; /* Center text within button */
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-track {
  animation: scroll-left 30s linear infinite; /* Slower scrolling animation with 30 seconds duration */
}

@media only screen and (max-width: 768px) {
  .loop-reviews-section {
    padding: 30px 0 0 0;
  }
  
  .testimonials-section {
    padding: 10px 0 0 15px !important;
  }
  
  .title-loop-section {
    font-size: 21px;
  }

  .testimonial-box {
    height: 270px !important;
    width: 233px !important;
    margin-right: 15px !important;
  }

  .review-text {
    font-size: 17px !important;
  }
}

/* Transformation Section */
.transformation-section {
  background: linear-gradient(to bottom, #fff, #f2f2f2);
  padding: 75px 0 30px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.transformation-title {
  font-size: 58px;
  margin: 0 0 50px 0;
  color: #000;
  font-weight: 600;
  letter-spacing: -.003em;
}

.transformation-highlight {
  color: #66a4ee;
}

.transformation-images-container {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 80px;
  margin: 0 auto;
  scrollbar-width: none; /* Remove scrollbar for Firefox */
}

.transformation-images-container::-webkit-scrollbar {
  display: none; /* Remove scrollbar for Chrome/Safari */
}

.transformation-image-box {
  text-align: center;
  width: 380px;
  flex: none;
  position: relative;
}

.transformation-image-box:first-child {
  margin-left: 0;
}

.transformation-image-box:last-child {
  margin-right: 0;
}

.transformation-image {
  width: 100%;
  height: 360px;
  display: block;
  margin: 0 auto;
  border-radius: 25px;
  object-fit: cover;
}

.transformation-text-box {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin: 25px 0 0 0;
  width: 100%;
  z-index: 2;
  box-shadow: none;
}

.transformation-text {
  font-size: 17px;
  color: #fff;
  text-align: left;
  width: 90%;
}

.transformation-text p {
  margin: 0;
  display: inline;
}

.transformation-nav-button {
  position: absolute;
  top: 66%;
  transform: translateY(-50%);
  background-color: #c8c8c8;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.transformation-nav-left {
  left: 20px;
}

.transformation-nav-right {
  right: 20px;
}

.transformation-nav-icon {
  width: 24px;
  height: 24px;
}

.transformation-nav-button:hover {
  background-color: #d6d6d6;
}

@media only screen and (max-width: 768px) {
  .transformation-section {
    padding: 48px 0 35px 0;
  }

  .transformation-title {
    font-size: 21px;
  }

  .transformation-image {
    height: 304px;
    width: 100%;
  }

  .transformation-image-box {
    width: 304px;
    height: 360px;
  }

  .transformation-image-box:first-child {
    margin-left: 12px;
  }

  .transformation-image-box:last-child {
    margin-right: 12px;
  }

  .transformation-images-container {
    padding: 0 10px 40px 7px;
  }

  .transformation-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .transformation-nav-button {
    width: 36px;
    height: 36px;
  }

  .transformation-nav-icon {
    width: 18px;
    height: 18px;
  }
}

/* Feedback Home Section */
.feedback-home-wrapper {
  background-color: #fff;
  padding: 12px 0;
}

.feedback-home-section {
  padding: 60px 0 0 0;
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 640px;
}

.feedback-home-title {
  font-size: 56px;
  font-weight: 600;
  background: linear-gradient(to right, #36a5f5, #c16eff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  letter-spacing: -.003em;
  text-align: center;
  margin: 0;
}

.feedback-home-subtitle {
  font-size: 28px;
  color: #000;
  text-align: center;
  margin: 0 0 23px;
}

.feedback-home-buttons-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
}

.feedback-home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #0071E3;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 17.5px;
  height: 42.6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.feedback-home-button:hover {
  background-color: #288aee;
}

.feedback-home-button-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: transparent;
  color: #0071e3;
  border: 1px solid #0071e3;
  border-radius: 30px;
  font-size: 17.5px;
  height: 42.6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.feedback-home-button-buy:hover {
  background-color: #0071e3;
  border: 1px solid #0071e3;
  color: #fff;
}

.feedback-home-image-container {
  width: 530px;
  height: 371px;
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feedback-home-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
  .feedback-home-section {
    padding: 40px 10px;
    min-height: 600px;
  }

  .feedback-home-title {
    font-size: 21px;
    margin-bottom: 15px;
  }

  .feedback-home-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .feedback-home-buttons-container {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .feedback-home-button {
    width: 160px;
    height: 50px;
    font-size: 16px;
  }

  .feedback-home-button-buy {
    width: 160px;
    height: 50px;
    font-size: 16px;
  }

  .feedback-home-image-container {
    width: 90%;
    max-width: 400px;
    height: 400px;
  }
}

/* Database Home Section */
.database-home-wrapper {
  background-color: #fff;
  padding: 0 0 12px 0;
}

.database-home-section {
  padding: 60px 0 0 0;
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 640px;
}

.database-home-title {
  font-size: 56px;
  font-weight: 600;
  background: linear-gradient(to right, #ff7272, #ff9257);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  letter-spacing: -.003em;
  line-height: 1.2;
  margin: 0;
}

.database-home-subtitle {
  font-size: 28px;
  color: #000;
  text-align: center;
  margin: 0 0 23px;
}

.database-home-buttons-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
}

.database-home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #0071E3;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 17.5px;
  height: 42.6px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.database-home-button:hover {
  background-color: #288aee;
}

.database-home-button-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: transparent;
  color: #0071e3;
  border: 1px solid #0071e3;
  border-radius: 30px;
  font-size: 17.5px;
  height: 42.6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.database-home-button-buy:hover {
  border: 1px solid #0071e3;
  color: #fff;
  background-color: #0071e3;
}

.database-home-image-container {
  width: 530px;
  height: 371px;
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.database-home-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
  .database-home-section {
    padding: 40px 10px;
    min-height: 600px;
  }

  .database-home-title {
    font-size: 21px;
    margin-bottom: 15px;
  }

  .database-home-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .database-home-buttons-container {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .database-home-button {
    width: 160px;
    height: 50px;
    font-size: 16px;
  }

  .database-home-button-secondary {
    width: 160px;
    height: 50px;
    font-size: 16px;
  }

  .database-home-image-container {
    width: 90%;
    max-width: 400px;
    height: 400px;
  }
}

/* Feedback Present CSS styles */
.feedback-present-section {
  background-color: #fff;
  padding: 70px 0 30px;
}

.feedback-present-container {
  width: 1300px;
  height: 625px;
  margin: 0 auto;
  display: flex;
}

.feedback-present-left, .feedback-present-right {
  width: 50%;
  height: 100%;
}

.feedback-present-left {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.feedback-present-content {
  width: 410px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.feedback-present-title {
  font-size: 40px;
  color: #000;
  line-height: 1.3;
  margin: 0 0 23px 0;
}

.feedback-present-text {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  color: #6E6E73;
}

.feedback-present-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0071E3;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer !important;
  font-size: 17.5px;
  margin: 35px 0 0 120px; /* Adjusted to align with feedback-present-text */
  height: 42.6px;
  text-align: center;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.feedback-present-button:hover {
  background-color: #288aee;
}

.feedback-present-timer {
  color: #6e6e73;
  font-size: 18px;
  font-weight: 600;
  margin: 35px 0 0 120px;
  background: linear-gradient(to right, #1d1d1f 50%, #6e6e73 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fillText 10s linear forwards;
  align-self: flex-start;
  cursor: pointer; /* Indicate clickability */
}

@keyframes fillText {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0% 0;
  }
}

.feedback-present-right {
  width: 625px;
  height: 625px;
  position: relative;
  overflow: hidden;
}

.phone-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.feedback-present-screen {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.feedback-present-case {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  z-index: 1; /* Keeps the phone case on top */
}

/* Database Present CSS styles */
.database-present-section {
  background: linear-gradient(to bottom, #fff, #f2f2f2);
  padding: 60px 0 40px;
}

.database-present-container {
  width: 1300px;
  height: 625px;
  margin: 0 auto;
  display: flex;
}

.database-present-left, .database-present-right {
  width: 50%;
  height: 100%;
}

.database-present-left {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.database-present-content {
  width: 410px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.database-present-title {
  font-size: 40px;
  color: #000;
  line-height: 1.3;
  margin: 0 0 23px 0;
}

.database-present-text {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  color: #6E6E73;
}

.database-present-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0071E3;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer !important;
  font-size: 17.5px;
  margin: 35px 0 0 120px; /* Adjusted to align with database-present-text */
  height: 42.6px;
  text-align: center;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.database-present-button:hover {
  background-color: #288aee;
}

.database-present-timer {
  color: #6e6e73;
  font-size: 18px;
  font-weight: 600;
  margin: 35px 0 0 120px;
  background: linear-gradient(to right, #1d1d1f 50%, #6e6e73 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fillText 10s linear forwards;
  align-self: flex-start;
  cursor: pointer; /* Indicate clickability */
}

@keyframes fillText {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0% 0;
  }
}

.database-present-right {
  width: 625px;
  height: 625px;
  position: relative;
  overflow: hidden;
}

.phone-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.database-present-screen {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.database-present-case {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  z-index: 1; /* Keeps the phone case on top */
}

/* Feedback Chat CSS Styles */
.feedback-chat-section {
  padding: 55px 0 60px;
  background: linear-gradient(to bottom, #111111, #000);
  margin-top: 74.5px; /* Matches header height to prevent overlap */
}

.feedback-chat-big-container {
  background-color: #000;
  border-radius: 25px;
  height: 625px;
  width: 1300px;
  display: flex;
  margin: 0 auto;
}

.feedback-chat-left {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feedback-chat-right {
  width: 625px;
  height: 625px;
}

.feedback-chat-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.feedback-chat-content {
  text-align: left;
  padding: 0;
  width: 410px;
}

.feedback-chat-title {
  font-size: 40px;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 23px 0;
}

.feedback-chat-text {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #6E6E73;
}

.feedback-chat-action-button {
  padding: 10px 20px;
  background-color: #0071E3;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 17.5px;
  height: 42.6px;
  margin: 35px 0 0 0;
  display: inline-flex;
  text-align: center;
  justify-content: center;
  position: relative;
  align-items: center;
  transition: background-color 0.3s ease;
}

.feedback-chat-action-button:hover {
  background-color: #288aee;
}

/* Feedback Upload CSS Styles */
.feedback-upload-section {
  padding: 70px 0;
  background-color: #000;
  display: flex;
}

.feedback-upload-left {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feedback-upload-right {
  width: 625px;
  height: 625px;
}

.feedback-upload-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.feedback-upload-content {
  text-align: left;
  padding: 0;
  width: 410px;
}

.feedback-upload-title {
  font-size: 40px;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 23px 0;
}

.feedback-upload-text {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #6E6E73;
}

.feedback-upload-action-button {
  padding: 10px 20px;
  background-color: #0071E3;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 17.5px;
  height: 42.6px;
  margin: 35px 0 0 0;
  display: inline-flex;
  text-align: center;
  justify-content: center;
  position: relative;
  align-items: center;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.feedback-upload-action-button:hover {
  background-color: #288aee;
}

/* Meet Team Section */
.meet-team-section {
  padding: 60px 0;
  overflow: hidden;
  background: linear-gradient(to top, #fff, #f2f2f2);
  position: relative;
}

.meet-team-title {
  font-size: 58px;
  font-weight: 600;
  color: #000;
  margin: 0 0 50px 0;
  letter-spacing: -.003em;
  text-align: center;
}

.meet-team-title-highlight {
  color: #66a4ee;
}

.meet-team-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.meet-team-cards {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0 115px;
  gap: 25px;
}

.meet-team-cards::-webkit-scrollbar {
  display: none;
}

.meet-team-card {
  flex: 0 0 520px;
  height: 520px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.meet-team-card-image {
  width: 100%;
  height: 520px;
  border-radius: 25px;
  object-fit: cover;
}

.meet-team-card-title {
  position: absolute;
  top: 25px;
  left: 25px;
  margin: 0;
  padding: 0;
  font-size: 30px;
  color: #000;
  font-weight: 600;
  z-index: 2;
}

.meet-team-nav {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  background-color: #c8c8c8;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.meet-team-nav:hover {
  background-color: #d6d6d6;
}

.meet-team-nav-left {
  left: 20px;
}

.meet-team-nav-right {
  right: 20px;
}

.meet-team-nav-icon {
  width: 24px;
  height: 24px;
}

.meet-team-container:hover .meet-team-nav-left,
.meet-team-container:hover .meet-team-nav-right {
  display: none;
}

.meet-team-container:hover .meet-team-nav-left[style*="display: block"],
.meet-team-container:hover .meet-team-nav-right[style*="display: block"] {
  display: block;
}

@media (max-width: 768px) {
  .meet-team-section {
    padding: 10px 0;
  }

  .meet-team-cards {
    padding-left: 20px;
  }

  .meet-team-card {
    flex: 0 0 300px;
    height: 350px;
  }

  .meet-team-card-image {
    height: 350px;
  }

  .meet-team-card-title {
    font-size: 18px;
  }

  .meet-team-card-subtitle {
    font-size: 14px;
    top: 40px;
  }

  .meet-team-nav {
    width: 40px;
    height: 40px;
  }

  .meet-team-nav-icon {
    width: 20px;
    height: 20px;
  }
}

/* Meal Cards CSS */
.meal-cards-section {
    background-color: #000;
    padding: 70px 0 40px;
    text-align: center;
}

.meal-cards-header {
    margin-bottom: 20px;
}

.meal-cards-title {
    font-size: 56px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -.003em;
    margin: 0;
}

.meal-cards-subtitle {
    font-size: 28px;
    color: #fff;
    margin: 0 0 23px;
}

.meal-cards-container {
    position: relative;
    width: 1250px;
    height: 930px;
    margin: 0 auto;
    background-color: #151515;
    border-radius: 25px;
    overflow: hidden;
}

.meal-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 330px);
    grid-template-rows: repeat(2, 330px);
    gap: 25px;
    justify-content: center;
    align-content: center;
    height: 930px;
    padding: 20px;
}

.meal-cards-card {
    width: 330px;
    height: 330px;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
}

.meal-cards-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meal-cards-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.meal-cards-button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: none;
    background-color: #fff;
    cursor: pointer;
    transition: opacity 0.3s, background-color 0.3s;
}

.meal-cards-button.active {
    opacity: 1;
}

.meal-cards-button:not(.active) {
    opacity: 0.2;
}

.meal-cards-button:hover {
    background-color: #f5f5f5;
}

/* Strength Library Section */
.strength-library-section {
  padding: 60px 0;
  background-color: #f2f2f2;
}

.strength-library-main-title {
  font-size: 58px;
  color: #000;
  text-align: center;
  margin: 0;
  line-height: 1.2;
  font-weight: 600;
}

.strength-library-subtitle {
  font-size: 28px;
  color: #000;
  text-align: center;
  margin: 0 0 40px;
}

.strength-library-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 35px;
  align-items: flex-start;
  justify-content: center;
}

.strength-library-main-video {
  width: 73%;
}

.strength-library-video-player {
  width: 100%;
  aspect-ratio: 1920 / 1088;
  border-radius: 25px;
  border: none;
  background-color: #000;
}

.strength-library-playlist-buttons {
  overflow-y: auto;
  border-radius: 0;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
}

.strength-library-playlist-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.strength-library-playlist-button {
  display: flex;
  align-items: center;
  padding: 0 25px;
  border-radius: 30px;
  background-color: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  height: 50px;
  width: fit-content;
  color: #000;
}

.strength-library-playlist-button:hover {
  border: 1px solid #343434;
}

.strength-library-playlist-button.active {
  background-color: #1d1d1f;
  color: #fff;
  border: none;
}

.strength-library-playlist-button.active:hover {
  border: none;
}

.strength-library-item-title {
  font-size: 17px;
  margin: 0;
  font-weight: normal;
}

.strength-library-playlist-button.active .strength-library-item-title {
  color: #fff;
  font-weight: 600;
}

.default-icon {
  width: 21px;
  height: 21px;
  margin-right: 10px;
  display: block;
}

.active-icon {
  width: 21px;
  height: 21px;
  margin-right: 10px;
  display: none;
}

.strength-library-playlist-button.active .default-icon {
  display: none;
}

.strength-library-playlist-button.active .active-icon {
  display: block;
}

.strength-library-action-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: #1d1d1f;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.strength-library-action-button:hover {
  background-color: #393939;
}

.strength-library-action-icon {
  width: 21px;
  height: 21px;
}

.strength-library-playlist-buttons::-webkit-scrollbar {
  display: none;
}

.strength-library-playlist-buttons::-webkit-scrollbar-thumb {
  display: none;
}

.strength-library-playlist-buttons::-webkit-scrollbar-track {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .strength-library-section {
    padding: 40px 10px;
  }

  .strength-library-main-title {
    font-size: 21px;
    margin-bottom: 10px;
  }

  .strength-library-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .strength-library-container {
    flex-direction: column;
    gap: 15px;
  }

  .strength-library-main-video {
    width: 100%;
  }

  .strength-library-video-player {
    max-height: 300px;
  }

  .strength-library-playlist-buttons {
    width: 100%;
    height: 400px;
    padding: 12px;
  }

  .strength-library-playlist-item {
    gap: 8px;
  }

  .strength-library-playlist-button {
    padding: 0 8px;
    height: 50px;
    border-radius: 25px;
    width: fit-content;
    min-width: 120px;
  }

  .strength-library-item-title {
    font-size: 15px;
  }

  .default-icon,
  .active-icon,
  .strength-library-action-icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
  }

  .strength-library-action-button {
    width: 50px;
    height: 50px;
    border-radius: 25px;
  }
}

/* Exercise Library Section */
.exercise-library-section {
  padding: 60px 0;
  background-color: #f2f2f2;
}

.exercise-library-main-title {
  font-size: 58px;
  text-align: center;
  margin: 0;
  color: #000;
  line-height: 1.2;
  font-weight: 600;
}

.exercise-library-subtitle {
  font-size: 28px;
  color: #000;
  text-align: center;
  margin: 0 0 40px;
}

.exercise-library-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 35px;
  align-items: flex-start;
  justify-content: center;
}

.exercise-library-main-video {
  width: 73%;
}

.exercise-library-video-player {
  width: 100%;
  aspect-ratio: 1920 / 1088;
  border-radius: 25px;
  border: none;
  background-color: #000;
}

.exercise-library-playlist-wrapper {
  height: 512px;
  overflow-y: auto;
}

.exercise-library-playlist-buttons {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 10px;
}

.exercise-library-playlist-button {
  display: flex;
  align-items: center;
  padding: 0 25px;
  background-color: transparent;
  color: #000;
  border: 1px solid transparent;
  cursor: pointer;
  height: 50px;
  width: fit-content;
  border-radius: 30px;
}

.exercise-library-playlist-button:hover {
  border: 1px solid #343434;
}

.exercise-library-playlist-button.active {
  background-color: #1d1d1f;
  color: #fff;
  border: none;
}

.exercise-library-divider-button {
  display: flex;
  align-items: center;
  padding: 20px 15px;
  background-color: transparent;
  color: #000;
  border: none;
  font-size: 19px;
  font-weight: 600;
  cursor: default;
  text-align: left;
  width: 100%;
}

.exercise-library-icon {
  width: 20px;
  height: 20px;
  margin-right: 25px;
}

.exercise-library-playlist-button.active .exercise-library-icon {
  content: url('/cdn/shop/files/play-icon-active.png');
}

.exercise-library-item-title {
  font-size: 17px;
  margin: 0;
  color: #000;
  font-weight: normal;
}

.exercise-library-playlist-button.active .exercise-library-item-title {
  color: #fff;
}

.exercise-library-playlist-wrapper::-webkit-scrollbar {
  width: 10px;
}

.exercise-library-playlist-wrapper::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 4px;
}

.exercise-library-playlist-wrapper::-webkit-scrollbar-track {
  background-color: #cfcfcf;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .exercise-library-section {
    padding: 40px 10px;
  }

  .exercise-library-main-title {
    font-size: 21px;
    margin-bottom: 10px;
  }

  .exercise-library-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .exercise-library-container {
    flex-direction: column;
    gap: 15px;
  }

  .exercise-library-main-video {
    width: 100%;
  }

  .exercise-library-video-player {
    max-height: 300px;
  }

  .exercise-library-playlist-wrapper {
    width: 100%;
    height: 400px;
  }

  .exercise-library-playlist-button {
    padding: 0 8px;
    height: 40px;
    border-radius: 20px;
  }

  .exercise-library-playlist-button:hover {
    padding: 0 6px;
  }

  .exercise-library-playlist-button.active {
    padding: 0 8px;
  }

  .exercise-library-divider-button {
    padding: 8px;
    font-size: 14px;
  }

  .exercise-library-item-title {
    font-size: 15px;
  }

  .exercise-library-icon {
    width: 16px;
    height: 16px;
    margin-right: 15px;
  }
}

/* Popup styles for meal planner */
.nutrition-info-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.nutrition-proof-popup-content {
    background-color: #fff;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    max-width: 680px;
    position: relative;
}

.nutrition-proof-popup-close {
    position: absolute;
    top: 6px;
    right: 12px;
    background: none;
    border: none;
    font-size: 34px;
    color: #333;
    cursor: pointer;
    font-weight: 600;
    padding: 0;
    transition: color 0.3s ease;
}

.nutrition-proof-popup-close:hover {
    color: #000;
}

.nutrition-proof-popup-title {
    margin: 0 0 25px;
    font-size: 25px;
    color: #111111;
    font-weight: 600;
}

.nutrition-proof-popup-text {
    margin: 5px 0;
    font-size: 17px;
    color: #787878;
}

.nutrition-proof-popup-button {
    display: inline-flex;
    text-align: center;
    justify-content: center;
    position: relative;
    padding: 5px 15px;
    color: white;
    align-items: center;
    width: 190px;
    height: 50px;
    border: none;
    margin-top: 25px;
    cursor: pointer;
    border-radius: 25px;
    background-color: #212121;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s ease;
}

.nutrition-proof-popup-button:hover {
    background-color: #b9b9b9;
}

.nutrition-proof-popup-button img {
   height: 21px;
   width: 21px;
   object-fit: contain;
   margin: 0 10px 0 0;
}

/* Workout Tracker Section */
.workout-tracker-section {
  padding: 60px 0 0 0;
  background-color: #111111;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 640px;
}

.workout-tracker-content {
  transition: opacity 0.5s ease;
}

.workout-tracker-title {
  font-size: 56px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.003em;
  text-align: center;
  margin: 0;
}

.workout-tracker-subtitle {
  font-size: 28px;
  color: #fff;
  text-align: center;
  margin: 0 0 23px;
}

.workout-tracker-buttons-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
}

.workout-tracker-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: transparent;
  color: #0071e3;
  border: 1px solid #0071e3;
  border-radius: 30px;
  font-size: 17.5px;
  height: 42.6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.workout-tracker-button:hover {
  background-color: #0071e3;
  border: 1px solid #0071e3;
  color: #fff;
}

.workout-tracker-button-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #0071E3;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 17.5px;
  height: 42.6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.workout-tracker-button-buy:hover {
  background-color: #288aee;
}

.workout-tracker-image-container {
  width: 530px;
  height: 371px;
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.workout-tracker-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.workout-tracker-content.fading,
.workout-tracker-image.fading {
  opacity: 0;
}

/* Custom Header On Delivery Page CSS */
.custom-header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 74.5px;
  width: 100%;
  padding: 0 165px;
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}

.custom-header.header-visible {
  transform: translateY(0);
}

.custom-header.header-hidden {
  transform: translateY(-100%);
}

.custom-header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-header-logo img {
  max-height: 39px;
  vertical-align: middle;
}

.custom-header-account {
  position: absolute;
  right: 165px;
  display: flex;
  align-items: center;
}

.custom-header-account img {
  height: 18px;
  width: 18px;
}

.custom-header-account-btn {
  padding: 10px 20px;
  border: 1px solid #fff;
  border-radius: 25px;
  background-color: #000;
  color: #fff;
  height: 42.5px;
  font-size: 17.5px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-header-account-btn:hover {
  background-color: #fff;
  color: #1d1d1f;
}

.custom-header-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #222222;
  border: none;
  padding: 15px;
  width: 150px;
  border-radius: 15px;
  z-index: 10;
}

.custom-header-dropdown a {
  display: block;
  padding: 5px 0;
  color: #fff;
  text-decoration: none;
}

/* Featured Product Section Adjustments */
.featured-product-section {
  position: relative; /* Allows for absolute positioning within */
  overflow: hidden; /* Ensures no overflow content is shown */
}

.product__media.no-padding {
  margin: 0; /* Removes any margin */
  padding: 0; /* Removes any padding */
  width: 100%; /* Full width to touch the left and right edges */
  height: 100%; /* Full height to touch the top and bottom edges */
  display: flex; /* Ensures media fills the container */
  justify-content: center; /* Center the content horizontally */
  align-items: center; /* Center the content vertically */
}

.product__media.no-padding img, .product__media.no-padding video {
  object-fit: cover; /* Ensures the media covers the entire area without stretching */
  width: 100%; /* Full width */
  height: 100%; /* Full height */
}

/* Program Comparison Section */
.program-comparison-section {
  background-color: #111111;
  padding: 40px 0 60px 0;
  text-align: center;
}

.program-comparison-title {
  font-size: 50px;
  margin: 0 0 40px 0;
  color: #fff;
  font-weight: 600;
}

.program-comparison-big-container {
  background-color: #000000;
  width: 1200px;
  height: 1330px;
  border-radius: 25px;
  margin: 0 auto;
  padding: 70px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.program-comparison-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  width: 100%;
}

.program-comparison-rectangular-container {
  background-color: #000;
  width: 500px;
  height: 1200px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.program-comparison-image {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 15px;
}

.program-comparison-main-title-left,
.program-comparison-main-title {
  font-size: 28px;
  color: #fff;
  margin: 30px 0 0 0;
}

.program-comparison-features-title-left,
.program-comparison-features-title {
  font-size: 21px;
  color: #fff;
  margin: 30px 0;
}

.subscription-plan-select {
  background-color: #0071e3;
  padding: 10px 20px;
  color: #fff;
  height: 44px;
  font-size: 17.5px;
  border-radius: 22px;
  border: none;
  margin: 0 0 20px 0;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.subscription-plan-select:hover {
  background-color: #288aee;
}

.program-comparison-divider-line {
  width: 75%; /* Fixed width relative to rectangular container */
  height: 1px;
  background-color: #6e6e73;
  opacity: 0.65;
  border: none;
  border-radius: 1px;
  margin: 15px auto;
}

.program-comparison-features,
.program-comparison-features-left {
  margin: 0;
  padding: 0;
  width: 100%;
}

.program-comparison-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}

.program-comparison-feature-icon {
  width: 19px;
  height: 19px;
  margin-bottom: 5px;
}

.program-comparison-features p,
.program-comparison-features-left p {
  font-size: 15px;
  color: #fff;
  margin: 13px 0 0 0;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .program-comparison-section {
    display: none;
  }
}

/* Guarantees Section CSS */
.guarantees-section {
  background-color: #111111;
  padding: 60px 0;
  text-align: center;
}

.guarantees-title {
  color: #ffffff;
  font-size: 50px;
  font-weight: bold;
  margin: 0 0 40px 0;
}

.guarantees-highlight {
  color: #2997ff;
}

.guarantees-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.guarantees-card {
  background-color: #000;
  width: 380px;
  height: 350px;
  padding: 30px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.guarantees-card:hover {
  transform: scale(1.02);
}

.guarantees-small-text-top {
  color: #6e6e73;
  font-size: 21px;
  font-weight: 600;
  max-width: 220px;
  line-height: 1.2;
  letter-spacing: .01em;
  margin: 0;
}

.guarantees-large-text {
  color: #fff;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.08;
  max-width: 220px;
  margin: 21px 0;
}

.guarantees-small-text-bottom {
  color: #6e6e73;
  font-size: 21px;
  font-weight: 600;
  max-width: 220px;
  line-height: 1.2;
  letter-spacing: .01em;
  margin: 0;
}

@media (max-width: 768px) {
  .guarantees-cards {
    flex-direction: column;
    align-items: center;
  }

  .guarantees-card {
    width: 100%;
    max-width: 300px;
  }
}

/* Featured Product */
.featured-product-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.featured-product__media {
  max-width: 50%;
  flex: 1;
}

.featured-product__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
  text-align: left;
}

.featured-product__title,
.featured-product__price,
.featured-product__buttons {
  margin-bottom: 10px;
}

.product-description-box {
  padding: 20px 20px 15px 25px;
  text-align: left;
  background-color: transparent;
  color: #111111;
  position: relative;
  border-radius: 0;
}

.product-description-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  border-right: 1px solid rgba(153, 153, 153, 0.5);
  border-top: 1px solid rgba(153, 153, 153, 0.5);
  z-index: 1;
}

.product-description-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 45px;
  border-left: 1px solid rgba(153, 153, 153, 0.5);
  border-bottom: 1px solid rgba(153, 153, 153, 0.5);
  z-index: 1;
}

.included-section {
  margin-top: 25px;
}

.included-title {
  font-size: 19px;
  color: #111111;
  margin-bottom: 10px;
  text-align: left;
  text-decoration: underline;
}

.included-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.included-item {
  margin-bottom: 10px;
  font-size: 16px;
  text-align: left;
  transition: opacity 0.3s ease;
  color: #787878; /* Default description color */
  padding-left: 5px; /* Space for the icon */
  position: relative;
}

.included-item::before {
  content: '';
  display: inline-block;
  width: 19px;
  height: 19px;
  background: url('/cdn/shop/files/checkmark_icon_new.png?v=1743578096') no-repeat center;
  background-size: contain;
  margin: 0 8px 0 0;
}

.included-item .item-name {
  color: #fff; /* Item name color */
  display: inline; /* Keep it inline with the description */
}

.toggle-included-btn {
  display: block;
  margin: 15px auto 0;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.toggle-included-btn .toggle-icon {
  width: 20px; /* Adjust based on your icon size */
  height: 20px;
  vertical-align: middle;
}

.guarantee-text {
  text-align: center;
  color: #fff;
  font-size: 16px;
  margin-top: 20px;
  font-style: italic;
}

.template-page-program-content-sections .section-header,
.template-page-program-content-sections .header-wrapper,
.template-page-program-content-sections header {
  display: none !important;
}

/* Some Magic to show 3 images on product page */
.small-media-containers {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.small-media-container {
  width: 320px;  /* Adjust width */
  object-fit: cover;  /* Adjust as needed for 2 images to fit */
  border: none;
}

.small-media-container img {
  width: 100%; /* Make images fill the containers */
  object-fit: cover;
}

@media (max-width: 768px) {
  .product-media-desktop {
    display: none;
  }

  .product-media-mobile {
   position: relative;
   overflow: hidden;
   width: 100%;
   max-width: 400px; /* Adjust as needed */
   margin: auto;
  }

  .product-media-mobile img {
   width: 100%;
   height: auto;
   object-fit: contain; /* Ensures the full image is visible */
  }
  
  .product-media-container {
    width: 100%; /* Full width on mobile */
    height: 350px; /* Adjusted height */
  }

  .product__media-item {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    width: 300%; /* Make all 3 images sit side by side */
  }

  .product__media-item img {
    flex: 1 0 auto; /* Make images responsive */
  }

  .small-media-containers {
    display: none;
  }

  .stars-product {
    font-size: 27px !important;
  }

  .reviews-count {
    margin: 5px 0 0 7px !important;
    font-size: 17px !important;
  }

  .included-title {
    margin: 7px 0 12px 15px;
  }
}

@media (min-width: 769px) {
  .carousel-indicators {
    display: none;
  }

  .indicator-button {
    display: none;
  }

  .product-media-mobile {
    display: none;
  }
}

.small-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-media-container img {
  width: 500px;
  height: 100%;
  object-fit: cover;
}

.product-media-slider {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.product-media-slide {
  min-width: 100%;
  transition: opacity 0.3s ease-in-out;
}

.product-media-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.indicator-button {
  width: 9px;
  height: 12px;
  margin: 4px 0 0 0;
  border: none;
  background-color: #989898;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.indicator-button.active {
  background-color: #111111;
}

/* Product */
.hero-text-title {
  font-size: 17px;
  margin: 0 0 7px 0;
  color: #fff;
}

.featured-product__buttons {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

.featured-product__rating-custom {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 15px auto !important; /* Adjusted margin */
  align-items: center;
}

.stars-product {
    color: #FFD700;
    font-size: 33px;
}

.reviews-count {
    margin: 5px 0 2px 7px;
    color: #fff;
    font-size: 18px;
}

.product-container {
    display: flex;
    flex-direction: column; /* Ensures title and media stack vertically */
}

@media only screen and (max-width: 768px) {
  .product__title {
    font-size: 22px !important;
    margin: 15px 0 5px 0 !important;
  }
  
  .price { 
    font-size: 21px !important;
  }
}

/* Default product */
.product__media-wrapper {
  border-radius: 10px;
  border: none;
  overflow: hidden;
  max-width: 60%; /* Increased from default */
}

/* Account Text */
.account-text {
    display: inline-block;
    margin-right: 6px;
    margin-top: 13px;
    font-size: 14px;
    color: #333;
}

@media only screen and (max-width: 768px) {
    .account-text {
        display: none !important;
    }
}

/* Resize Logo On Mobile */
@media only screen and (max-width: 768px) {
  .header__heading-logo {
    width: 60px;
    height: auto;
    max-width: 100%;
  }

/* Account Icon on mobile */
@media only screen and (max-width: 768px) {
    .header__icon--account {
        display: block !important;
        font-size: 18px; /* Adjust the icon size */
        position: absolute; /* You can adjust the position if needed */
        top: 7px;
        right: 17px;
    }
}

@media (max-width: 768px) {
  .banner__media img {
    width: 100% !important;  /* Ensures it takes the full width */
    object-fit: cover; /* Prevents stretching */
  }
}