/*********** CSS RESET **********/

* {
  margin: 0;
  outline: none;
  padding: 0;
  text-decoration: none;
}

  *, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

html {
  margin: 0;
  -webkit-text-size-adjust: none;
  scroll-behavior: auto;
}

ol, ul {
  list-style: none;
}

a img {
  border: none;
}

a:active {
  outline: none;
}

input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
  margin: 0;
  border: 0;
  padding: 0;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 1000px #fff;
}

script {
  display: none !important;
}


/*********** GLOBAL STYLES **********/

body {
  height: auto;
  max-width: 100%;
  overflow: visible;
  background-color: #fff;
  color: #555;
}

h1, h2, h3, h4, h5, h6 {
  color: #444;
}

a {
  color: inherit;
  cursor: pointer;
}

  a img {
    opacity: 0.99; /*firefox scale bug fix*/
  }

p {
  font-family: DM Sans;
  font-size: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea, select {
  height: 48px;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 12px;
  vertical-align: middle;
  width: 100%;
}

input, textarea, select, button {
  font-size: 16px;
  font-family: DM Sans;
  color: rgba(14, 11, 32, 0.60);
}

textarea {
  min-height: 150px;
}

select {
  width: auto;
  min-width: 50px;
  height: 48px; 
  padding: 6px;
  font-family: 'DM SANS';
  cursor: pointer;
}

  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus,
  input[type="password"]:focus,
  textarea:focus, select:focus {
    border-color: #ccc;
    color: #444;
  }

input[type="checkbox"],
input[type="radio"],
input[type="checkbox"] + *,
input[type="radio"] + * {
  vertical-align: middle;
  cursor: pointer;
}

input[type="button"], input[type="submit"],
button, .button-1, .button-2 {
  cursor: pointer;
}

label, label + * {
  vertical-align: middle;
}

.master-wrapper-content {
  position: relative;
  z-index: 0;
  width: 100%;
  margin: 0 auto;
  flex: 1;
}

.master-column-wrapper {
  position: relative;
  z-index: 0;
}

  .master-column-wrapper:after {
    content: "";
    display: block;
    clear: both;
  }

.side-2:after {
  content: "";
  display: block;
  clear: both;
}

.page {
  min-height: 200px;
  text-align: left;
}

.page-body {
  display: flex;
  flex-direction: row;
  max-width: 100%;
  overflow: hidden;
}

  .page:after,
  .page-title:after,
  .page-body:after {
    content: "";
    display: block;
    clear: both;
  }

.flyout-cart {
  position: absolute;
  top: 45px;
  right: 0;
  z-index: 100;
  width: 300px;
  box-shadow: 0 0 2px rgba(0,0,0,0.25);
  background-color: #fff;
}

  .flyout-cart.active {
    display: block;
  }

#topcartlink {
  display: flex;
  justify-content: center;
  align-items: center;
}

  #topcartlink a {
    background: url('../images/shopping-bag.png') left center no-repeat;
    padding: 0 0 0 20px;
  }

.bg-brand {
  background-color: #f8f93f;
}

.bg-light-grey {
  background-color: #f1f0ef;
}


.brand-btn svg {
  color: #202020;
}

.brand-btn:hover svg {
  color: #fff;
}

/*********** MAIN-WRAPPER ***********/


.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  display: none; 
  z-index: 12; 
}

.master-wrapper-page {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 100%;
}

.not-found-page {
  padding: 100px;
}

.hidden {
  display: none;
}

/********** HEADER **********/

.header-menu {
  position: fixed;
  top: 0;
  z-index: 5;
  width: 100%;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(7.5px);
}

.header {
  height: 80px;
  width: 100%;
  padding: 16px 30px;
  background-color: transparent;
  border-bottom: .75px solid #202020;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.header-right {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.header-links a,
.header-links span,
.header-cart a,
.header-cart span {
  text-decoration: none;
  color: #202020;
  position: relative;
  font-family: DM Sans;
  font-size: 12px;
  line-height: 16.8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  display: flex;
}

  .header-links a:hover,
  .header-cart a:hover {
    text-decoration: underline;
    color: #0E0B20;
  }

  .header-links span:hover,
  .header-cart span:hover {
    text-decoration: underline;
  }

.logo-container a:hover svg path {
  fill: gray;
}

.header-links-wrapper {
  float: right;
  padding: 0;
}

.header-logo {
  display: table-cell;
  text-align: left;
  vertical-align: middle;
  font-size: 0;
  text-align: center;
}

  .header-logo a {
    display: inline-block;
    max-width: 100%;
    line-height: 0; /*firefox line-height bug fix*/
  }

    .header-logo a img {
      max-width: 100%;
      opacity: 1;
    }

.header-upper:after {
  content: "";
  display: block;
  clear: both;
}

.header-selectors-wrapper {
  float: left;
  border: none;
  padding: 0;
}

  .header-selectors-wrapper > div {
    width: auto;
    min-width: 100px;
    margin: 0 12px 0 0;
    line-height: 43px;
  }

  .header-selectors-wrapper select {
    height: 25px;
    padding: 4px;
    font-size: 12px;
  }

.hamburger-menu, close-menu {
  display: none;
  background: none;
  border: none;
}

#header-cta-button {
  color: #0E0B20;
  background-color: #F8F93F;
  border-radius: 5px;
  padding: 14px 24px;
  border: none;
  letter-spacing: 0.1em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

/* Container for the cart button */
.header-cart {
  position: relative;
  display: inline-block;
}

.header-cart-icon {
  color: #202020;
}

.cart-icon-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: flex-end;
  padding-left: 37.58px;
}

.cart-qty {
  position: absolute;
  background-color: #F8F93F;
  color: #0E0B20;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  font-family: DM Sans;
  top: -6px;
  right: -10px;
  font-size: 8px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  padding: 5px;
}

/* Links container */
.links-container {
  display: flex;
}

.header-links {
  display: inline-flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 37.58px;
}

.header-links.header-left {
    gap: 45.1px;
}

/* ADD TO CART NOTIFICATION */

.cart-notification {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 10%;
  right: 2%;
  min-width: 363px;
  background-color: #fff;
  transition: right 0.3s ease-in-out;
  z-index: 9999;
  padding: 16px;
  gap: 16px;
}

.cart-notification-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-notification-header h2 {
  color: #202020;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 20.8px */
}

.close-notification {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.close-notification-icon {
  transition: transform 0.2s ease-in-out;
}

  .close-notification-icon:hover {
    transform: scale(1.1);
  }

.cart-notification-content {
  display: flex;
  flex-direction: column;
}

.cart-notification-buttons {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.notification-item-qty {
    display: flex;
}

  .notification-item-qty p {
    color: #202020;
    font-family: "DM Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase;
  }

.view-cart {
  display: flex;
  height: 48px;
  padding: 6.013px 22px;
  justify-content: center;
  align-items: center;
  width: 50%;
  gap: 8px;
  flex: 1 0 0;
  border-radius: 5px;
  border: 1px solid #000;
  background: #fff;
  color: #202020;
  font-family: "DM Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.view-cart-qty {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #202020;
  color: #fff;
  text-align: center;
  font-family: "DM Sans";
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  width: 16px;
  height: 16px;
  padding: 5px;
}

/* SLIDING CART */
.loading-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

  .loading-spinner.active {
    visibility: visible;
    opacity: 1;
  }

  .loading-spinner::after {
    content: "";
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
  }

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.sliding-cart {
  position: fixed;
  top: 0px;
  right: -100%;
  width: 50%;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 52px 52px 10px;
}

.sliding-menu {
    display: none;
}

.sliding-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

  .sliding-cart-header h2 {
    color: #202020;
    font-family: "STIX Two Text";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 95%; /* 45.6px */
  }


.hone-order-summary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-count {
  color: #202020;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 20.8px */
  margin-bottom: 32px;
}


.sliding-cart-content {
  overflow-y: auto;
  flex-grow: 1;
}

.cart-button {
  cursor: pointer;
}

.close-cart, .close-menu {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.close-cart-icon, .close-menu-icon {
  transition: transform 0.2s ease-in-out;
}

  .close-cart-icon:hover, .close-menu-icon:hover {
    transform: scale(1.1);
  }

.close-menu {
  display: none;
  justify-content: center;
  align-items: center;
}

.no-cart-items {
  font-family: 'DM Sans';
  color: #202020;
}

.continue-shopping-btn, .checkout-cart-btn, .checkout-notification-btn {
  display: flex;
  height: 48px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 5px;
  background: #F8F93F;
  color: #202020;
  font-family: "DM Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.continue-shopping-btn, .checkout-cart-btn {
  width: 100%;
}

.checkout-notification-btn {
    width: 50%;
}

  .continue-shopping-btn:hover, .checkout-cart-btn:hover, .checkout-notification-btn:hover {
    background-color: #202020;
    color: #fff;
  }

.shopping-cart-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.cart-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.cart-style {
  border: 1px solid #ddd;
  padding: 16px;
}

.item-left {
  display: flex;
  justify-content: flex-start;
}

.cart-product-img {
  border-radius: 4px;
  height: 56px;
  width: 56px;
  flex-shrink: 0;
}

.item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
}

.notification-item-right-style {
  gap: 8px;
}

.cart-item-right-style {
  gap: 25px;
}

.item-title-price {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  width: 100%;
}

.title-subscription-refill {
  display: flex;
  flex-direction: column;
  gap: 16px;

}

.title-subscription {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.subscription-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 8px;
  background: #FDFED1;
}

  .subscription-badge p {
    color: #202020;
    font-family: "DM Sans";
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase;
  }

.refill-text {
  color: #202020;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 125%; /* 17.5px */
}

.item-prices {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.price-discount {
  color: #777;
  font-family: "STIX Two Text";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 95%; /* 19px */
  letter-spacing: -0.4px;
  text-decoration-line: line-through;
  text-decoration-thickness: 2px;
}

.item-details {
  flex: 1;
  margin-left: 1rem;
}

.item-name {
  color: #202020;
  font-family: "STIX Two Text";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 95%; /* 22.8px */
}

.item-price {
  color: #202020;
  font-family: "STIX Two Text";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 95%; /* 22.8px */
  letter-spacing: -0.48px;
}

.item-quantity-trash {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.item-quantity {
  display: flex;
  width: 127px;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

  .item-quantity p {
    color: #202020;
    font-family: "DM Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.4px;
    text-transform: uppercase;
  }

.item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  overflow: hidden;
}

.quantity-controls {
  display: flex;
  width: 120px;
  height: 48px;
  padding: 4px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 4px;
  background: #F1F0EF;
  margin-right: 20px;
}

.item-actions > .quantity-controls {
  display: flex;
  padding: 4px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 4px;
  background: #F1F0EF;
  height: 32px;
}

.quantity-controls button {
  background-color: transparent;
  border: none;
  color: #333;
  font-size: 25px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

  .quantity-controls button:focus {
    outline: none;
  }

.quantity-controls input {
  border: none;
  width: 30px;
  text-align: center;
  font-size: 16px;
  background-color: transparent;
  color: #202020;
  text-align: center;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 18.2px */
  text-transform: capitalize;
  padding: 0px;
}

  .quantity-controls input:focus {
    outline: none;
  }

.remove-item {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
}


.cart-totals {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}

.order-row {
  display: flex;
  padding: 12px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.order-subtotal, .order-shipping, .order-discount {
  border-top: 1px solid rgba(32, 32, 32, 0.40);
}

.order-total {
  border-top: 2px solid #202020;
}

.cart-total-left {
  color: #202020;
  font-variant-numeric: slashed-zero;
  font-feature-settings: 'dlig' on;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}

.cart-total-right {
  color: #202020;
  text-align: right;
  font-variant-numeric: slashed-zero;
  font-feature-settings: 'dlig' on, 'ss01' on, 'ss02' on;
  font-family: "STIX Two Text";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 95%; /* 22.8px */
  letter-spacing: -0.48px;
}

hr {
  border: none;
  border-top: 1px solid #ddd;
}

.order-total .cart-total-left {
  color: #202020;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}

.order-total .cart-total-right {
  color: #202020;
  text-align: right;
  font-family: "STIX Two Text";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 95%; /* 30.4px */
  letter-spacing: -0.64px;
}

.product-disclaimers-cart {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  margin-top: 32px;
  gap: 90px;
}

.menu-toggle,
.sublist-toggle {
  display: none;
}

.header-menu > ul {
  display: block !important; /* prevents toggle display:none on resize */
  font-size: 0;
}

  .header-menu > ul.mobile {
    display: none !important;
  }

  .header-menu > ul > li {
    display: inline-block;
    border-left: 1px solid #ddd;
    padding: 0 15px;
    vertical-align: middle;
  }

    .header-menu > ul > li:first-child {
      border-left: none;
    }

    .header-menu > ul > li > a {
      display: block;
      padding: 5px 10px;
      line-height: 20px;
      font-size: 17px; /*reset zeroing*/
      color: #555;
      cursor: pointer;
    }

      .header-menu > ul > li > a:hover {
        color: #4ab2f1;
      }

.header-menu .sublist {
  display: none;
  position: absolute;
  width: 200px;
  box-shadow: 0 0 2px rgba(0,0,0,0.2);
  background-color: #fff;
  padding: 10px 0;
  text-align: left;
}

  .header-menu .sublist li {
    position: relative;
  }

    .header-menu .sublist li a {
      display: block;
      position: relative;
      padding: 10px 20px 10px 30px;
      font-size: 14px;
      color: #444;
    }

      .header-menu .sublist li a:before {
        content: "";
        position: absolute;
        top: 17px;
        left: 15px;
        width: 5px;
        height: 5px;
        background-color: #ddd;
      }

    .header-menu .sublist li:hover > a {
      background-color: #f6f6f6;
    }

.header-menu ul li:hover > .sublist {
  display: block;
}

.header-menu .sublist .sublist {
  top: -10px;
  left: 100% !important;
}

/********** PLP **********/

.breadcrumb {
  color: #202020;
  font-family: "DM Sans";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 18.2px */
  letter-spacing: 0.13px;
}

  .breadcrumb a {
    text-decoration: underline;
  }

    .breadcrumb a:hover {
      color: #333;
    }

.supplement-page-header {
  display: flex;
  justify-content: end;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 60px;
  gap: 24px;
  border-bottom: 1px solid #202020;
  background-image: url(/Themes/Hone/content/images/pq_supplements.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 480px;
}

  .supplement-page-header .title {
    color: #FFFFFF;
    font-family: "STIX Two Text";
    font-size: 54px;
    font-style: normal;
    font-weight: 400;
    line-height: 95%; /* 53.2px */
  }

/********** FILTERS **********/


/* PLP filters -- desktop */


.categories-temp {
  display: flex;
  padding: 24px 60px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #202020;
}

.filter-text {
  color: #202020;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}


/* Category Buttons */
.filter-categories {
  display: flex;
  gap: 12px;
  padding: 0;
  list-style: none;
}

  .filter-categories li a {
    display: flex;
    height: 30px;
    padding: 8px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 2px;
    background-color: #F1F0EF;
    color: #202020;
    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 16.8px */
  }

    .filter-categories li a:hover {
      background-color: #F8F93F;
      color: #202020;
    }

    /* Selected Button Styling */
    .filter-categories li a.selected {
      background-color: #F8F93F;
      color: #202020;
}

/********** PRODUCTS GRID **********/
.product-item .picture {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

  .product-item .picture a img {
    width: 100%;
  }

.product-item:hover .picture a img {
  opacity: 0.85;
}

.product-description {
  color: #555;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 20px */
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 22px;
  row-gap: 40px;
  width: 100%;
  padding: 20px 60px 60px;
  justify-items: center;
}

.product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  overflow-y: hidden;
  overflow-wrap: anywhere;
  background-color: #fff;
}

  /* Image container styling */
  .product-item .picture {
    width: 100%;
    position: relative;
  }

  /* "Buy Now" button positioning */
  .product-item .buttons.desktop {
    position: absolute;
    bottom: 16px;
    right: 16px;
    border: none;
    cursor: pointer;
  }

.buy-now-button {
  display: flex;
  padding: 8px 16px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #202020;
  font-family: "DM Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background-color: #F8F93F;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.buy-now-button svg {
    color: #202020;
}

  .buy-now-button:hover {
    background-color: #202020;
    color: #fff;
  }

  .buy-now-button:hover svg {
    color: #fff;
  }

  .buy-now-button:active {
    background-color: #202020;
  }

/* Product Tag styling */
.tag {
  display: flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #202020;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 18.2px */
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.30);
  position: absolute;
  top: 10px;
  right: 10px;
}

/* Product Details styling */
.product-item .details {
  font-family: DM Sans;
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

  .product-item .details .product-title {
    color: #202020;
    font-family: "STIX Two Text";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 95%; /* 30.4px */
  }

  .product-item .details .product-rating-box .rating {
    margin-left: 8px;
    font-size: 14px;
  }

  .product-item .details .description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 12px;
  }

.product-price-container {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.56);
  padding: 4px 8px;
  border-radius: 4px;
}

  .product-price-container p {
    color: #202020;
    font-family: "STIX Two Text";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.64px;
  }


.benefits-list {
  font-family: DM Sans;
  color: black;
  letter-spacing: .25px;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

  .benefits-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    flex: 1 1 50%;
  }

    .benefits-list li svg {
      max-width: 16px;
    }

/******** PDP  ********/

.product-details-title {
  display: flex;
  padding: 40px 60px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 16px;
  border-bottom: 1px solid #202020;
  height: 240px;
}

  .product-details-title h1 {
    color: #202020;
    font-family: "STIX Two Text";
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 95%; /* 53.2px */
  }

.product-details-overview {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.product-details-top {
  display: flex;
  flex-direction: row;
  max-width: 100%;
  border-bottom: 1px solid #202020;
}

.product-top-image {
  min-width: 50%;
  border-right: 1px solid #202020;
}

.product-img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.gallery {
  position: relative
}

.picture-thumbs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  top: 5%;
  left: 40px;
}

.picture-thumbs-icon {
  position: absolute;
  top: 90%;
  cursor: pointer;
}

  .picture-thumbs-icon-left {
    left: 40px;
  }

    .picture-thumbs-icon-left > img {
        transform: rotate(60deg);
    }

  .picture-thumbs-icon-right {
    right: 40px;
  }

  .picture-thumbs-icon img {
    height: 16px;
    width: 16px;
  }

.thumb-item {
  margin: 5px;
  border: 1px solid #202020;
  border-radius: 4px;
  height: 56px;
  width: 56px;
  cursor: pointer;
}

  .thumb-item img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
  }

.product-top-right {
  display: flex;
  width: 720px;
  padding: 40px 60px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  min-width: 50%;
}

.product-details-pricing {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 15px;
  gap: 16px;
}

.product-quantity {
  color: #202020;
  font-family: "STIX Two Text";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.32px;
}

.product-details-description p {
  color: #202020;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 22.5px */
}

  .product-details-description p:not(:last-of-type) {
    margin-bottom: 15px;
  }

.one-time-price {
  color: #202020;
  font-family: "STIX Two Text";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 95%; /* 60.8px */
  letter-spacing: -1.28px;
  color: black;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

  .one-time-price.strikethrough {
    color: #777;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    transition: color 0.2s ease, text-decoration 0.2s ease;
  }

.subscription-price {
  display: none; /* Hide by default */
  color: #202020;
  font-family: "STIX Two Text";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 95%; /* 60.8px */
  letter-spacing: -1.28px;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

  .subscription-price.visible {
    display: inline;
  }

.one-time-price .product-quantity.hidden {
    display: none;
}


/********* Subscribe & Save / One-Time Purchase *********/

.purchase-cta-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.option-content {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 8px;
}

.option input {
  appearance: none;
  min-width: 26px;
  min-height: 25px;
  border: 1px solid rgba(14, 11, 32, 0.20);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

  .option input:checked {
    background-color: black;
  }

.option label {
  display: flex;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  color: #202020;
  font-family: "STIX Two Text";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 95%; /* 17.1px */
  letter-spacing: -0.36px;
}

.selected {
  background: #FDFED1;
  border: none;
}


.subtext {
  color: #202020;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 17.5px */
  align-self: flex-start;
  margin-left: 26px;
}

.badge {
  display: flex;
  height: 30px;
  min-width: fit-content;
  padding: 8px 15px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: #202020;
  border-radius: 8px;
  color: #FFF;
  font-family: "DM Sans";
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 11px */
  text-transform: uppercase;
}

/**************************************/


.product-details-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

  .product-details-benefits h2 {
    color: #202020;
    font-family: "DM Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.4px;
    text-transform: uppercase;
  }

.product-details-benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 30px;
}

.product-details-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
}

  .product-details-benefits li p {
    color: #202020;
    font-family: "STIX Two Text";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
    letter-spacing: -0.32px;
  }

.product-details-benefits-list li svg {
  max-width: 16px;
}

.add-to-cart-panel {
  display: flex;
  width: 100%;
}

.qty-container {
  display: flex;
  flex-direction: column;
}

.add-to-cart-button {
  display: flex;
  height: 48px;
  padding: 6.013px 22px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 5px;
  border: none;
  background: #F8F93F;
  color: #202020;
  font-family: "DM Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  width: 100%;
}

  .add-to-cart-button:hover {
    background-color: #1a1a2e;
    color: white;
  }

.product-disclaimers-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  gap: 100px;
}

.product-disclaimers-left, .product-disclaimers-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.product-disclaimers-right {
  border-left: 1px solid #ddd;
  padding-left: 10px;
}

.product-disclaimers-left img {
  width: 25px;
  height: 25px;
}

.product-disclaimers-right img {
  width: 25px;
  height: 25px;
}

.product-disclaimers-text {
  display: flex;
  flex-direction: column;
}

.disclaimer-title {
  color: #202020;
  font-family: "DM Sans";
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 12px */
  text-transform: uppercase;
}

.product-details-bottom {
  display: flex;
  flex-direction: column;
}

.expandable-specifications-content {
    width: 100%;
}

.expandable-specifications {
  display: flex;
  padding: 32px 60px;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  border-bottom: 1px solid #202020;
  background: #F1F0EF;
}

.expandable-specifications-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  cursor: pointer;
  height: 45.25483322143555px;
  gap: 20px;
}

.spec-ingredients-details {
    color: #202020;
}

.spec-ingredients-details p {
  font-family: DM Sans;
  font-weight: 400;
  font-style: italic;
  font-size: 12px;
  line-height: 125%;
  height: 47px;
  padding: 16px 0;
}

/* Style the top-level <ul> */
.spec-side-effects-details > ul {
  list-style-type: none;
  margin-top: 20px;
}

  /* Style top-level <li> */
  .spec-side-effects-details > ul > li {
    list-style-type: none;
  }

    .spec-side-effects-details > ul > li > p {
      color: #202020;
      font-family: "DM Sans";
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 125%; /* 20px */
    }

  .spec-side-effects-details > ul > ul > li > p > span {
    color: #202020;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%; /* 20px */
  }


/* Style nested <ul> */
.spec-side-effects-details ul ul {
  padding-left: 0;
  list-style-type: none; /* Remove bullets */
}


  .spec-side-effects-details ul ul ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 20px 0px;
    padding: 8px 20px;
  }

    .spec-side-effects-details ul ul ul li {
      display: flex;
      align-items: center;
    }

      .spec-side-effects-details ul ul ul li p {
        color: #202020;
        font-family: "DM Sans";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
      }
.spec-ingredients-header-container {
  display: flex;
  justify-content: end;
  gap: 16px;
  height: 52px;
  border-bottom: 1px solid #000000;
}

  .spec-ingredients-header-border {
    border-bottom: 2px solid #000000;
  }

.spec-ingredients-header, .spec-ingredients-content {
  font-family: DM Sans;
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  padding: 16px 0;
  width: 240px;
  height: 20px;
  text-align: right;
}

.spec-ingredients-content {
  font-weight: 400;
}
  .spec-ingredients-content:first-of-type {
    text-align: left;
    flex: 1;
  }

.expandable-icon .icon {
    height: 32px;
    width: 32px;
}

.icon-container {
  width: 19px;
  height: 19px;
  margin-right: 10px;
  display: inline-block;
  background-image: url('/Themes/Hone/Content/icons/alert.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.product-stats-container {
  background-image: url('/Themes/Hone/Content/icons/lines.svg');
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  padding: 80px 120px;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  border-bottom: 1px solid #202020;
}

.stats-title {
  color: #202020;
  text-align: center;
  font-family: "STIX Two Text";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 95%; /* 60.8px */
}

.stats {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 50px;
}

.stat-group {
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  gap: 30px;
}

.stats h5 {
  color: #0E0B20;
  font-size: 48px;
  font-family: Azeret Mono;
  font-weight: 400;
}

.stats p {
  color: #555;
  font-size: 14px;
  font-family: DM Sans;
  font-weight: 400;
}


.supplement-formulation-section {
  display: flex;
  flex-direction: row;
}

.supplement-formulation-hero {
  background-image: url(/Themes/Hone/Content/images/pq_trees.webp);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: baseline;
  min-width: 50%;
  min-height: 480px;
  max-height: 720px;
  padding: 56px 60px;
}

  .supplement-formulation-hero h2 {
    color: #fff;
    font-family: "STIX Two Text";
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 95%;
    max-width: 600px;
  }

.supplement-formulation-accordions {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.accordion {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid #202020;
  background: #FFF;
  padding: 24px 60px 24px 40px;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-bottom 0.2s ease-in-out;
}

.accordion-title {
  color: #202020;
  font-family: "STIX Two Text";
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 95%; /* 20.9px */
  letter-spacing: -0.44px;
}

.accordion-details p {
  color: #202020;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 17.5px */
}

.learn-more-cta, .shop-the-collection {
  background: #f8f93f;
  color: #202020;
  border: none;
  border-radius: 1.503px;
  padding: 0 18px 0 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: "DM Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  min-height: 60px;
}

  .learn-more-cta a, .shop-the-collection a {
    padding: 15px 0 15px 18px;
  }
  
.learn-more-cta:hover, .shop-the-collection:hover {
  background: #202020;
  color: #fff;
}

.content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.text-content {
  flex: 1;
  padding-right: 20px;
}

  .text-content h5 {
    font-family: DM Sans;
    font-size: 14px;
    font-weight: 700;
    color: #0E0B20;
    margin-bottom: 10px;
  }

  .text-content h2 {
    font-family: STIX Two Text;
    font-size: 48px;
    font-weight: 500;
    color: #0E0B20;
    margin: 0;
    letter-spacing: -0.2px;
  }

.icons-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}

.icon-item {
  text-align: center;
}

  .icon-item img {
    width: 120px;
    height: 120px;
  }

  .icon-item p {
    font-size: 14px;
    font-weight: 500;
    color: #222;
  }


/******** CHECKOUT  ********/

.discount-box {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.coupon-code {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.discount-input {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
}

.apply-discount-button {
  display: flex;
  height: 48px;
  padding: 6.013px 22px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  background-color: #f8f93f;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  color: #202020;
  font-family: "DM Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
}

  .apply-discount-button:hover {
    background-color: #202020;
    color: #fff;
  }


  .apply-discount-button.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
  }

    .apply-discount-button.loading::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 1em;
      height: 1em;
      margin: -0.5em;
      border: 2px solid #999;
      border-top-color: transparent;
      border-radius: 50%;
      animation: spinner 0.6s linear infinite;
    }

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

.current-code {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  background-color: #f1F0EF;
  width: fit-content;
  padding: 5px;
  border-radius: 2px;
  color: #202020;
}

.applied-discount-icon {
  display: flex;
}

.applied-discount-code {
  display: flex;
  align-items: center;
  font-family: 'DM SANS';
  font-weight: 400;
}

.remove-discount-button {
  display: flex;
  align-content: center;
  cursor: pointer;
}

.message-failure {
  font-family: 'DM SANS';
  font-weight: 600;
  color: #D3040A;
  font-size: 12px;
  border-radius: 4px;
  background: #FFE0E1;
  display: flex;
  padding: 4px 8px;
  align-items: center;
  width: fit-content;
  margin-top: 12px;
}

.page-body.checkout-data {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  position: relative;
}

.checkout-summary {
  display: flex;
  padding: 40px 60px 40px 40px;
  flex-direction: column;
  align-items: flex-start;
  border-left: 1px solid #202020;
  width: 100%;
}

.checkout-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
  margin-bottom: 20px;
}

  .checkout-summary-header h2 {
    color: #202020;
    font-family: "STIX Two Text";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 95%; /* 30.4px */
  }

.checkout-summary-content {
  display: block;
  width: 100%;
}

.toggle-button {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: none; /* Hide by default */
}

.checkout-step-container {
  display: flex;
  padding: 40px 40px 80px 60px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  min-width: 500px;
}

.checkout-title {
  display: flex;
  min-height: 216px;
  max-height: 216px;
  padding: 24px 60px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  border-bottom: 1px solid #202020;
  width: 100%;
}

  .checkout-title h1 {
    color: #202020;
    font-family: "STIX Two Text";
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 95%; /* 53.2px */
  }

.opc {
  width: 100%;
}

.checkout-billing-load {
  display: flex;
  flex-direction: column;
}

.select-billing-address > label,
.select-shipping-address > label {
  font-family: DM Sans;
  font-size: 14px;
}

.required, .field-validation-error {
  color: red;
  font-size: 14px;
  font-family: DM Sans;
  margin: 5px 0px 5px 0px;
}

.shipping-addresses {
  font-size: 14px;
}

.step-title h2,
.billing-shipping-info h2 {
  color: #202020;
  font-family: "STIX Two Text";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 95%; /* 19px */
}

.your-info {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.your-info-title {
  margin-bottom: 20px;
}

.edit-address > div {
  padding: 5px;
}

.address-select {
  margin: 5px 0px 5px 0px;
  width: 100%;
}

.edit-address > div > label {
  font-family: DM Sans;
}

.please-wait {
  font-family: DM Sans;
  font-size: 14px;
}

.selector {
  font-size: 16px;
  color: rgba(14, 11, 32, 0.60);
  margin-top: 20px;
}

.payment-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.checkout-step-button {
  display: flex;
  height: 48px;
  padding: 6.013px 22px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  background-color: #f8f93f;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  color: #202020;
  font-family: "DM Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

  .checkout-step-button:hover {
    background-color: #202020;
    color: #fff;
  }


.btn-back {
  height: 48px;
  width: 25%;
  background-color: #fff;
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 5px;
  color: #202020;
  font-family: "DM Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 15.6px */
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

  .btn-back:hover {
    background-color: #000;
    color: #fff;
  }

.buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.form-group {
  margin-bottom: 10px;
}

.form-control {
  width: 100%;
  font-size: 16px;
  border: 1px solid #ccc;
}

.expiration-cvv-group {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.expiration-group {
  display: flex;
  gap: 20px;
}

.expiration {
  width: 140px;
}

.cvv {
    width: 300px;
}

.separator {
  display: none;
}

.validation-message {
  color: red;
  font-size: 12px;
  margin-top: 5px;
}

.order-disclaimer-text {
  color: #202020;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 17.5px */
}

.order-disclaimer-text span a {
  color: inherit;
  text-decoration: underline;
}

.confirm-order-text {
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 500;
  color: #0E0B20;
}

.message-error > ul > li {
  font-family: DM sans;
  font-size: 14px;
  color: red;
  margin-bottom: 20px;
}

/******** CHECKOUT BILLING   ********/
.billing-shipping-info {
  display: flex;
  flex-direction: column;
}

.billing-shipping-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.edit-address {
  display: flex;
  flex-direction: column;
}

.name-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.state-zip {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.inputs {
  display: flex;
  flex-direction: column;
  width: 100%;
}

  .inputs > input {
    width: 100%;
    height: 48px;
  }

  .inputs > .pg-input-wrapper > input {
    width: 100%;
  }

.pg-input-wrapper {
  width: 100%;
  display: flex !important;
  flex-direction: inherit;
}

.error > ul > li {
  font-family: DM Sans;
  font-size: 14px;
  color: red;
}

.inputs > select {
  width: 100%;
  height: 48px;
}

.pg-autocomplete-list {
  top: 35px;
}

  .pg-autocomplete-list > div {
    font-family: DM Sans;
  }

/******** COMPLETED VIEW + OFFER MODAL  ********/

.order-loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

  .order-loading-content h1 {
    font-family: 'STIX Two Text';
    font-weight: 400;
    font-size: 48px;
    color: black;
  }


.order-loading-content svg {
    color: #202020;
}

@keyframes fade {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

.upper, .upper-middle, .middle, .lower {
  animation: fade 3s infinite;
}

.upper {
  animation-delay: 1s;
}

.upper-middle {
  animation-delay: .75s;
}

.middle {
  animation-delay: .5s;
}

.lower {
  animation-delay: .25s;
}


  .order-loading-content p {
    font-weight: 600;
    font-size: 14px;
    color: black;
  }

.order-completed-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 400px;
}

.order-success-view {
  background-color: #f8f93f;
  min-height: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

  .order-success-view h1 {
    color: #202020;
    text-align: center;
    font-family: "STIX Two Text";
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 95%;
  }

  .order-success-view p {
    color: #202020;
    text-align: center;
    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
  }


.order-processing-view {
  display: none;
  width: 100%;
  min-height: 640px;
  background: #f1f0ef;
  align-items: center;
  justify-content: center;
}

.success-check {
  height: 46px;
  width: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
}

.order-success h1 {
  font-size: 58px;
  font-family: STIX Two Text;
  font-weight: 400;
  color: #000;
  margin: 0;
}

.order-success p {
  font-size: 36px;
  font-family: STIX Two Text;
  font-weight: 400;
  color: #000;
  margin: 0;
}

.modal-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  z-index: 14;
}

.offer-modal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 75%;
  max-width: 548px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
  border: 1px solid rgba(14, 11, 32, .1);
  z-index: 1001;
}

.offer-modal-top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 12px;
}

  .offer-modal-top h2 {
    color: #202020;
    font-variant-numeric: slashed-zero;
    font-feature-settings: 'dlig' on, 'ss01' on, 'ss02' on;
    font-family: "STIX Two Text";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 95%; /* 38px */
  }

.offer-price-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.price {
  color: #202020;
  font-family: "STIX Two Text";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 95%; /* 45.6px */
  letter-spacing: -0.96px;
}

.limited-time-offer {
  color: #202020;
  font-family: "STIX Two Text";
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 95%;
  letter-spacing: -0.32px;
}

.offer-details {
  display: flex;
  padding: 8px 0px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.offer-text {
  color: #202020;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  letter-spacing: 0.16px;
}

.detail {
  display: flex;
  padding: 8px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

  .detail p {
    color: #202020;
    font-variant-numeric: slashed-zero;
    font-feature-settings: 'dlig' on;
    font-family: "STIX Two Text";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
    letter-spacing: -0.32px;
  }

.sex-assigned-at-birth {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-family: DM Sans;
}


  .sex-assigned-at-birth label {
    color: #202020;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'dlig' on, 'ss04' on;
    font-family: "DM Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

.sex-options {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.sex-selection {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #202020;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.14px;
}


.opt-modal-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 16px;
}

.submit-offer {
  background: #f8f93f;
  color: #202020;
  border: none;
  border-radius: 1.503px;
  padding: 10px 15px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 47px;
  gap: 8px;
  font-family: "DM Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.submit-offer:hover {
  background: #202020;
  color: #fff;
}

.no-thanks {
  display: flex;
  height: 48px;
  padding: 0px 48px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: #0E0B20;
  background-color: #fff;
  font-family: "DM Sans";
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.32px;
  text-transform: capitalize;
  border: none;
}

  .no-thanks:hover {
    text-decoration: underline;
  }

/******** FOOTER  ********/

.footer-top {
  display: flex;
  height: 84px;
  padding: 24px 60px;
  justify-content: space-between;
  align-items: center;
  background: #F8F93F;
}

.footer-top-logo-text-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.footer-top-icon {
  color: #202020;
}

.footer-top p {
  color: #202020;
  font-family: "DM Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 18.9px */
}


.footer-middle {
    background: #202020;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.footer-middle-hone {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 70px;
}

.footer-middle-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  align-items: center;
  min-height: 350px;
}

  .footer-middle-content h1 {
    color: #F1F0EF;
    text-align: center;
    font-family: "STIX Two Text";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 105%; /* 47.25px */
    max-width: 460px;
  }

.footer-button {
  display: flex;
  width: 214px;
  height: 47px;
  padding: 6.013px 18.04px;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 1.503px;
  background: #F8F93F;
  color: #0E0B20;
  font-family: "DM Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 15.6px */
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.footer-button:hover {
  text-decoration: underline;
  color: #0E0B20;
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  padding: 80px 60px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #FFF;
  background: #202020;
}

.footer-link-container {
  display: flex;
  align-items: flex-start;
  gap: 70px;
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

  .footer-link-group h2  {
    color: #FFF;
    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.4px;
    text-transform: uppercase;
  }
  .footer-link-group ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }


  .footer-link-group li {
    color: #D2CEC4;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 20.8px */
  }


/* Product Quality Page */

.hero-section {
  background-image: url('../images/pq_hero.webp');
  background-size: cover;
  background-position: center;
  max-height: 720px;
  height: 720px;
  padding: 80px 60px;
  display: flex;
  align-items: flex-end;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

  .hero-text h1 {
    color: #FFF;
    font-feature-settings: 'dlig' on;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: .5px;
  }

  .hero-text h2 {
    color: #FFF;
    font-family: "STIX Two Text";
    font-size: 54px;
    font-style: normal;
    font-weight: 400;
    line-height: 105%;
    width: 75%;
  }

.highlight {
  display: flex;
  padding: 80px 172px;
  flex-direction: column;
  align-items: center;
  gap: 38px;
  align-self: stretch;
  border-bottom: 1px solid #202020;
  background: #F8F93F;
}

  .highlight p {
    color: #202020;
    text-align: center;
    font-family: "STIX Two Text";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
  }

.content-section {
  padding: 80px 172px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid #202020;
}

  .content-section h2 {
    color: #202020;
    font-family: "STIX Two Text";
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 95%;
  }

  .content-section p {
    color: #555;
    text-align: center;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
  }

.features-section {
  display: flex;
  flex-direction: column;
}

.feature {
  display: flex;
  flex-direction: row;
  justify-content: center;
  min-height: 600px;
  width: 100%;
}

.feature-image {
  width: 50%;
  min-height: 450px;
  object-fit: cover;
}

.feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 60px;
  text-align: left;
  width: 50%;
  gap: 32px;
}

.feature-text-core {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #202020;
}

  .feature-text-core h3 {
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    text-transform: capitalize;
  }

  .feature-text-core h4 {
    font-family: "STIX Two Text";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 95%; /* 38px */
  }

  .feature-text-core p {
    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%; /* 22.5px */
  }

.feature-text-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

  .feature-text-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }

  .feature-text-list p {
    color: #202020;
    font-family: "STIX Two Text";
    font-size: 14px;
    font-style: normal;
    line-height: 140%;
    letter-spacing: -0.32px;
  }

.expandable-section {
  width: 100%;
  cursor: pointer;
}

.expandable-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
  border-top: 1px solid #202020;
  border-bottom: 1px solid #202020;
  transition: border-bottom 0.2s ease-in-out;
}

  .expandable-header.expanded {
    border-bottom: none;
  }

.expandable-title {
  color: #202020;
  font-family: STIX Two Text;
  font-weight: 400;
  font-size: 40px;
  line-height: 95%; /* 38px */
  letter-spacing: -0.02em;
  vertical-align: middle;
}

.icon {
  transition: transform 0.3s ease-in-out;
}

.expandable-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: baseline;
  gap: 24px;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  padding: 0px 60px 60px 60px;
  border-bottom: 1px solid #202020;
}

  .expandable-content h3 {
    color: #0E0B20;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%; /* 25px */
    padding-bottom: 32px;
  }

.no-ingredient {
  display: block;
  padding: 20px 0px;
  border-top: 1px solid #202020;
}

  .no-ingredient p {
    color: #202020;
    font-variant-numeric: slashed-zero;
    font-feature-settings: 'dlig' on, 'ss01' on, 'ss02' on;
    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%; /* 20px */
  }

/* Certified Excellence Section */
.certified-excellence {
  display: flex;
  padding: 80px 60px;
  flex-direction: column;
  align-items: flex-start;
}

.certified-excellence-header {
  display: flex;
  height: 143px;
  padding: 16px 8px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width:100%;
}

  .certified-excellence-header h2 {
    color: #202020;
    font-family: "STIX Two Text";
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 95%; /* 53.2px */
  }

  .certified-excellence-header p {
    color: #555;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%; /* 25px */
    width: 80%;
  }

.certified-excellence .certifications {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.certification {
  display: flex;
  gap: 64px;
  align-items: center;
  padding-left: 30px;
}

.cert-text {
  display: flex;
  flex-direction: column;
}

  .cert-text h3 {
    color: #0E0B20;
    font-family: "DM Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 30px */
  }

  .cert-text p {
    color: #555;
    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%; /* 25px */
  }

/* Better Health Section */
.better-health {
  background-image: url('../images/pq_couple.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: row;
  padding: 80px 120px;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 640px;
  border-top: 1px solid #202020;
}

.better-health-header {
  color: #FFF;
  font-family: "STIX Two Text";
  font-size: 54px;
  font-style: normal;
  font-weight: 400;
  line-height: 95%; /* 68.4px */
  text-align: left;
}


.better-health-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit {
  display: flex;
  flex-direction: row;
  gap: 15px;
  alight-items: center;
}

  .benefit p {
    color: #FFF;
    font-family: "STIX Two Text";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 28px */
    letter-spacing: -0.4px;
  }

.decorative-line-container {
  display: flex;
  height: 80px;
}

.decorative-line {
  border-right: 1px solid #000;
  width: 50%;
}

/* Call to Action Section */
.call-to-action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
}

  .call-to-action svg {
    color: #000;
  }

  .call-to-action h2 {
    color: #202020;
    text-align: center;
    font-family: "STIX Two Text";
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 95%; /* 53.2px */
  }

.btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: #f8f93f;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
}

  .btn-primary:hover {
    background: black;
    color: white;
  }


/* PQ Products */
.product-card {
  display: flex;
  flex-direction: column;
  background: #FFF;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease;
  overflow-y: hidden;
  overflow-x: hidden;
  gap: 16px;
  box-shadow: 0px 4px 16px 0px #00000029;
  width: 314px;
  height: 314px;
  border-radius: 20px;  
}

  .product-card:hover {
    transform: translateY(-5px);
  }

.product-photo img {
  width:314px;
  height:314px;
}

.product-info {
  padding: 0 16px 16px 16px;
  text-align: left;
  /*height: 75px;*/
}

  .product-info h3 {
    color: #202020;
    font-family: "STIX Two Text";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 95%; /* 30.4px */
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  }

/* Small Desktop Styles */
@media (min-width: 1001px) and (max-width: 1439px) {
    /* Leaving for future responsive design reference*/
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1000px) {
  /*** HEADER ***/

  .header-selectors-wrapper > div {
    width: 20%;
  }


  /*** PLP ***/

  .filters-temp {
    width: 100%;
    background: #fff;
    border-right: none;
  }

  .product-grid {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    padding: 20px;
    align-self: center;
  }

  .product-item {
    width: 350px;
    height: auto;
  }

    .product-item .picture {
      width: 100%;
      position: relative;
      min-height: 290px;
    }


  /*** PDP ***/

  .product-details-top {
    flex-direction: column;
  }

  .product-top-image {
    border-right: none;
  }

  /*** CHECKOUT ***/

  .page-body.checkout-data {
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding: 16px 16px 0px 16px;
    position: relative;
    margin: 0
  }

  .checkout-summary {
    border-left: none;
    padding: 16px;
  }

  .checkout-step-container {
    padding: 0px 16px 40px 16px;
    min-width: 100%;
  }

  /*** FOOTER ***/

  .footer-top {
    padding: 16px 30px;
  }

  .footer-middle-hone {
    overflow-y: hidden;
    max-height: 160px;
    padding: 16px;
    gap: 30px;
  }

  .footer-bottom {
    padding: 40px 16px;
  }
}

/*** Flickity Carousel ***/
.flickity-page-dots {
  display: none;
}

.carousel {
  margin: 80px 0;
}

  .carousel.flickity-enabled {
    display: grid;
    grid-template: repeat(2, auto) / repeat(3, auto) 1fr;
    height: 100%;
    opacity: 1;
    row-gap: 1rem;
  }

    .carousel.flickity-enabled .flickity-viewport {
      grid-area: 1 / 1 / 2 / -1;
    }

.flickity-viewport {
  height: 330px !important;
}

.carousel .product-card {
 margin-right: 40px;
}



/* Mobile Styles */

@media (min-width: 0px) and (max-width: 767px) {

  /*** HEADER ***/

  .header {
    padding: 24px 16px;
    height: 72px;
  }

  .header-right {
    align-items: center;
    gap: 24px;
  }

  .hamburger-menu {
    display: flex;
    padding: 0px;
    justify-content: flex-end;
    align-items: center;
  }

  .header-links {
    flex-direction: column;
    display: flex;
    gap: 0;
  }

    .header-links li {
      width: 100%;
      padding: 16px;
    }

  .sliding-menu li:first-child {
    border-bottom: 1px solid #202020;
  }

  .header-links li a {
    text-decoration: none;
    color: black;
    display: block;
    width: 100%;
    font-family: STIX Two Text;
    font-size: 24px;
    font-weight: 400;
    line-height: 33.6px;
    letter-spacing: -0.02em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  }

  #header-cta-button {
    text-align: center;
    font-family: DM Sans;
    font-size: 14px;
    font-weight: 700;
    line-height: 19.6px;
    letter-spacing: 0.1em;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  }

  .links-container {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(7.5px);
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
    transition: background-color 0.3s ease;
  }

    .links-container.open {
      display: flex;
    }

    .links-container.scrolled {
      background-color: #1a1a2e;
    }

  .header-links li {
    width: 100%;
  }

    .header-links li a {
      text-decoration: none;
      color: black;
      display: block;
      width: 100%;
    }

  /*** CART NOTIFICATION ***/

  .cart-notification {
    top: 15%;
    right: unset;
    width: 100%;
  }

  .view-cart-qty {
    font-size: 8px;
  }

  /*** CART ***/
  .sliding-cart, .sliding-menu {
    position: fixed;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 16px 16px 0px 16px;
    gap: 24px;
  }

  .sliding-cart {
    top: 0;
  }

  .sliding-menu {
    top: 72px;
  }

  .sliding-cart-header h2 {
    font-size: 40px;
  }

  .title-subscription {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cart-count {
    margin-bottom: 24px;
  }

  .shopping-cart-form {
    gap: 24px;
  }

  .product-disclaimers-cart {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
    gap: 24px;
  }

    .product-disclaimers-cart > .product-disclaimers-right {
      border-left: none;
      padding: 0;
    }

  /*** PLP ***/

  .categories-temp {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
  }

  .product-grid {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
    justify-items: center;
    padding: 16px 16px 40px 16px;
    grid-row-gap: 32px;
  }

  .product-item {
    width: 100%;
    height: auto;
  }

  .supplement-page-header {
    padding: 24px 16px;
  }

    .supplement-page-header .title {
      font-size: 32px;
    }

  /*** PDP ***/
  .product-details-title {
    gap: 12px;
    padding: 20px 16px;
    border-bottom: 1px solid #202020;
  }

    .product-details-title h1 {
      font-size: 36px;
    }

  .product-details-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .product-top-image {
    border: none;
  }

  .picture-thumbs {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin: 16px;
    position: inherit;
    left: initial;
  }

  .picture-thumbs-icon {
      top: 75%;
  }

  .picture-thumbs-icon-left {
    left: 30px;
  }

    .picture-thumbs-icon-left > img {
      transform: rotate(60deg);
    }

  .picture-thumbs-icon-right {
    right: 30px;
  }

  .thumb-item {
    margin: 0px;
  }

  .product-top-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 24px 16px 40px 16px;
    gap: 20px;
  }

  .product-details-pricing {
    padding: 0;
  }

  .one-time-price {
    font-size: 36px;
  }

  .subscription-price {
    font-size: 36px;
  }

  .product-details-benefits-list {
    grid-template-columns: 1fr;
  }

  .product-disclaimers-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .add-to-cart-panel {
    flex-direction: column;
    gap: 20px;
  }

    .add-to-cart-panel .quantity-controls {
      width: 100%;
      justify-content: space-between;
      padding: 4px 16px;
    }

  .product-disclaimers-container > .product-disclaimers-right {
    border-left: none;
    padding: 0;
  }

  .expandable-specifications {
    padding: 24px 16px;
    gap: 16px;
  }

  .spec-side-effects-details ul ul ul {
    margin: 10px 0px;
    padding: 8px 10px;
  }


  .product-stats-container {
    padding: 64px 16px;
    gap: 40px;
    width: 100%;
  }

  .stats-title {
    font-size: 40px;
  }

  .icon-item img {
    width: 72px;
    height: 72px;
  }

  .supplement-formulation-section {
    display: flex;
    flex-direction: column;
  }

  .supplement-formulation-hero {
    min-height: 320px;
    max-height: 320px;
    padding: 56px 16px;
  }

    .supplement-formulation-hero h2 {
      font-family: "STIX Two Text";
      font-size: 40px;
      font-style: normal;
      font-weight: 400;
      line-height: 95%;
      width: 100%;
    }

  .accordion {
    padding: 24px 16px;
  }

  .accordion-title {
    font-size: 20px;
  }

  .learn-more-cta {
    width: 100%;
  }

  .expandable-icon .icon {
    width: 24px;
    height: 24px;
  }

  .breadcrumb {
    font-size: 12px;
  }

    /*** CHECKOUT ***/
    .page-body.checkout-data {
    display: flex;
    flex-direction: column;
    padding: 0px;
  }

  .checkout-title {
    padding: 20px 16px;
    height: 88px;
  }

    .checkout-title h1 {
      font-size: 36px;
    }

  .checkout-summary {
    display: flex;
    padding: 0px;
    align-items: flex-start;
    border-left: none;
    padding: 22px 16px 0px 16px;
  }

  .checkout-summary-header {
    margin-bottom: 22px;
  }

  .checkout-summary-header h2 {
    font-size: 20px;
  }

  .checkout-summary-content {
    display: none;
    width: 100%;
  }

  .toggle-button {
    display: block; /* Show toggle button on mobile */
  }

  .checkout-step-container {
    display: flex;
    padding: 0px;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    min-width: 100%;
  }

  .opc {
    border-top: 1px solid #202020;
    padding: 40px 16px 40px 16px;
  }

  .step-title h2,
  .billing-shipping-info h2 {
    font-size: 20px;
  }

  .order-loading-content h1 {
    font-size: 40px;
    width: 75%;
    text-align: center;
  }

  .order-loading-content p {
    font-size: 16px;
  }

  .btn-back {
      width:100%;
  }

  .expiration-cvv-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .expiration {
    width: 100%;
  }

  .cvv {
    width: 100%;
  }

  .discount-box {
    width: 100%;
  }

  /*** COMPLETED VIEW + OFFER MODAL ***/
  .offer-modal {
    width: 90%;
    margin-top: 50px;
  }

  .order-success-view h1 {
    font-size: 40px;
    max-width: 300px;
  }

  .offer-modal-top h2 {
    font-size: 32px;
    max-width: 285px;
  }

  .price {
      font-size: 32px;
  }
  /*** PRODUCT QUALITY PAGE ***/
  .hero-section {
    display: flex;
    height: 480px;
    max-height: 480px;
    padding: 24px 16px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
  }

  .hero-text {
    gap: 16px;
  }

    .hero-text h1 {
      font-size: 16px;
      font-style: normal;
      font-weight: 600;
      line-height: 130%; /* 20.8px */
    }

    .hero-text h2 {
      font-size: 32px;
      font-style: normal;
      font-weight: 400;
      line-height: 105%; /* 42px */
      width: 85%;
    }

  .highlight {
    display: flex;
    padding: 40px 16px;
  }

    .highlight p {
      font-size: 20px;
    }

  .content-section {
    padding: 40px 16px;
  }

    .content-section h2 {
      font-size: 32px;
    }

    .content-section p {
      font-size: 14px;
    }

  .feature {
    flex-direction: column; /* Stack vertically on mobile */
    align-items: center;
  }

    .feature:nth-child(even) {
      flex-direction: column-reverse;
    }

  .feature-image {
    width: 100%;
    min-height: 400px;
  }

  .feature-text {
    padding: 32px 16px;
    text-align: left;
    width: 100%;
  }

  .feature-text-core h4 {
    font-size: 28px;
  }

  .feature-text-core p {
    font-size: 16px;
  }

  .expandable-header {
    padding: 16px 20px;
  }

  .expandable-title {
    font-size: 24px;
  }

  .expandable-content {
    padding: 0px 16px 16px 16px;
  }

    .expandable-content h3 {
      padding-bottom: 16px;
      font-size: 14px;
    }

  .certified-excellence {
    display: flex;
    padding: 40px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .certified-excellence-header h2 {
    font-size: 32px;
    width: 80%;
  }

  .certified-excellence-header p {
    font-size: 14px;
    width: 100%;
  }


  .certification {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 0px;
    padding: 0;
  }

  .cert-text h3 {
    font-size: 16px;
    color: #202020;
  }

  .cert-text p {
    font-size: 14px;
  }

  .better-health {
    display: flex;
    height: 480px;
    padding: 40px 16px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
  }

  .better-health-header {
    font-size: 40px;
    width: 75%;
  }

  .better-health-benefits {
    padding-left: 0px;
    width: 100%;
  }

    .better-health-benefits .benefit p{
        font-size:20px;
    }

    .call-to-action h2 {
      font-size: 40px;
    }

  .shop-the-collection {
    display: flex;
    height: 46.885px;
    padding: 6.013px 25px;
    font-size: 12px;
  }

  .carousel {
    margin: 40px 0;
  }

  .spec-ingredients-header-container {
    gap: 8px;
    height: 68px;
  }

    .spec-ingredients-header, .spec-ingredients-header-container > td {
      font-size: 14px;
      width: 80px;
      height: 36px;
    }

  .expandable-specifications-header {
    height: 33.941123962402344px;
  }

  /*** FOOTER ***/
  .footer-top {
    display: flex;
    padding: 24px 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    border-top: none;
    height: fit-content;
  }

    .footer-top p {
      font-family: "DM Sans";
      font-size: 12px;
      font-style: normal;
      font-weight: 700;
      line-height: 100%; /* 12px */
      text-transform: uppercase;
    }

  .footer-middle-hone {
    overflow-y: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-height: 88px;
    padding: 15px;
  }

  .footer-middle-content {
    display: flex;
    flex-direction: column;
    gap: 34px;
    padding: 0px 16px;
    padding: 40px 16px;
    min-height: auto;
  }

    .footer-middle-content h1 {
      font-family: "STIX Two Text";
      font-size: 24px;
      font-style: normal;
      font-weight: 400;
      line-height: 105%; /* 33.6px */
      max-width: 75%;
    }

  .footer-bottom {
    padding: 40px 16px;
    display: flex; 
    flex-direction: column;
  }

  .footer-link-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-direction: column;
  }
}
