@font-face {
  font-family: 'Verdana';
  src: url('assets/fonts/Verdana.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Verdana';
  src: url('assets/fonts/Verdana-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Verdana';
  src: url('assets/fonts/Verdana-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Verdana';
  src: url('assets/fonts/Verdana-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Verdana', Arial, sans-serif;
  background: #FFFFFF;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  text-decoration: none !important;
  color: inherit;
}

a:hover {
  text-decoration: none !important;
}

.container {
  max-width: 1280px !important;
}

@media (max-width: 991px) {
  .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

html {
  scroll-padding-top: 80px;
}

.metaleve-promo__text strong {
	 color: #FFD84A;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  background: #FFFFFF;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-logo a {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 700;
  font-size: 27px;
  line-height: 25px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #5BA2AC;
  margin-left: -10px;
}

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.main-nav li {
  list-style: none;
}

.main-nav a {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #116F93;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.main-nav a:hover {
  opacity: 0.7;
}

.cta-button {
  width: 220px;
  height: 46px;
  background: #E86A4A;
  box-shadow: 0px 1.84615px 7.38461px rgba(39, 39, 39, 0.2);
  border-radius: 7px;

  font-family: 'Verdana';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 4px 12px rgba(39, 39, 39, 0.3);
}

.mobile-menu-toggle {
  display: none;
}

.mobile-menu-overlay {
  display: none;
}

@media (max-width: 991px) {
  .site-header {
    height: 68px;
  }

  .header-container {
    height: 68px;
    padding: 0 15px;
  }

  .site-logo a {
    font-size: 27px;
    line-height: 21px;
  }

  .main-nav {
    display: none;
  }

  .cta-button {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .hamburger-icon {
    display: block;
    width: 36px;
    height: 24px;
    position: relative;
  }

  .mobile-menu-toggle span span {
    display: block;
    width: 36px;
    height: 3px;
    background: #5BA2AC;
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
  }

  .mobile-menu-toggle span span:nth-child(1) {
    top: 0;
  }

  .mobile-menu-toggle span span:nth-child(2) {
    top: 10.5px;
  }

  .mobile-menu-toggle span span:nth-child(3) {
    top: 21px;
  }

  .mobile-menu-toggle.active span span:nth-child(1) {
    top: 10.5px;
    transform: rotate(45deg);
  }

  .mobile-menu-toggle.active span span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span span:nth-child(3) {
    top: 10.5px;
    transform: rotate(-45deg);
  }

  .mobile-menu-overlay {
    display: block;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFFFFF;
    z-index: 999;

    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .mobile-menu-overlay.active {
    transform: translateX(0);
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    gap: 0;
  }

  .mobile-nav li {
    padding: 20px 0;
    list-style: none;
    border-bottom: 1px solid #E5E5E5;
  }

  .mobile-nav a {
    font-family: 'Verdana';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #116F93;

    text-decoration: none;
  }

  .mobile-nav a:hover {
    opacity: 0.8;
  }

  .mobile-nav a.mobile-cta {
    background: #E86A4A;
    color: #FFFFFF;
    text-align: center;
    padding: 15px 20px;
    border-radius: 7px;
    border-bottom: none;
    margin-top: 20px;
    box-shadow: 0px 1.84615px 7.38461px rgba(39, 39, 39, 0.2);
  }
}

main {
  margin-top: 80px;
}

@media (max-width: 991px) {
  main {
    margin-top: 68px;
  }
}

.hero-section {
  width: 100%;
  min-height: 800px;
  background: linear-gradient(127.82deg, #569DAA -2.58%, #87CBB9 75.67%, #B9EDDD 147.22%);
  position: relative;
  overflow: hidden;
}

.hero-background {
  width: 100%;
  min-height: 800px;
  display: flex;
  align-items: center;
  padding: 40px 0;
}

.hero-section .container-fluid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
}

.hero-section .row {
  align-items: center;
}

.hero-product {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0px 20px;
}

.hero-product img {
	width: 100%;
	height: auto;
	max-width: 420px;
}

.product-bottle {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
}

.hero-content {
  padding: 40px 60px 40px 40px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.hero-description {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  margin-bottom: 30px;
}

.hero-description p {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.hero-description p:last-child {
  margin-bottom: 0;
}

.hero-certificates {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
}

.certificates-badges {
  height: auto;
  width: 100%;
}

.hero-title-mobile {
  padding: 20px 15px 10px 15px;
}

@media (max-width: 991px) {
  .hero-section {
    min-height: 618px;
  }

  .hero-background {
    min-height: 618px;
    padding: 30px 0;
  }

  .hero-section .row {
    min-height: auto;
  }

  .hero-title-mobile .hero-title {
    font-size: 24px;
    line-height: 28px;
    margin: 0 auto;
    text-align: center;
	max-width: 330px;
  }

  .hero-product {
    justify-content: center;
    margin-right: 0;
  }

  .product-bottle {
    max-height: 338px;
    filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.25));
  }

  .hero-content {
    padding: 10px 15px 20px 15px;
    text-align: left;
  }

  .hero-description {
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 20px;
	text-align: center;
  }

  .hero-description p {
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 8px;
  }

  .certificates-badges {
    width: 100%;
  }

  .hero-certificates-mobile {
    display: flex;
    justify-content: center;
    padding: 15px;
  }
}

.site-footer {
  position: relative;
  width: 100%;
  min-height: 202px;
  background: linear-gradient(127.82deg, #569DAA -2.58%, #87CBB9 75.67%, #B9EDDD 147.22%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.footer-container {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 700;
  font-size: 27px;
  line-height: 25px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 5px;
}

.footer-line-top {
  width: 186px;
  height: 1px;
  background: #FFFFFF;
  margin-bottom: 5px;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #FFFFFF;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.footer-nav a:hover {
  opacity: 0.8;
}

.footer-line-bottom {
  width: 186px;
  height: 1px;
  background: #FFFFFF;
  margin-top: 5px;
}

.footer-copyright {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.footer-copyright span {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 32px;
  color: #FFFFFF;
}

.footer-copyright strong {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 32px;
  color: #FFFFFF;
}

@media (max-width: 991px) {
  .site-footer {
    min-height: 222px;
    padding: 20px 15px;
  }

  .footer-container {
    align-items: flex-start;
    gap: 10px;
  }

  .footer-logo {
    align-self: flex-start;
  }

  .footer-line-top {
    align-self: flex-start;
    margin-bottom: 10px;
  }

  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    width: 100%;
  }

  .footer-nav a {
    font-size: 14px;
    line-height: 17px;
    text-align: left;
  }

  .footer-line-bottom {
    align-self: flex-start;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .footer-copyright {
    justify-content: flex-start;
    align-self: flex-start;
    margin-top: 0;
  }

  .footer-copyright span,
  .footer-copyright strong {
    font-size: 12px;
    line-height: 32px;
  }
}

.research-section {
  background: #FFFFFF;
  padding: 80px 0;
}

.research-section .container {
  max-width: 1280px;
}

.research-title {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: #324157;
  margin-bottom: 40px;
}

.research-content {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #324157;
}

.research-content p {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #324157;
  margin-bottom: 20px;
}

.research-content p:last-child {
  margin-bottom: 0;
}

.research-content strong,
.research-content b {
  font-weight: 700;
}

.research-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
  min-height: 100%;
}

.research-image {
  height: auto;
  max-width: 511px;
}

.research-references {
  font-family: 'Verdana';
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #5B677A;
  margin-top: 30px;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .research-section {
    padding: 40px 0;
  }

  .research-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
    padding: 0;
  }

  .research-content {
    font-size: 16px;
    line-height: 19px;
    padding: 0;
  }

  .research-content p {
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 15px;
  }

  .research-references {
    font-size: 14px;
    line-height: 17px;
    margin-top: 20px;
  }

  .research-image-wrapper {
    padding: 20px 15px;
  }

  .research-image {
    max-width: 289px;
  }
}

.discoveries-section {
  background: #5BA2AC;
  padding: 55px 0 10px 0;
}

.discoveries-background {
  width: 100%;
}

.discoveries-section .container {
  max-width: 1280px;
}

.discoveries-title {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  color: #FFFFFF;
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.discoveries-logo {
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 700;
  font-size: 59.313px;
  line-height: 56px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.discoveries-product-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0px;
}

.discoveries-product-image {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(6.39122px 0px 15.9781px rgba(0, 0, 0, 0.25));
}

.discoveries-content {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  padding: 40px 20px;
}

.discoveries-content p {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.discoveries-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .discoveries-section {
    padding: 47px 0 50px 0;
  }

  .discoveries-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 15px;
    padding: 0 15px;
  }

  .discoveries-logo {
    margin-bottom: 30px;
    font-size: 27px;
    line-height: 25px;
  }

  .discoveries-product-wrapper {
    padding: 20px 15px;
  }

  .discoveries-product-image {
    filter: drop-shadow(4px 0px 10px rgba(0, 0, 0, 0.25));
  }

  .discoveries-content {
    font-size: 16px;
    line-height: 19px;
    padding: 20px 0px;
  }

  .discoveries-content p {
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 12px;
  }
}

.advantage-section {
  background: #FFB44F;
  padding: 17px 0;
  display: flex;
  align-items: center;
  margin: 30px 0;
  position: relative;
}

.advantage-section {
  background: #FFB44F;
  padding: 17px 0;
  display: flex;
  align-items: center;
  margin-top: 0px;
  margin-bottom: 80px;
  position: relative;
}

.advantage-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: calc(1440px * 0.165) solid transparent;
  border-right: calc(1440px * 0.165) solid transparent;
  border-top: 50px solid #FFB44F;
}

.advantage-section .container {
  max-width: 1060px;
}

.advantage-text {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  color: #FFFFFF;
  margin: 0 auto;
  max-width: 1060px;
}

@media (max-width: 991px) {
  .advantage-section {
    padding: 16px 0;
    margin-bottom: 60px;
  }

  .advantage-section::after {
    bottom: -30px;
    border-left: 50vw solid transparent;
    border-right: 50vw solid transparent;
    border-top: 30px solid #FFB44F;
  }

  .advantage-text {
    font-size: 14px;
    line-height: 17px;
    padding: 0px;
  }
}

.products-section {
  padding: 60px 0 80px;
  border-radius: 80px;
}

.products-section .container {
  max-width: 1200px;
}

.products-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.product-card-wrapper {
  width: 330px;
  flex-shrink: 0;
}

.product-card-wrapper.featured-wrapper {
  width: 390px;
}

.product-card {
  border-radius: 22.1538px;
  padding: 21px 13px 13px;
  box-shadow: 0px 3.69px 3.69px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(0.92px);
  position: relative;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card-info-wrapper {
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .product-card-info-wrapper {
    background-image: none !important;
  }
}

.product-quantity-desktop {
  display: block;
  font-family: 'Verdana';
  font-weight: 400;
  font-size: 20.3077px;
  line-height: 31px;
  color: #324157;
  margin-bottom: 0px;
  text-align: center;
}

.product-card.featured .product-quantity-desktop {
  font-size: 23.9665px;
  line-height: 37px;
}

.product-card-info-wrapper .product-quantity {
  display: none;
}

.product-card.featured {
  padding: 25px 16px 16px;
}

.savings-badge {
  position: absolute;
  top: -35px;
  right: -25px;
  width: 114px;
  height: 114px;
  background: #EA3A19;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Verdana';
  font-weight: 700;
  font-size: 14.3px;
  line-height: 26px;
  color: #FFFFFF;
  text-align: center;
  transform: rotate(11.26deg);
  padding: 40px 30px;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.savings-badge span {
  font-size: 28px;
}

.product-card-title {
  font-family: 'Verdana';
  font-weight: 700;
  font-size: 33.2308px;
  line-height: 37px;
  text-transform: uppercase;
  letter-spacing: -0.664615px;
  margin: 21px 0 12px;
  color: #324157;
}

.product-card-title.featured-title {
  font-size: 39.22px;
  line-height: 44px;
  letter-spacing: -0.784358px;
  color: #E86A4A;
  margin: 25px 0 15px;
}

.product-quantity {
  font-family: 'Verdana';
  font-weight: 400;
  font-size: 20.3077px;
  line-height: 31px;
  color: #324157;
  margin-bottom: 15px;
}

.product-card.featured .product-quantity {
  font-size: 23.9665px;
  line-height: 37px;
}

.product-price-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  margin: 5px 0;
  padding: 0 5px;
}

.product-price-display {
  display: none;
}

.product-price-main {
  display: flex;
  align-items: center;
  gap: 1px;
}

.price-large {
  font-family: 'Verdana';
  font-weight: 700;
  font-size: 64.6154px;
  line-height: 65px;
  letter-spacing: -1.93846px;
  color: #5BA2AC;
}

.price-large.featured-price {
  font-family: 'Verdana';
  font-weight: 800;
  font-size: 76.257px;
  line-height: 76px;
  letter-spacing: -2.28771px;
  color: #E86A4A;
}

.price-currency {
  font-family: 'Verdana';
  font-weight: 400;
  font-size: 27.6923px;
  line-height: 22px;
  color: #5BA2AC;
  margin-bottom: 0px;
  margin-left: 5px;
  margin-right: 5px;
}

.price-currency.featured-price {
  font-family: 'Verdana';
  font-weight: 500;
  font-size: 32.6816px;
  line-height: 26px;
  color: #E86A4A;
  margin-bottom: 0px;
  margin-left: 5px;
  margin-right: 5px;
}

.price-label {
  font-family: 'Verdana';
  font-weight: 400;
  font-size: 12.9231px;
  line-height: 18px;
  color: #324157;
  margin-bottom: 0px;
}

.product-price-display .price-label {
  margin-bottom: 0;
  margin-top: 5px;
  margin-left: 0;
}

.product-card.featured .price-label {
  font-size: 15.2514px;
  line-height: 15px;
}

.ebook-badge {
  background: #5BA2AC;
  border-radius: 5.99px;
  padding: 0;
  margin: 5px auto;
  max-width: fit-content;
  min-height: 33px;
  display: flex;
  align-items: center;
}

.ebook-badge span {
  font-family: 'Verdana';
  font-weight: 400;
  font-size: 19.36px;
  line-height: 33px;
  color: #FFFFFF;
  padding: 0 22px;
}

.product-card.featured .ebook-badge {
  min-height: 33px;
  width: 260px;
  margin: 5px auto;
}

.product-card.featured .ebook-badge span {
  font-size: 19.36px;
  line-height: 33px;
  width: 100%;
  text-align: center;
}

.product-image {
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(4px 0px 10px rgba(0, 0, 0, 0.25));
}

.product-card.featured .product-image img {
  filter: drop-shadow(1.76px 0px 8.79px rgba(0, 0, 0, 0.25));
}

.add-to-cart-btn {
  display: block;
  background: #E86A4A;
  border-radius: 7px;
  border: none;
  padding: 12px 20px;
  font-family: 'Verdana';
  font-weight: 700;
  font-size: 18.4615px;
  line-height: 22px;
  color: #FFFFFF;
  text-decoration: none;
  text-align: center;
  box-shadow: 0px 1.84615px 7.38461px rgba(39, 39, 39, 0.2);
  cursor: pointer;
  width: 100%;
  margin: 15px 0;
  position: relative;
  transition: background 0.3s;
  min-height: 46.15px;
}

.add-to-cart-btn:hover {
  background: #D95A3A;
  color: #FFFFFF;
  text-decoration: none;
}

.product-card.featured .add-to-cart-btn {
  font-size: 21.7877px;
  line-height: 26px;
  border-radius: 8.26117px;
  min-height: 54.47px;
  padding: 14px 20px;
  box-shadow: 0px 2.17877px 8.71508px rgba(39, 39, 39, 0.2);
}

.hand-icon {
  position: absolute;
  right: 0;
  top: 100%;
  transform: translateY(-50%);
  width: 61px;
  height: 65px;
}

.hand-icon1 {
  position: absolute;
  right: -30px;
  top: 100%;
  transform: translateY(-50%);
  width: 61px;
  height: 65px;
}

.product-total {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 5px 0;
}

.total-label {
  font-family: 'Verdana';
  font-weight: 400;
  font-size: 22.1538px;
  line-height: 37px;
  color: #324157;
  letter-spacing: -0.376615px;
}

.total-old {
  font-family: 'Verdana';
  font-weight: 700;
  font-size: 25.8462px;
  line-height: 26px;
  color: #324157;
  text-decoration: line-through;
}

.total-new {
  font-family: 'Verdana';
  font-weight: 700;
  color: #324157;
}

.product-card.featured .total-new del .woocommerce-Price-amount {
  font-size: 30px !important;
  line-height: 42px;
}

.product-card.featured .total-new ins .woocommerce-Price-amount {
  font-size: 39px !important;
  line-height: 42px;
  text-decoration: none;
}

.total-new .woocommerce-Price-amount,
.total-new .amount {
  font-family: 'Verdana';
  font-weight: 700;
  color: #324157;
}

.total-new .woocommerce-Price-currencySymbol {
  font-family: 'Verdana';
  font-weight: 700;
  color: #324157;
}

.product-card.featured .total-label {
  font-size: 26.1452px;
  letter-spacing: -0.444469px;
  line-height: 44px;
}

.product-card.featured .total-new del {
  font-size: 30px !important;
  text-decoration: line-through !important;
  line-height: 42px;
}

.product-card.featured .total-new ins {
  font-size: 39px !important;
  text-decoration: none !important;
  line-height: 42px;
}

.product-card.featured .woocommerce-Price-currencySymbol, .product-card .woocommerce-Price-currencySymbol {
  margin-left: -10px;
}

.product-card .total-new del {
  font-size: 26px !important;
  text-decoration: line-through !important;
  line-height: 36px;
}

.product-card .total-new ins {
  font-size: 32px !important;
  text-decoration: none !important;
  line-height: 36px;
}

.product-card .total-new {
  font-size: 32px !important;
  text-decoration: none !important;
  line-height: 36px;
}

.product-card .shipping-text {
  font-style: normal;
  font-weight: 700;
  font-size: 14.7692px;
  line-height: 24px;
  color: #324157;
}

.payment-methods {
  margin: 10px 0;
  display: flex;
  justify-content: center
}

.payment-methods img {
  max-width: 199px;
  width: 100%;
  height: auto;
}

.shipping-text {
  font-family: 'Verdana';
  font-weight: 700;
  font-size: 14.77px;
  line-height: 24px;
  color: #324157;
  text-align: center;
  margin: 10px 0 0;
}

.product-card.featured .shipping-text {
  font-size: 17.43px;
  line-height: 28px;
}

.product-card .shipping-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.product-card .shipping-text span {
  line-height: 20px;
}

@media (max-width: 991px) {
  .products-section {
    padding: 40px 0 50px;
    border-radius: 40px;
  }

  .products-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .product-card-wrapper[data-order="1"] {
    order: 1;
  }

  .product-card-wrapper[data-order="2"] {
    order: 2;
  }

  .product-card-wrapper[data-order="3"] {
    order: 3;
  }

  .product-card-wrapper,
  .product-card-wrapper.featured-wrapper {
    width: 100%;
    max-width: 360px;
  }

  .product-card {
    margin-bottom: 0;
    padding: 14px 14px;
  }

  .product-card.featured {
    padding: 14px 14px;
  }

  .product-card {
    display: flex;
    flex-direction: column;
  }

  .product-price-wrapper {
    display: none;
  }

  .product-price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 15px 0;
  }

  .product-card-title {
    order: 1;
  }

  .product-quantity-desktop {
    display: none;
  }

  .product-card-info-wrapper .product-quantity {
    display: block;
  }

  .product-image {
    display: none !important;
  }

  .product-card-info-wrapper {
    order: 2;
    display: flex;
    flex-direction: column;
    padding-right: 50%;
    background-size: 55%;
    background-repeat: no-repeat;
    background-position: right center;
    min-height: 200px;
  }

  .add-to-cart-btn {
    order: 3;
  }

  .product-total {
    order: 4;
  }

  .payment-methods {
    order: 5;
  }

  .shipping-text {
    order: 6;
  }

  .savings-badge {
    width: 80px;
    height: 80px;
    font-size: 12px;
    line-height: 20px;
    top: -20px;
    right: -25px;
    padding: 25px 20px;
    font-size: 10px;
  }

  .savings-badge span {
    font-size: 18px;
  }

  .product-card-title {
    font-size: 33.2308px;
    line-height: 37px;
    margin: 12px 0 8px;
	text-align: left;
  }

  .product-card-title.featured-title {
    font-size: 33.2308px;
    line-height: 37px;
    letter-spacing: -0.664615px;
    color: #E86A4A;
  }

  .product-quantity {
    font-size: 19px;
    line-height: 31px;
  }

  .product-card.featured .product-quantity {
    font-size: 20.3077px;
    line-height: 31px;
  }

  .price-large {
    font-size: 64.6154px;
    line-height: 65px;
  }

  .price-large.featured-price {
    font-size: 64.6154px;
    line-height: 65px;
    letter-spacing: -1.93846px;
    color: #E86A4A;
  }

  .price-currency {
    font-size: 27.6923px;
    line-height: 22px;
  }

  .price-currency.featured-price {
    font-size: 27.6923px;
    line-height: 22px;
    color: #E86A4A;
  }

  .price-label {
    font-size: 12.9231px;
    line-height: 13px;
  }

  .product-card.featured .price-label {
    font-size: 12.9231px;
    line-height: 13px;
  }

  .ebook-badge {
    min-height: 22px;
    border-radius: 4px;
  }

  .ebook-badge span {
    font-size: 12.9231px;
    line-height: 22px;
    padding: 0 5px;
  }

  .product-card.featured .ebook-badge {
    min-height: 22px;
    margin: 5px 0px;
    width: 260px;
    max-width: 100%;
  }

  .product-card.featured .ebook-badge span {
    font-size: 12px;
    line-height: 22px;
  }

  .add-to-cart-btn {
    font-size: 18.4615px;
    line-height: 22px;
    min-height: 46.15px;
    margin: 5px 0;
  }

  .product-card.featured .add-to-cart-btn {
    font-size: 18.4615px;
    line-height: 22px;
    min-height: 46.15px;
  }

  .hand-icon {
    width: 51.69px;
    height: 55.38px;
  }

  .total-label {
    font-size: 22.1538px;
    line-height: 37px;
    letter-spacing: -0.376615px;
  }

  .total-old {
    font-size: 25.8462px;
    line-height: 26px;
  }

  .total-new {
    font-size: 33.2308px;
    line-height: 35px;
  }

  .total-new .woocommerce-Price-amount,
  .total-new .amount,
  .total-new .woocommerce-Price-currencySymbol {
    font-size: 33.2308px;
    line-height: 35px;
  }

  .product-card.featured .total-label {
    font-size: 22px;
    line-height: 37px;
    letter-spacing: -0.376615px;
  }

  .product-card.featured .total-old {
    font-size: 25.8462px;
    line-height: 26px;
  }

  .product-card.featured .total-new {
    font-size: 33.2308px;
    line-height: 35px;
  }

  .product-card.featured .total-new .woocommerce-Price-amount,
  .product-card.featured .total-new .amount,
  .product-card.featured .total-new .woocommerce-Price-currencySymbol {
    font-size: 33.2308px;
    line-height: 35px;
  }

  .payment-methods img {
    max-height: 21.53px;
  }

  .product-card.featured .payment-methods img {
    max-height: 21.53px;
  }

  .shipping-text {
    font-size: 14.7692px;
    line-height: 24px;
  }

  .product-card.featured .shipping-text {
    font-size: 14.7692px;
    line-height: 24px;
  }
}

.satisfaction-section {
  padding: 80px 0;
  background: #F5F5F5;
}

.satisfaction-title {
  font-family: 'Verdana';
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  color: #E86A4A;
  margin: 0 auto 60px;
  max-width: 840px;
}

.satisfaction-content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto 60px;
}

.satisfaction-badge {
  flex-shrink: 0;
  width: 214px;
}

.satisfaction-badge img {
  width: 100%;
  height: auto;
}

.satisfaction-text-wrapper {
  flex: 1;
}

.satisfaction-text {
  font-family: 'Verdana';
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
  margin: 0 0 20px;
}

.satisfaction-link {
  font-family: 'Verdana';
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #5BA2AC;
  margin: 0;
}

.satisfaction-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 40px;
  max-width: 700px;
}

.satisfaction-badges img {
  max-width: 100%;
  height: auto;
}

.satisfaction-footer {
  font-family: 'Verdana';
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #000000;
  margin: 0 auto;
  max-width: 573px;
}

.video-section__heading {
	text-align: center;
	font-family: 'Verdana';
	font-style: normal;
	font-weight: 700;
	font-size: 36px;
	line-height: 49px;
	color: #000000;
}

.video-section__subheading p {
	font-family: 'Verdana';
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 25px;
	text-align: center;
	color: #000000;
}

.video-section {
	margin-bottom: 50px;
	background: #5BA2AC;
	padding: 120px;
	margin-top: 30px;
}


@media (max-width: 991px) {
	
	
  .satisfaction-section {
    padding: 60px 0px;
  }

  .satisfaction-title, .video-section__heading {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 40px;
  }
  
  .video-section__subheading p {
	font-size: 16px;
    line-height: 18px;
  }
.video-section {
	margin-bottom: 50px;
	background: #5BA2AC;
	padding: 45px;
	margin-top: 30px;
}


  .satisfaction-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .satisfaction-badge {
    width: 147px;
  }

  .satisfaction-text-wrapper {
    width: 100%;
  }

  .satisfaction-text {
    font-size: 16px;
    line-height: 19px;
  }

  .satisfaction-link {
    font-size: 16px;
    line-height: 19px;
  }

  .satisfaction-badges {
    margin-bottom: 30px;
  }

  .satisfaction-badges img {
    max-width: 100%;
  }

  .satisfaction-footer {
    font-size: 12px;
    line-height: 15px;
  }
}

.bonuses-section {
  padding: 80px 0;
}

.bonuses-title {
  font-family: 'Verdana';
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  color: #FFFFFF;
  margin: 0 auto 80px;
  max-width: 822px;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  max-width: 1200px;
  margin: 0 auto;
}

.bonus-item {
  text-align: center;
}

.bonus-item-0 {
  margin-left: auto;
  margin-right: 0px;
  max-width: 450px;
}

.bonuses-title span {
  color: #B0E7D7;
}

.bonus-item-1 {
  margin-left: 0;
  margin-right: auto;
  max-width: 450px;
}

.bonus-header {
  margin-bottom: 20px;
}

.bonus-number {
  font-family: 'Verdana';
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #FFFFFF;
  margin: 0 0 10px;
}

.bonus-name {
  font-family: 'Verdana';
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #FFFFFF;
  margin: 0 0 15px;
}

.bonus-subtitle .bonus-sublititle-btn {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  line-height: 21px;
  color: #FFFFFF;
  margin: 0;
  background: #FFB44F;
  box-shadow: 0px 1.84615px 7.38461px rgba(39, 39, 39, 0.2);
  border-radius: 7px;
  max-width: 310px;
  margin-left: auto;
  margin-right: auto;
  padding: 13px 25px;
}

.bonus-subtitle .bonus-sublititle-btn span {
  text-decoration: line-through;
}

.bonus-image {
  margin: 0 auto 40px;
  position: relative;
  max-width: 349px;
}

.bonus-image img {
  width: 100%;
  height: auto;
  border-radius: 26.6px;
  box-shadow: 1.45px 0px 14.55px rgba(0, 0, 0, 0.25);
}

.bonus-description {
  font-family: 'Verdana';
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  text-align: left;
  max-width: 450px;
  margin: 0 auto;
}

.shipping-section {
  padding: 40px 15px 50px;
}

.shipping-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.shipping-icon img {
  width: 166.15px;
  height: auto;
}

.shipping-content .shipping-text {
  font-family: 'Verdana';
  font-weight: 700;
  font-size: 30px;
  line-height: 38px;
  color: #FFFFFF;
  margin-bottom: 30px;
  text-align: left;
}

.shipping-content .shipping-text span {
	color: #FFB44F;
}

.shipping-footer {
  font-family: 'Verdana';
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #FFFFFF;
  text-align: left;
  margin: 0 auto;
}

.shipping-footer span {
  color: #5BA2AC;
  font-weight: 600;
}

@media (max-width: 991px) {
  .bonuses-section {
    padding: 60px 0px;
  }

  .bonus-item-0, .bonus-item-1, .bonus-description {
    width: 100%;
    max-width: 100% !important;
  }

  .bonuses-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 40px;
  }

  .bonuses-grid {
        display: flex;
        gap: 30px;
        flex-direction: column;
        align-items: center;
        align-content: center;
  }
  

  .bonus-number {
    font-size: 20px;
    line-height: 24px;
  }

  .bonus-name {
    font-size: 20px;
    line-height: 24px;
  }

  .bonus-subtitle {
    font-size: 16px;
    line-height: 19px;
  }

  .bonus-image {
    max-width: 240px;
    margin-bottom: 30px;
  }

  .bonus-image img {
    border-radius: 11.08px;
    box-shadow: 1px 0px 10px rgba(0, 0, 0, 0.25);
  }

  .bonus-description {
    font-size: 16px;
    line-height: 19px;
  }

  .shipping-section {
    padding: 44px 0px;
  }

  .shipping-content {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .shipping-icon img {
    width: 166.15px;
  }

 .shipping-content .shipping-text {
    font-size: 20px;
    line-height: 24px;
	text-align: center;
  }

  .shipping-content .shipping-footer {
    font-size: 18px;
    line-height: 22px;
	text-align: center;
  }
}

.ingredients-section {
  padding: 80px 15px;
  background: #FFFFFF;
}

.ingredients-title {
  font-family: 'Verdana';
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  color: #5BA2AC;
  margin: 0 auto 60px;
  max-width: 683px;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1136px;
  margin: 0 auto;
}

.ingredient-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10.62px;
}

.ingredient-image {
  width: 209px;
  height: 209px;
  flex-shrink: 0;
}

.ingredient-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.ingredient-name {
  font-family: 'Verdana';
  font-weight: 700;
  font-size: 18px;
  line-height: 19px;
  text-align: center;
  color: #324157;
  margin: 0;
  width: 100%;
  max-width: 352px;
}

.ingredient-description {
  font-family: 'Verdana';
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #324157;
  width: 100%;
  max-width: 352px;
}

.ingredient-description p {
  margin: 0 0 10px;
  font-style: italic;
}

.ingredient-description ul,
.ingredient-description ol {
  margin: 0;
  padding-left: 20px;
  font-style: normal;
}

.ingredient-description li {
  margin-bottom: 5px;
  font-style: normal;
}

@media (max-width: 991px) {
  .ingredients-section {
    padding: 60px 0px;
  }

  .ingredients-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 40px;
  }

  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
    row-gap: 20px;
  }

  .ingredient-item {
    gap: 10.62px;
  }

  .ingredient-image {
    width: 109px;
    height: 109px;
  }

  .ingredient-name {
    font-size: 13px;
    line-height: 19px;
    max-width: 150px;
  }

  .ingredient-description {
    font-size: 12px;
    line-height: 19px;
    max-width: 150px;
  }

  .ingredient-description p {
    font-style: italic;
  }

  .ingredient-description ul,
  .ingredient-description ol,
  .ingredient-description li {
    font-style: normal;
  }
}

.natural-formula-section {
  padding: 30px 15px;
}

.formula-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
  margin-bottom: 15px;
}

.formula-row:last-child {
  margin-bottom: 0;
}

.formula-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.formula-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.formula-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.formula-text {
  font-family: 'Verdana';
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #5BA2AC;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .natural-formula-section {
    padding: 30px 15px;
  }

  .natural-formula-section .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
  }

  .formula-row {
    display: contents;
  }

  .formula-item {
    flex-direction: row;
    align-items: center;
  }

  .formula-text {
    font-size: 14px;
    line-height: 17px;
    white-space: normal;
  }
}

.testimonials-section {
  padding: 80px 80px;
  background: #FFFFFF;
}

.testimonials-title {
  font-family: 'Verdana';
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  color: #324157;
  margin: 0 auto 30px;
  max-width: 805px;
}

.testimonials-carousel {
  margin: 0 auto 50px;
  max-width: 1200px;
  position: relative;
  padding: 30px 0;
}

.carousel-slider .slick-slide {
  opacity: .4;
  transform: scale(.9);
  transition: .25s ease;
  padding: 0 5px;           
  box-sizing: border-box;
}

.carousel-slider .slick-center {
  opacity: 1;
  transform: scale(1);
}

.carousel-slide {
  overflow: hidden;
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: auto;
}


.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 875px;
  margin: 0 auto;
}

.testimonial-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.testimonial-header {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonial-title {
  font-family: 'Verdana';
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  color: #5BA2AC;
  margin: 0;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-rating img {
  width: 106.45px;
  height: 20px;
}

.verified-badge {
  font-family: 'Verdana';
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  color: #D16626;
}

.testimonial-content {
  font-family: 'Verdana';
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #324157;
  margin: 0;
}

.testimonial-quote {
  display: flex;
  align-items: center;
  gap: 15px;
}

.quote-icon {
  font-size: 40px;
  line-height: 49px;
  flex-shrink: 0;
}

.quote-text {
  font-family: 'Verdana';
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #324157;
}

.testimonial-author {
  font-family: 'Verdana';
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #324157;
  margin: 0;
}

.testimonial-product {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-start;
  max-width: 330px;
}

.testimonial-product .product-image {
  width: 119px;
  height: 82px;
  flex-shrink: 0;
}

.testimonial-product .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(1px 0px 5px rgba(0, 0, 0, 0.25));
}

.testimonial-product .product-text {
  font-family: 'Verdana';
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  color: #5BA2AC;
  margin: 0;
}

@media (max-width: 991px) {
  .testimonials-section {
    padding: 60px 0px;
  }

  .testimonials-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .testimonials-carousel {
    margin-bottom: 60px;
    padding: 20px 0;
  }

  .testimonials-carousel .swiper {
    height: 200px;
    padding: 0 30px;
  }

  .testimonials-carousel .swiper-slide {
    width: 126px !important;
    height: 151px;
    opacity: 0.6;
    transform: scale(0.85);
  }

  .testimonials-carousel .swiper-slide-active {
    width: 150px !important;
    height: 180px;
    opacity: 1;
    transform: scale(1);
    z-index: 10;
  }

  .testimonials-list {
    gap: 35px;
  }

  .testimonial-title {
    font-size: 16px;
    line-height: 23px;
  }

  .testimonial-content {
    font-size: 16px;
    line-height: 19px;
  }

  .quote-text {
    font-size: 16px;
    line-height: 19px;
  }

  .testimonial-author {
    font-size: 16px;
    line-height: 19px;
  }
}

.faq-section {
  background: #5BA2AC;
  border-radius: 80px 80px 0 0;
  padding: 50px 20px 80px;
  margin-top: -40px;
}

.faq-title {
  font-family: 'Verdana', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  color: #FFFFFF;
  margin: 0 0 40px;
}

.faq-list {
  max-width: 824px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 17px;
  gap: 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question-text {
  font-family: 'Verdana', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #324157;
  flex: 1;
}

.faq-arrow {
  width: 14px;
  height: 9px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 17px;
}

.faq-answer.active {
  max-height: 500px;
  padding: 0 17px 17px;
}

.faq-answer p {
  font-family: 'Verdana', sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #324157;
  margin: 0;
}

@media (max-width: 991px) {
  .faq-section {
    border-radius: 50px 50px 0 0;
    padding: 30px 0px 60px;
  }

  .faq-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .faq-list {
    max-width: 100%;
  }

  .faq-item {
    min-height: auto;
  }

  .faq-question {
    padding: 12px 17px;
    min-height: 48px;
  }

  .faq-question-text {
    font-size: 16px;
    line-height: 19px;
  }
}

.scientific-references-section {
  padding: 60px 20px 80px;
  background: #FFFFFF;
}

.references-title {
  font-family: 'Verdana', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 30px;
  text-align: center;
  color: #324157;
  margin: 0 0 30px;
}

.references-logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 885px;
  margin: 0 auto 36px;
}

.reference-logo {
  flex: 0 0 auto;
}

.reference-logo img {
  width: 221px;
  height: 82px;
  object-fit: contain;
}

.references-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 50px;
  max-width: 852px;
  margin: 0 auto;
}

.references-column {
  flex: 1;
  width: 400px;
}

.references-column p {
  font-family: 'Verdana', sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 17px;
  color: #7A7A7A;
  margin: 0;
}

@media (max-width: 991px) {
	
	
  .scientific-references-section {
    padding: 40px 0px 60px;
  }

  .references-title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
  }

  .references-logos {
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 30px;
  }

  .reference-logo {
    flex: 0 0 50%;
  }

  .reference-logo img {
    width: 164px;
    height: 61px;
  }

  .references-content {
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
  }

  .references-column {
    width: 100%;
  }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 20px;
}

.popup-overlay.active {
  display: flex;
}

.popup-container {
  position: relative;
  width: 607px;
  max-width: 100%;
  background: #FFFFFF;
  border: 2.77px solid #FFB44F;
  box-shadow: 0px 3.69px 3.69px rgba(0, 0, 0, 0.1);
  border-radius: 22px;
  padding: 25px 20px;
  text-align: center;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.affiliate-email-desc p {
    max-width: 810px;
    margin: 0 auto 16px;
    font-family: 'Verdana', Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #324157;
}

#emails .faq-answer.active {
	max-height: 100% !important;
}


.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  color: #324157;
  cursor: pointer;
  line-height: 1;
}

.popup-title {
  font-family: 'Verdana', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 37px;
  letter-spacing: -0.66px;
  color: #E86A4A;
  margin: 0 0 15px;
}

.popup-description {
  font-family: 'Verdana', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #324157;
  margin: 0 0 30px;
  text-align: center;
  max-width: 450px;
}

.popup-cards {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.popup-card {
  flex: 1;
  position: relative;
  padding: 15px 10px;
  border-radius: 22px;
  text-align: center;
  width: 147px;
  max-width: 100%;
}

.popup-card-left {
  background: #F5F7F6;
  border: 2.77px solid #FFFFFF;
  box-shadow: 0px 3.69px 3.69px rgba(0, 0, 0, 0.1);
}

.popup-card-right {
  background: linear-gradient(9.1deg, rgba(86, 157, 170, 0.8) 4.9%, rgba(135, 203, 185, 0.8) 74.06%, rgba(185, 237, 221, 0.8) 109.32%);
  border: 4px solid #FFB44F;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}

.popup-card-icon {
  position: absolute;
  top: -15px;
  right: -10px;
  font-size: 32px;
  line-height: 1;
}

.popup-card-title {
  font-family: 'Verdana', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.66px;
  text-transform: uppercase;
  color: #324157;
  margin: 0 0 8px;
}

.popup-card-left .popup-card-price {
  font-family: 'Verdana', sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 14px;
  color: #324157;
  margin: 0 0 10px;
}

.popup-card-right .popup-card-price {
  font-family: 'Verdana', sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 14px;
  margin: 0 0 10px;
}

.popup-card-right .popup-card-price .popup-price-1 {
  color: #E42100;
}

.popup-card-right .popup-card-price .popup-price-2 {
  color: #E42100;
  font-weight: 700;
  text-decoration: line-through;
}

.popup-description span {
  color: #116F93;
}

.popup-card-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 90px;
}

.popup-card-image img {
  max-width: 125px;
  height: auto;
  object-fit: contain;
}

.popup-card-right .popup-card-image {
  position: relative;
}

.popup-card-right .popup-card-image img:nth-child(2) {
  position: absolute;
  left: 55%;
  bottom: 0;
}

.hand-icon-2 {
  position: absolute;
  right: -25px;
  top: 100%;
  transform: translateY(-50%);
  width: 52px;
  height: 56px;
}

.popup-accept-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 264px;
  max-width: 100%;
  height: 46px;
  background: #E86A4A;
  box-shadow: 0px 1.85px 7.38px rgba(39, 39, 39, 0.2);
  border-radius: 7px;
  font-family: 'Verdana', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  text-decoration: none;
  margin-bottom: 15px;
  position: relative;
}

.popup-accept-btn:hover {
  background: #d55a3a;
  color: #FFFFFF;
}

.popup-accept-btn .hand-icon {
  position: absolute;
  right: -20px;
  top: -5px;
  width: 52px;
  height: 55px;
}

.popup-decline-link {
  font-family: 'Verdana', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  color: #324157;
  text-decoration: underline;
}

.popup-decline-link:hover {
  color: #5BA2AC;
}

.upsell_downsell-page .page_content, .thanks-you-page .page_content {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.upsell_downsell-page .page_content .stepper-block {
  margin-bottom: 45px;
}

.upsell_downsell-page .page_content, .thanks-you-page .page_content {
  font-size: 18px;
  line-height: 1.5;
}

.upsell_downsell-page .page_content h2.wp-block-heading  {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #2F2F2F;
  margin-top: 30px;
  margin-bottom: 30px;
  max-width: 1020px;
  width: 100%;
  margin-left: auto;
  margin-right: auto
}

.upsell_downsell-page .page_content h3.wp-block-heading  {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: #2F2F2F;
  margin-top: 30px;
  margin-bottom: 30px;
  max-width: 1020px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.upsell_downsell-page .page_content .guarantee_img_guttenberg {
  margin-top: 30px;
  margin-bottom: 30px;
}

.decline_uoffer {
  color: #BC282F;
  font-size: 18px;
  line-height: 24px;
  text-decoration-line: underline;
}

.hand-icon-3 {
  position: absolute;
  right: -20px;
  top: 100%;
  transform: translateY(-50%);
  width: 61px;
  height: 65px;
}

.last-chance-offer {
  max-width: 870px;
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 800;
  font-size: 30px;
  line-height: 36px;
  color: #BC282F;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 50px;
}

.last-chance-offer-reserve {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.64px;
  color: #2F2F2F;
  margin-bottom: 30px;
}

.protected-offer {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 700;
  font-size: 25px;
  line-height: 40px;
  color: #FFB44F;
  text-align: center;
  margin-bottom: 0px;
}

.meateleve-slogan {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 700;
  font-size: 56.0769px;
  line-height: 45px;
  text-transform: uppercase;
  color: #569DAA;
  text-align: center;
  margin-top: 50px;
  margin-bottom: -30px;
}

.thanks-you-page .page_content h1.wp-block-heading, .thanks-you-page .page_content h2.wp-block-heading {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: #324157;
}

.thanks-you-page .important {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #324157;
  margin-top: 30px;
  margin-bottom: 30px;
}

.custom-margin-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.gift-cards__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 80px;
}

.custom-margin-top-30 {
  margin-top: 30px;
}

#lastofferPopup .popup-container {
  max-width: 607px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 45px;
}

#lastofferPopup .popup-container .popup-title {
  max-width: 450px;
}

#lastofferPopup .popup-container .popup-description {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #324157;
}

#lastofferPopup .popup-container .popup-description span {
  color: #E86A4A;
}

.single-page .page_content {
  margin-bottom: 40px;
}

.single-page .page_content h1 {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: #324157;
  margin-bottom: 20px;
  padding-top: 30px;
}

.single-page .page_content h2 {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #324157;
  margin-bottom: 20px;
}

.single-page .page_content h3 {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #324157;
  margin-bottom: 20px;
}

.single-page .page_content p {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
}

.footer-nav {
  list-style: none;
}

.thanks-you-page .page_content p a {
 color: #2063CD;
 text-decoration: underline !important;
}

.gift-card a {
	color: #fff !important;
	text-decoration: none !important;
}

.advantage-section-2 {
	padding-top: 30px;
	padding-bottom: 30px;
}

.metaleve-promo__decline {
	position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.metaleve-promo__decline a {
	font-style: normal;
	font-weight: 400;
	font-size: 17px;
	line-height: 17px;
	text-decoration: underline !important;
	color: #BC282F;
}


@media (min-width: 768px) and (max-width: 991px) {
		.hero-product-image-mobile img {
		max-width: 280px;
	}
	    .certificates-badges {
        max-width: 400px;
    }
	
	   .hero-product-image-mobile {
		display: flex;
        flex-direction: column;
        align-content: center;
        align-items: center;
   }
	
	
}

@media (max-width: 768px) {
	
	.popup-accept-btn {
		font-size: 16px;
		line-height: 18px;
	}
	.metaleve-promo__decline a {
		font-size: 14px;
		line-height: 14px;
	}
	
	.metaleve-promo__decline {
    bottom: 10px;
    width: 185px;
	}
	
	.hero-product-image-mobile img {
	max-width: 280px;
}
	.certificates-badges {
        max-width: 400px;
    }
   .hero-product-image-mobile {
		display: flex;
        flex-direction: column;
        align-content: center;
        align-items: center;
   }

	
  #lastofferPopup .popup-container, .popup-container  {
    width: 330px;
  }
	
  .site-logo a {
	  margin-left: 0px;
  }

  .thanks-you-page .page_content h1.wp-block-heading, .thanks-you-page .page_content h2.wp-block-heading, .upsell_downsell-page .page_content h2.wp-block-heading, .last-chance-offer, .single-page .page_content h1  {
    font-size: 20px;
    line-height: 24px;
  }

  .upsell_downsell-page .page_content, .thanks-you-page .page_content, .single-page .page_content p  {
    font-size: 16px;
    line-height: 19px;
  }

  .thanks-you-page .important, .last-chance-offer-reserve, .single-page .page_content h2, .single-page .page_content h3 {
    font-size: 20px;
    line-height: 24px;
  }
  .wp-block-list {
    padding-left: 20px;
  }

  :where(.wp-block-columns.is-layout-flex) {
    gap: 5px;
  }

  .meateleve-slogan {
    font-size: 27px;
    line-height: 32px;
    margin-top: 20px;
    margin-bottom: -50px;
  }

  .decline_uoffer {
    font-size: 16px;
    line-height: 18px;
  }

  .guarantee-box-block {
    padding: 0 !important;
  }

  .protected-offer {
    font-size: 21px;
    line-height: 26px;
  }

  .upsell_downsell-page {
    margin-top: 30px !important;
  }

  .popup-title {
    font-size: 24px;
    line-height: 32px;
  }
}

@media (max-width: 480px) {
.hero-product-image-mobile img {
	max-width: 160px;
}
  .stepper__step--active .stepper__number, .stepper__step--pending .stepper__number  {
    width: 16px !important;
    height: 16px !important;
    font-size: 10px !important;
    line-height: 16px !important;
  }

  .stepper__step--completed .stepper__icon {

    width: 16px !important;
    height: 16px !important;
    padding: 3px !important;
    line-height: 16px !important;
  }
}

/* ===== AFFILIATE PAGE ===== */
.affiliate-page {
    background: #FFFFFF;
    font-family: 'Verdana', Arial, sans-serif;
}

/* HERO */
.affiliate-hero {
    background: #5BA2AC;
    position: relative;
    overflow: hidden;
}
.affiliate-hero .container {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: 740px;
    display: flex;
    align-items: flex-start;
}
.affiliate-hero__content {
    max-width: 668px;
    padding-right: 40px;
    padding-top: 10px;
    flex: 1;
}
.affiliate-hero__title {
    font-family: 'Open Sans', 'Verdana', Arial, sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 49px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.affiliate-hero p {
    font-family: 'Open Sans', 'Verdana', Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #FFFFFF;
}
.affiliate-hero__product {
    position: absolute;
    right: 20px;
    top: 0;
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.affiliate-hero img {
    max-width: 281px;
    max-height: 530px;
    object-fit: contain;
}
@media (max-width: 991px) {
    .affiliate-hero { min-height: auto; }
    .affiliate-hero .container { flex-direction: column; min-height: auto; }
    .affiliate-hero__content { padding-right: 0; max-width: 100%; }
    .affiliate-hero__product {
        position: relative; right: auto; top: auto;
        width: 100%; height: auto; margin-top: 30px;
    }
    .affiliate-hero__product img { max-width: 180px; }
}

/* BENEFITS */
.affiliate-benefits {
    background: #F2F3F5;
    border-radius: 15px;
    padding: 44px 0;
}
.affiliate-benefits__list {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 20px;
    list-style: none;
}
.affiliate-benefits__item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
}
.affiliate-benefits__item:last-child { margin-bottom: 0; }
.affiliate-benefits__icon {
    width: 31px;
    height: 31px;
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.affiliate-benefits__icon svg { width: 31px; height: 31px; }
.affiliate-benefits__icon--x { font-size: 22px; }
.affiliate-benefits__text {
    font-family: 'Verdana', Arial, sans-serif;
    font-size: 18px;
    line-height: 22px;
    color: #324157;
}

/* SHARED SECTION TITLE */
.affiliate-section-title, .affiliate-email-title {
    font-family: 'Verdana', Arial, sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    text-align: center;
    color: #116F93;
    margin-bottom: 40px;
}
.affiliate-section-title--dark { color: #324157; }

/* TARGET */
.affiliate-target { padding: 80px 0; }
.affiliate-target__content {
    max-width: 790px;
    margin: 0 auto;
    font-family: 'Verdana', Arial, sans-serif;
    font-size: 18px;
    line-height: 22px;
    color: #324157;
}
.affiliate-target__content p { margin-bottom: 12px; }
.affiliate-target__content ul { margin: 6px 0 12px 20px; }
.affiliate-target__content li { margin-bottom: 6px; }

/* TOOLS */
.affiliate-tools {
    background: #5BA2AC;
    border-radius: 80px 80px 0 0;
    padding: 60px 0 80px;
}
.affiliate-tools__title {
    font-family: 'Verdana', Arial, sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    color: #FFFFFF;
    text-align: center;
    max-width: 569px;
    margin: 0 auto 30px;
}
.affiliate-tools__intro p {
    font-family: 'Verdana', Arial, sans-serif;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    max-width: 810px;
    margin: 0 auto 40px;
}
.affiliate-tools__steps {
    max-width: 810px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.affiliate-step {
    font-family: 'Verdana', Arial, sans-serif;
    font-size: 22px;
    line-height: 27px;
    color: #FFFFFF;
}
.affiliate-step p { margin: 0; color: #FFFFFF; }
.affiliate-step strong { color: #FFFFFF; }
.affiliate-step a { color: #FFD84A !important; text-decoration: underline !important; }
@media (max-width: 991px) {
    .affiliate-tools { border-radius: 40px 40px 0 0; padding: 40px 0 60px; }
}

/* HOPLINK GENERATOR */
.affiliate-hoplink-wrapper {
    max-width: 456px;
    margin: 0 auto;
    border-radius: 20px 20px 12px 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
.affiliate-hoplink__header {
    background: #FFFFFF;
    padding: 15px;
    text-align: center;
}
.affiliate-hoplink__header-title {
    font-family: 'Verdana', Arial, sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 38px;
    color: #322F32;
}
.affiliate-hoplink__form {
    background: #FFB44F;
    padding: 30px;
}
.affiliate-hoplink__label {
    font-family: 'Verdana', Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    display: block;
    margin-bottom: 8px;
}
.affiliate-hoplink__input {
    width: 100%;
    height: 40px;
    background: #FFFFFF;
    border: 2px solid #767676;
    border-radius: 5px;
    padding: 0 12px;
    font-family: 'Verdana', Arial, sans-serif;
    font-size: 14px;
    margin-bottom: 20px;
    box-sizing: border-box;
}
.affiliate-hoplink__checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
}
.affiliate-hoplink__checkbox {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 5px;
    cursor: pointer;
    accent-color: #E86A4A;
}
.affiliate-hoplink__checkbox-label {
    font-family: 'Verdana', Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    cursor: pointer;
}
.affiliate-hoplink__checkbox-label a {
    color: #FFFFFF !important;
    text-decoration: underline !important;
    font-size: 14px;
}
.hoplink-result {
    display: none;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 12px;
}
.hoplink-result__label {
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    font-family: 'Verdana', Arial, sans-serif;
}
.hoplink-result__url {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 12px;
    color: #324157;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Verdana', Arial, sans-serif;
}
.hoplink-result__url span { flex: 1; word-break: break-all; }
.hoplink-result__copy-btn {
    background: #5BA2AC;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'Verdana', Arial, sans-serif;
    font-weight: 700;
    flex-shrink: 0;
    transition: background 0.2s;
}
.hoplink-result__copy-btn:hover { background: #116F93; }


.affiliate-hoplink__btn:hover {
  background: #D95A3A;
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
}

.affiliate-hoplink__btn {
  display: block;
  background: #E86A4A;
  border-radius: 7px;
  border: none;
  padding: 12px 20px;
  font-family: 'Verdana';
  font-weight: 700;
  font-size: 18.4615px;
  line-height: 22px;
  color: #FFFFFF;
  text-decoration: none;
  text-align: center;
  box-shadow: 0px 1.84615px 7.38461px rgba(39, 39, 39, 0.2);
  cursor: pointer;
  width: 100%;
  margin: 15px 0;
  position: relative;
  transition: background 0.3s;
  min-height: 46.15px;
}

.affiliate-hoplink__btn .hand-icon {
  position: absolute;
  right: 0;
  top: 100%;
  transform: translateY(-50%);
  width: 61px;
  height: 65px;
}




/* VIDEOS */
.affiliate-videos { padding: 60px 0; }
.affiliate-videos__intro {
    max-width: 810px;
    margin: 0 auto 16px;
    font-family: 'Verdana', Arial, sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #324157;
}
.affiliate-videos__links {
    max-width: 810px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.affiliate-videos__links a {
    font-family: 'Verdana', Arial, sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #116F93 !important;
    text-decoration: underline !important;
}

/* PRODUCT IMAGES */
.affiliate-images {
    background: linear-gradient(141.64deg, #569DAA -0.4%, #87CBB9 71.82%, #B9EDDD 137.86%);
    border-radius: 80px;
    padding: 60px 0;
	margin-bottom: 0px;
}
.affiliate-images__title {
    font-family: 'Verdana', Arial, sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.affiliate-images__description {
	margin-bottom: 50px;
}

.affiliate-images__description p {
    max-width: 810px;
    margin: 0 auto 20px;
    font-family: 'Verdana', Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
}
.affiliate-images__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 911px;
    margin: 0 auto 25px;
}
.affiliate-images__item {
    width: 209px;
    height: 209px;
    border-radius: 12px;
    overflow: hidden;
    display: block;
}


.affiliate-images__item img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
@media (max-width: 991px) {
    .affiliate-images { border-radius: 40px; }
    .affiliate-images__grid { gap: 15px; }
    .affiliate-images__item { width: 140px; height: 140px; }
}

/* PIXELS */
.affiliate-pixels { padding: 60px 0; }
.affiliate-pixels_content {
	max-width: 565px;
}

.affiliate-pixels-title {
    font-family: 'Verdana', Arial, sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    color: #116F93;
    margin-bottom: 40px;
}

.affiliate-pixels__text {
	font-family: 'Verdana';
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #324157;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.affiliate-pixels__image {
	text-align: right;
}



.affiliate-pixels__text p { margin-bottom: 12px; }
.affiliate-pixels__text a { color: #116F93 !important; text-decoration: underline !important; }


/* TERMS */
.affiliate-terms { padding: 60px 0; background: #F2F3F5;}
.affiliate-terms__title {
    font-family: 'Verdana', Arial, sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    text-align: center;
    color: #324157;
    margin-bottom: 40px;
}
.affiliate-terms__content {
	max-width: 810px;
    margin: 0 auto;
}
.affiliate-terms__content p {
    font-family: 'Verdana', Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #324157;
}

.affiliate-terms__content ol li {
	margin-bottom: 16px;
	font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #324157;
}


/* CONTACT */
.affiliate-contact { padding: 60px 0 80px; text-align: center; }
.affiliate-contact__title {
    font-family: 'Verdana', Arial, sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    color: #324157;
    margin-bottom: 24px;
}
.affiliate-contact__text {
    max-width: 810px;
    margin: 0 auto;
    font-family: 'Verdana', Arial, sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 27px;
    color: #324157;
}
.affiliate-contact__text p a { color: #FFB44F !important; text-decoration: underline !important; margin-top: 8px; font-weight:700;}

@media (max-width: 992px) {
	.affiliate-pixels__image {
		text-align: center;
	}
	.affiliate-pixels__image img {
		width: 100%;
		height: auto;
		max-width: 420px;
	}
	.affiliate-hero img {
		max-width: 180px;
	}
	
}

@media (max-width: 767px) {
    .affiliate-pixels__inner { flex-direction: column; align-items: center; }
	.affiliate-hero__title, .affiliate-email-title, .affiliate-section-title, .affiliate-tools__title, .affiliate-images__title, .affiliate-terms__title, .affiliate-contact__title, .affiliate-pixels-title {
		font-size: 20px;
        line-height: 24px;
		margin-bottom: 20px;
	}
	
	.affiliate-hoplink__header-title {
		font-size: 20px;
        line-height: 24px;
	}
	
	.affiliate-hero p, .affiliate-benefits__text, .affiliate-target__content, .affiliate-target__content, .affiliate-step, .affiliate-images__description p, .affiliate-pixels__text, .affiliate-terms__content p, .affiliate-tools__intro p, .affiliate-videos__links a, .affiliate-terms__content ol li, .affiliate-contact__text, .affiliate-hoplink__checkbox-label, .affiliate-hoplink__label, .affiliate-hoplink__checkbox-label a {   
		font-size: 16px;
        line-height: 19px;
		
	}
	
	.affiliate-hero img {
		max-width: 180px;
	}
	
	.affiliate-images__item {
        width: 45%;
        height: auto;
    }
		
}

#dtc-page {
	margin-top: 0px;
}

.dtc-products-section {
  padding: 60px 0 80px;
  border-radius: 0px;
}

.dtc-products-section .container {
  max-width: 1200px;
}

.dtc-products-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 100px;
}

.dtc-product-card-wrapper {
  width: 330px;
  flex-shrink: 0;
}

.dtc-product-card-wrapper.dtc-featured-wrapper {
  width: 390px;
}

.dtc-product-card {
  border-radius: 22.1538px;
  padding: 21px 13px 13px;
  box-shadow: 0px 3.69px 3.69px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(0.92px);
  position: relative;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.dtc-product-card-info-wrapper {
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .dtc-product-card-info-wrapper {
    background-image: none !important;
  }
}

.dtc-product-quantity-desktop {
  display: block;
  font-family: 'Verdana';
  font-weight: 400;
  font-size: 20.3077px;
  line-height: 31px;
  color: #324157;
  margin-bottom: 0px;
  text-align: center;
}

.dtc-product-card.dtc-featured .dtc-product-quantity-desktop {
  font-size: 23.9665px;
  line-height: 37px;
}

.dtc-product-card-info-wrapper .dtc-product-quantity {
  display: none;
}

.dtc-product-card.dtc-featured {
  padding: 25px 16px 16px;
}

.dtc-savings-badge {
  position: absolute;
  top: -35px;
  right: -25px;
  width: 114px;
  height: 114px;
  background: #EA3A19;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Verdana';
  font-weight: 700;
  font-size: 14.3px;
  line-height: 26px;
  color: #FFFFFF;
  text-align: center;
  transform: rotate(11.26deg);
  padding: 40px 30px;
  z-index: 10;
  display: flex;
  flex-direction: column;
}


.dtc-product-card-title {
  font-family: 'Verdana';
  font-weight: 700;
  font-size: 33.2308px;
  line-height: 37px;
  text-transform: uppercase;
  letter-spacing: -0.664615px;
  margin: 21px 0 12px;
  color: #324157;
}

.dtc-product-card-title.dtc-featured-title {
  font-size: 39.22px;
  line-height: 44px;
  letter-spacing: -0.784358px;
  color: #E86A4A;
  margin: 25px 0 15px;
}

.dtc-product-quantity {
  font-family: 'Verdana';
  font-weight: 400;
  font-size: 20.3077px;
  line-height: 31px;
  color: #324157;
  margin-bottom: 15px;
}

.dtc-product-card.dtc-featured .dtc-product-quantity {
  font-size: 23.9665px;
  line-height: 37px;
}

.dtc-product-price-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  margin: 5px 0;
  padding: 0 5px;
}

.dtc-product-price-display {
  display: none;
}

.dtc-product-price-main {
  display: flex;
  align-items: center;
  gap: 1px;
}

.dtc-price-large {
  font-family: 'Verdana';
  font-weight: 700;
  font-size: 64.6154px;
  line-height: 65px;
  letter-spacing: -1.93846px;
  color: #5BA2AC;
}

.dtc-price-large.dtc-featured-price {
  font-family: 'Verdana';
  font-weight: 800;
  font-size: 76.257px;
  line-height: 76px;
  letter-spacing: -2.28771px;
  color: #E86A4A;
}

.dtc-price-currency {
  font-family: 'Verdana';
  font-weight: 400;
  font-size: 27.6923px;
  line-height: 22px;
  color: #5BA2AC;
  margin-bottom: 0px;
  margin-left: 5px;
  margin-right: 5px;
}

.dtc-price-currency.dtc-featured-price {
  font-family: 'Verdana';
  font-weight: 500;
  font-size: 32.6816px;
  line-height: 26px;
  color: #E86A4A;
  margin-bottom: 0px;
  margin-left: 5px;
  margin-right: 5px;
}

.dtc-price-label {
  font-family: 'Verdana';
  font-weight: 400;
  font-size: 12.9231px;
  line-height: 18px;
  color: #324157;
  margin-bottom: 0px;
}

.dtc-product-price-display .dtc-price-label {
  margin-bottom: 0;
  margin-top: 5px;
  margin-left: 0;
}

.dtc-product-card.dtc-featured .dtc-price-label {
  font-size: 15.2514px;
  line-height: 15px;
}

.dtc-ebook-badge {
  background: #5BA2AC;
  border-radius: 5.99px;
  padding: 0;
  margin: 5px auto;
  max-width: fit-content;
  min-height: 33px;
  display: flex;
  align-items: center;
}

.dtc-ebook-badge span {
  font-family: 'Verdana';
  font-weight: 400;
  font-size: 19.36px;
  line-height: 33px;
  color: #FFFFFF;
  padding: 0 22px;
}

.dtc-product-card.dtc-featured .dtc-ebook-badge {
  min-height: 33px;
  width: 260px;
  margin: 5px auto;
}

.dtc-product-card.dtc-featured .dtc-ebook-badge span {
  font-size: 19.36px;
  line-height: 33px;
  width: 100%;
  text-align: center;
}

.dtc-product-image {
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dtc-product-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(4px 0px 10px rgba(0, 0, 0, 0.25));
}

.dtc-product-card.dtc-featured .dtc-product-image img {
  filter: drop-shadow(1.76px 0px 8.79px rgba(0, 0, 0, 0.25));
}

.dtc-add-to-cart-btn {
  display: block;
  background: #E86A4A;
  border-radius: 7px;
  border: none;
  padding: 12px 20px;
  font-family: 'Verdana';
  font-weight: 700;
  font-size: 18.4615px;
  line-height: 22px;
  color: #FFFFFF;
  text-decoration: none;
  text-align: center;
  box-shadow: 0px 1.84615px 7.38461px rgba(39, 39, 39, 0.2);
  cursor: pointer;
  width: 100%;
  margin: 15px 0;
  position: relative;
  transition: background 0.3s;
  min-height: 46.15px;
}

.dtc-add-to-cart-btn:hover {
  background: #D95A3A;
  color: #FFFFFF;
  text-decoration: none;
}

.dtc-product-card.dtc-featured .dtc-add-to-cart-btn {
  font-size: 21.7877px;
  line-height: 26px;
  border-radius: 8.26117px;
  min-height: 54.47px;
  padding: 14px 20px;
  box-shadow: 0px 2.17877px 8.71508px rgba(39, 39, 39, 0.2);
}

.dtc-product-total {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 5px 0;
}

.dtc-total-label {
  font-family: 'Verdana';
  font-weight: 400;
  font-size: 22.1538px;
  line-height: 37px;
  color: #324157;
  letter-spacing: -0.376615px;
}

.dtc-total-old {
  font-family: 'Verdana';
  font-weight: 700;
  font-size: 25.8462px;
  line-height: 26px;
  color: #324157;
  text-decoration: line-through;
}

.dtc-total-new {
  font-family: 'Verdana';
  font-weight: 700;
  color: #324157;
  font-size: 32px;
  line-height: 36px;
}

.dtc-product-card.dtc-featured .dtc-total-label {
  font-size: 26.1452px;
  letter-spacing: -0.444469px;
  line-height: 44px;
}

.dtc-product-card.dtc-featured .dtc-total-new {
  font-size: 39.2179px;
  line-height: 41px;
}

.dtc-payment-methods {
  margin: 10px 0;
  display: flex;
  justify-content: center;
}

.dtc-payment-methods img {
  max-width: 199px;
  width: 100%;
  height: auto;
}

.dtc-shipping-text {
  font-family: 'Verdana';
  font-weight: 700;
  font-size: 14.77px;
  line-height: 24px;
  color: #324157;
  text-align: center;
  margin: 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.dtc-shipping-text-2  {
  font-family: 'Verdana';
  font-weight: 700;
  font-size: 14.77px;
  line-height: 24px;
  color: #324157;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.dtc-product-card.dtc-featured .dtc-shipping-text {
  font-size: 17.43px;
  line-height: 28px;
}

.dtc-product-card.dtc-featured .dtc-total-new del {
  font-size: 30px !important;
  text-decoration: line-through !important;
  line-height: 42px;
}

.dtc-product-card.dtc-featured .dtc-total-new ins {
  font-size: 39px !important;
  text-decoration: none !important;
  line-height: 42px;
}

.dtc-product-card .dtc-total-new del {
  font-size: 26px !important;
  text-decoration: line-through !important;
  line-height: 36px;
}

.dtc-product-card .dtc-total-new ins {
  font-size: 32px !important;
  text-decoration: none !important;
  line-height: 36px;
}

/* Popular badge above featured card */


@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: translateZ(0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

.dtc-popular-badge-wrap {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  white-space: nowrap;
}

.dtc-popular-badge {
  display: inline-block;
  background: #E86A4A;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px;
  animation: 2s ease 0s infinite normal none running bounce;
  color: #FFFFFF;
  font-family: 'Inter', 'Verdana', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}

.dtc-popular-badge::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top-color: #E86A4A;
  border-bottom: none;
}


.emails-section {
	padding: 60px 0;
}

.emails-section .faq-item {
	border: 1px solid #dee2e6;
}

@media (max-width: 991px) {
  .dtc-products-section {
    padding: 40px 0 50px;
  }

  .dtc-products-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .dtc-product-card-wrapper[data-order="1"] { order: 1; }
  .dtc-product-card-wrapper[data-order="2"] { order: 2; }
  .dtc-product-card-wrapper[data-order="3"] { order: 3; }

  .dtc-product-card-wrapper,
  .dtc-product-card-wrapper.dtc-featured-wrapper {
    width: 100%;
    max-width: 360px;
  }

  .dtc-product-card {
    margin-bottom: 0;
    padding: 14px 14px;
    display: flex;
    flex-direction: column;
  }

  .dtc-product-card.dtc-featured {
    padding: 14px 14px;
  }

  .dtc-product-price-wrapper { display: none; }

  .dtc-product-price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 15px 0;
  }

  .dtc-product-card-title { order: 1; text-align: left; }
  .dtc-product-quantity-desktop { display: none; }
  .dtc-product-card-info-wrapper .dtc-product-quantity { display: block; }
  .dtc-product-image { display: none !important; }

  .dtc-product-card-info-wrapper {
    order: 2;
    display: flex;
    flex-direction: column;
    padding-right: 45%;
    background-size: 68%;
    background-repeat: no-repeat;
    background-position: 120% center;
    min-height: 200px;
  }

  .dtc-add-to-cart-btn { order: 3; }
  .dtc-product-total   { order: 4; }
  .dtc-payment-methods { order: 5; }
  .dtc-shipping-text   { order: 6; }
  .dtc-shipping-text-2 {
        order: 7;
    }

  .dtc-savings-badge {
    width: 80px;
    height: 80px;
    top: -20px;
    right: -25px;
    padding: 25px 20px;
    font-size: 10px;
    line-height: 20px;
  }

  .dtc-savings-badge span { font-size: 18px; }

  .dtc-product-card-title {
    font-size: 33.2308px;
    line-height: 37px;
    margin: 12px 0 8px;
  }

  .dtc-product-card-title.dtc-featured-title {
    font-size: 33.2308px;
    line-height: 37px;
    letter-spacing: -0.664615px;
    color: #E86A4A;
  }

  .dtc-price-large { font-size: 64.6154px; line-height: 65px; }
  .dtc-price-large.dtc-featured-price {
    font-size: 64.6154px;
    line-height: 65px;
    letter-spacing: -1.93846px;
    color: #E86A4A;
  }
  .dtc-price-currency { font-size: 27.6923px; line-height: 22px; }
  .dtc-price-currency.dtc-featured-price {
    font-size: 27.6923px;
    line-height: 22px;
    color: #E86A4A;
  }

  .dtc-add-to-cart-btn {
    font-size: 18.4615px;
    line-height: 22px;
    min-height: 46.15px;
    margin: 5px 0;
  }
  .dtc-product-card.dtc-featured .dtc-add-to-cart-btn {
    font-size: 18.4615px;
    line-height: 22px;
    min-height: 46.15px;
  }

  .dtc-total-label { font-size: 22.1538px; line-height: 37px; }
  .dtc-total-old   { font-size: 25.8462px; line-height: 26px; }
  .dtc-total-new   { font-size: 33.2308px; line-height: 35px; }
  .dtc-payment-methods img { max-height: 21.53px; }
  .dtc-shipping-text { font-size: 14.7692px; line-height: 24px; }
  
  .dtc-product-card.dtc-featured .dtc-product-quantity, .dtc-product-quantity {
	font-size: 18px;
	line-height: 21px;
  }
  .dtc-product-card.dtc-featured .dtc-total-label {
    font-size: 21px;
    line-height: 44px;
  }
  
  .dtc-reviews-grid {
    gap: 20px !important;
  }
  
  .dtc-trust-title {
	  font-size: 20px !important;
      line-height: 24px !important;
  }
  
  .dtc-product-card.dtc-featured .dtc-shipping-text {
        font-size: 14.7692px;
        line-height: 24px;
  }
  
}

@media (max-width: 480px) {
	.dtc-cta-btn {
		font-size: 16px !important;
		line-height: 21px !important;
		padding: 10px 20px !important;
	}
}


.dtc-faq-section {
  border-radius: 80px 80px 0 0;
  padding: 50px 20px 80px;
  margin-top: -40px;
}

.dtc-faq-title {
  font-family: 'Verdana', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  color: #000000;
  margin: 0 0 40px;
}

.dtc-faq-list {
  max-width: 824px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dtc-faq-item {
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
}

.dtc-faq-question {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 17px;
  gap: 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.dtc-faq-question-text {
  font-family: 'Verdana', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #324157;
  flex: 1;
}

.dtc-faq-arrow {
  width: 14px;
  height: 9px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.dtc-faq-question[aria-expanded="true"] .dtc-faq-arrow {
  transform: rotate(180deg);
}

.dtc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 17px;
}

.dtc-faq-answer.active {
  max-height: 500px;
  padding: 0 17px 17px;
}

.dtc-faq-answer p {
  font-family: 'Verdana', sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #324157;
  margin: 0;
}

.video-content-after {
	display: none;
}

@media (max-width: 991px) {
  .dtc-faq-section {
    border-radius: 50px 50px 0 0;
    padding: 30px 0px 60px;
  }
  .dtc-faq-title { font-size: 20px; line-height: 24px; margin-bottom: 30px; }
  .dtc-faq-list { max-width: 100%; }
  .dtc-faq-question { padding: 12px 17px; min-height: 48px; }
  .dtc-faq-question-text { font-size: 16px; line-height: 19px; }
}

/* ── DTC Header ── */
.dtc-header {
  background: #569DAA;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dtc-header__logo {
  font-family: 'Verdana', Arial, sans-serif;
  font-weight: 700;
  font-size: 27px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none !important;
}

/* ── DTC Trust bar ── */
.dtc-trust-section {
  padding: 40px 0;
}
.dtc-trust-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.dtc-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 380px;
  flex: 1;
  min-width: 240px;
}
.dtc-trust-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-top: 2px;
}
.dtc-trust-icon img,
.dtc-trust-icon svg { width: 30px; height: 30px; }
.dtc-trust-title {
  font-family: 'Calistoga', 'Verdana', serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.4;
  color: #FFFFFF;
  margin-bottom: 6px;
}
.dtc-trust-text {
  font-family: 'Inter', 'Verdana', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: #FFFFFF;
  margin: 0;
}

/* ── DTC Reviews ── */
.dtc-reviews-section { background: #F9F9F9; padding: 60px 0; }
.dtc-reviews-header  { text-align: center; margin-bottom: 40px; }
.dtc-reviews-title {
  font-family: 'Calistoga', 'Verdana', serif;
  font-weight: 600;
  font-size: 49px;
  line-height: 1.3;
  color: #212529;
  margin-bottom: 8px;
}
.dtc-reviews-subtitle {
  font-family: 'Inter', 'Verdana', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #212529;
}
@media (max-width: 767px) { .dtc-reviews-title { font-size: 28px; line-height: 32px; } }

.dtc-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 0 auto;
}
@media (max-width: 991px) { .dtc-reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .dtc-reviews-grid { grid-template-columns: 1fr; } }

.dtc-review-card {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 2px 3px 4px rgba(182,182,182,0.25);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dtc-review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #5BA2AC;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 16px; color: #FFFFFF;
  flex-shrink: 0;
}

img.dtc-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.dtc-review-name   { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 15px; color: #1A0800; }
.dtc-review-city   { font-family: 'Inter', sans-serif; font-weight: 300; font-size: 12px; color: rgba(0,0,0,0.8); }
.dtc-review-stars  { color: #FFB44F; font-size: 14px; letter-spacing: 1px; }
.dtc-review-text   { font-family: 'Inter', sans-serif; font-weight: 400; font-size: 15px; line-height: 1.55; color: #374151; flex: 1; }
.dtc-review-verified {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #00B67A;
    display: flex;
    align-items: center;
    gap: 6px;
}


/* ── DTC CTA button ── */
.dtc-cta-wrap { text-align: center; padding: 40px 0; }
.dtc-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #E86A4A;
  box-shadow: 0px 1.85px 7.38px rgba(39,39,39,0.2);
  border-radius: 7px;
  padding: 16px 40px;
  font-family: 'Verdana', Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #FFFFFF;
  text-decoration: none !important;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.dtc-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(39,39,39,0.3);
  color: #FFFFFF;
}

.dtc-reviews-header-block {
	display:flex;
	align-items:center;
	justify-content:center;
	gap:15px;
	margin-bottom:30px;
	flex-wrap:wrap;
}

.review_rating_img {
	height: 21px;
	width: auto;
}

.review_rating_trustpilot_img {
	height: 21px;
	width: auto;
}
.review_rating_text {
	font-family: 'Verdana', sans-serif;
	font-size:14px;
	color:#212529;
	line-height: 21px;
}

.dtc-page-title {
  font-family: 'Verdana', sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1.3;
  text-align: center;
  letter-spacing: -1.6px;
  color: #212529;
  margin-bottom: 12px;
}

.dtc-page-subtitle {
  font-family: 'Verdana', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 40px;
}

@media (max-width: 767px) {
	.video-section {
	padding: 15px;
}

	
  .dtc-page-title { font-size: 26px; }
  .dtc-page-subtitle { font-size: 16px;  line-height: 21px;}
  .dtc-featured-col {
	 width: 100%;
  }
  .dtc-savings-badge span {
	 font-size: 18px !important; 
  }
}

.dtc-savings-badge span {
	font-size: 28px;
}

.dtc-featured-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dtc-checkout-section {
  padding: 60px 0;
  background: #FFFFFF;
}

.dtc-checkout-container {
  max-width: 800px !important;
}

.dtc-review-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.dtc-review-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dtc-review-avatar--img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.dtc-review-city {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.8);
}

.dtc-review-flag {
  width: 16px;
  height: 12px;
  object-fit: cover;
}

.dtc-review-stars {
  display: flex;
  gap: 2px;
}

.dtc-trust-section {
  background: #5BA2AC;
}
