@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
}

.hero-section {
  background: url("images/hero-bg.avif") center center / cover no-repeat;
  padding: 100px 0;
  color: #000;
  text-align: left;
  background-position: 50% 15%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  z-index: 1;
  position: relative;
}

.hero-text h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.3;
}

.hero-text h1 span {
  display: block;
  margin-top: 10px;
}

.hero-text p {
  margin-top: 20px;
  font-size: 1rem;
}

.hero-btn {
  margin-top: 25px;
  padding: 12px 40px;
  background-color: #333;
  color: #fff;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  text-align: center;
  max-width: fit-content;
}

.hero-btn.hero-btn-white {
  background-color: #fff;
  color: #000;
}

.hero-btn.hero-btn-white:hover {
  background-color: #dadada;
}

.hero-btn:hover {
  background-color: #555;
}

.hero-slider .slick-slide {
  display: flex;
  justify-content: center;
}

.balance-loss-section {
  padding: 80px 0;
  background-color: #fff;
}

.balance-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.balance-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.balance-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 30px;
}

.balance-test-highlight {
  background-image: url("images/balancetest-bg.avif");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 50px;
}

.balance-highlight-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.balance-highlight-text h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.balance-highlight-text ul {
  padding-left: 20px;
  margin-bottom: 30px;
}

.balance-highlight-text ul li {
  list-style: disc;
  margin-bottom: 8px;
  font-size: 1rem;
}

.button-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-btn.outline {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.hero-btn.outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.balance-stats-bar {
  background-color: #0e6578;
  padding: 30px 0;
  text-align: center;
  color: #fff;
  margin-top: 50px;
}

.balance-stats-bar p {
  margin: 0;
  font-size: 32px;
  font-weight: 500;
}

.balanceoil-section {
  margin: 50px 0;
}

.premier-offer-section {
  padding: 80px 0;
  background-color: #fff;
}

.offer-card {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px 20px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  height: 100%;
}

.offer-card.highlight {
  border: 2px solid #0e6578;
}

.offer-card .tag {
  position: absolute;
  top: -12px;
  right: 12px;
  background-color: #8b00ff;
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 6px;
}

.offer-card h3 {
  font-size: 1.2rem;
  margin-top: 15px;
  font-weight: 600;
}

.offer-card ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.offer-card ul li {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.price-box {
  margin-bottom: 20px;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 0.95rem;
  display: block;
}

.new-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #0e6578;
  display: block;
  margin-top: 5px;
}

.product-duo-section {
  padding: 80px 0;
  background-color: #fff;
}

.product-text {
  padding: 20px;
}

.product-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.product-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 30px;
}

.health-protocol-section {
  padding: 80px 0;
  background-color: #0e6578;
}
.health-protocol-section .row {
  margin-bottom: 70px !important;
}
.health-protocol-section h2 {
  font-size: 2rem;
  font-weight: 700;
}

.health-protocol-section h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.health-protocol-section p {
  font-size: 1rem;
  color: #eaf4f6;
  line-height: 1.6;
}

#calendar {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.day {
  width: 90px;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
  background: #eee;
  cursor: pointer;
}
.day.selected {
  background: #007bff;
  color: #fff;
}
#slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.slot {
  padding: 10px 15px;
  background: #f0f0f0;
  border-radius: 6px;
  cursor: pointer;
}
.slot:hover {
  background: #ddd;
}
.slot.selected {
  background: #007bff;
  color: white;
}
#booking-form {
  margin-top: 20px;
}
#booking-form input,
#booking-form textarea {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.hero-btn {
  padding: 12px 24px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}
.hero-btn:hover {
  background-color: #555;
}

.booking-calendar-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.calendar-days {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.day {
  width: 90px;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
  background: #eee;
  cursor: pointer;
}

.day.selected {
  background: #0e6578;
  color: #fff;
}

.calendar-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.slot {
  padding: 10px 15px;
  background: #f0f0f0;
  border-radius: 6px;
  cursor: pointer;
}

.slot:hover {
  background: #ddd;
}

.slot.selected {
  background: #0e6578;
  color: white;
}

.calendar-form input,
.calendar-form textarea {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.faq-section {
  padding: 80px 0;
}

.accordion-button {
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: #0e6578;
  color: #fff;
  box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
  filter: invert(1);
  filter: brightness(100);
}

.products-section {
  padding: 80px 0;
  background-color: #fff;
}

.products-section h2 {
  font-size: 32px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 70px;
}

.products-section input::-webkit-outer-spin-button,
.products-section input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.products-section input[type="number"] {
  -moz-appearance: textfield;
}
.card-body {
  flex: 0 1 auto !important;
}

.img-bottom:not(.container) {
  position: relative;
  max-width: fit-content;
}

.img-bottom.img-bottom-white::before {
  content: url("images/partner-white.png");
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 1;
}

.img-top {
  position: relative;
  max-width: fit-content;
}

.img-top.img-bottom-black::before {
  content: url("images/partner-black.png");
  position: absolute;
  left: 50%;
  top: 2.5%;
  transform: translateX(-50%);
  z-index: 1;
}

.img-bottom.img-bottom-black::before {
  content: url("images/partner-black.png");
  position: absolute;
  bottom: 2.5%;
  right: 5%;
  z-index: 1;
}

.img-bottom.img-bottom-black.img-top::before {
  content: url("images/partner-black.png");
  position: absolute;
  right: 0;
  top: 1.5%;
  z-index: 1;
  transform: translateX(0);
}

.img-bottom.img-bttom-white.img-top::before {
  content: url("images/partner-white.png");
  position: absolute;
  right: 0;
  top: 1.5%;
  z-index: 1;
  transform: translateX(0);
}

.img-lower::before {
  bottom: -30% !important;
}

.balance-test-highlight {
  position: relative;
}
.card-yt {
  display: flex;
  justify-content: center;
}
.yt-card {
  display: flex;
  align-items: center;
  background: #f8f8f8;
  color: #000000;
  border-radius: 15px;
  padding: 22px 36px;
  max-width: 500px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  font-family: Arial, sans-serif;
  /* margin-bottom: 24px; */
}

.yt-left {
  flex-shrink: 0;
}

.yt-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ff0000;
}

.yt-right {
  margin-left: 15px;
}

.yt-title {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.yt-handle {
  margin: 2px 0;
  font-size: 14px;
  color: #aaa;
}

.yt-info {
  margin: 2px 0 10px;
  font-size: 14px;
  color: #ccc;
}

.yt-btn {
  display: inline-block;
  background: #ff0000;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  /* margin-left: 13rem; */
}

.card-yt-href {
  text-decoration: none;
  color: #000;
}

.yt-btn:hover {
  background: #cc0000;
}

.bw {
  position: absolute;
  background-color: #000;
  color: #fff;
  padding: 5px 8px;
  top: 5px;
  right: 5px;
  text-transform: capitalize;
  font-size: 14px;
}

.product-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border: 1px solid #000;
  padding: 10px 20px;
  margin-bottom: 20px;
}

.product-box > *,
.product-box-lilac p {
  margin-bottom: 0;
}

.product-box-lilac {
  background-color: #eeebf8;
  padding: 10px 10px 30px 10px;
}

.product-box-lilac .product-box-lilac-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-box-lilac .product-box-lilac-header .discount {
  font-weight: 600;
  font-size: 14px;
  color: #aa4444;
}

.product-box-lilac .product-box-lilac-desc {
  margin: 20px 0 15px 0;
}

.product-box-lilac a {
  border: 1px solid #000;
  color: #000;
  padding: 10px 30px;
  font-size: 15px;
  font-weight: 600;
  background-color: transparent;
  min-width: 80%;
  margin: 0 auto;
  display: block;
  text-align: center;
}

@media (max-width: 992px) {
  .hero-text,
  .hero-slider-wrapper {
    text-align: center;
    justify-content: center;
    padding: 10px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .balance-text {
    text-align: center;
    align-items: center;
  }

  .balance-text h2 {
    font-size: 1.8rem;
  }

  .product-text {
    text-align: center;
    align-items: center;
  }

  .product-text h2 {
    font-size: 1.8rem;
  }

  .hero-btn {
    margin: 0 auto;
  }

  .balanceoil-section .row {
    row-gap: 40px;
  }

  .balanceoil-section a {
    display: block;
    text-align: center;
    margin-top: 30px;
  }

  .zinobiotic-text {
    text-align: center;
  }

  .product-duo-section .row {
    row-gap: 40px;
  }

  .health-protocol-section img {
    margin-bottom: 40px;
  }

  .health-protocol-section .row {
    text-align: center;
  }

  .hero-section h5 {
    margin: 20px 0 35px 0;
  }
  .hero-section {
    background-position: 4% 50%;
  }
  .img-lower::before {
    bottom: 0 !important;
  }

  .health-protocol-section .row {
    justify-content: center;
  }
}
