:root {
  --primary-color: #282848;
  --secondary-color: #6161ea;
  --third-color: #75cefb;
  --fourth-color: #fcc961;
  --primary-color-light: #46466a;
  --primary-color-dark: #323158;
  --secondary-color-light: #7e7ee5;
  --secondary-color-dark: #2e2e75;
  --contrast-color: #fcc961;
  --text-color: #231f20;
  --light-color: #f1f1f1;
  --white: #fff;
  --black: #000;
  --gold: #fcd34d;
  --accent: #8b5cf6;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px rgba(107, 70, 193, 0.1);
  --shadow-lg: 0 10px 40px rgba(107, 70, 193, 0.15);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text-color);
  animation: fadeInPage 500ms forwards;
  line-height: 1.6;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--primary-color);
  font-weight: 900;
}

p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
}

.bg-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-color-dark)
  );
  color: #fff !important;

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: #fff !important;
  }
}

.bg-gray-light {
  background: linear-gradient(180deg, var(--gray-50), var(--white));
  padding: 50px 0 0px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.steps {
  background: hsla(0, 0%, 100%, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.steps .step {
  position: relative;
  padding: 6px 18px !important;
  white-space: nowrap;
  border-radius: 20px;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;

  &.current {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.05);
  }
}

#headline {
  background: linear-gradient(
    135deg,
    var(--primary-color-light),
    var(--primary-color-dark)
  );
  color: #fff;
  padding: 60px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;

  .title {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    font-size: 56px;

    .span-title {
      color: var(--gold);
    }
  }

  &::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(
      circle,
      rgba(159, 122, 234, 0.2) 0%,
      transparent 70%
    );
    border-radius: 50%;
  }
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: hsla(0, 0%, 100%, 0.1);
  padding: 8px 20px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
}

.stars {
  color: var(--gold);
  font-size: 20px;
}

/* PRODUCTS */
.products {
  padding: 30px 0px;
}

.products .container {
  width: 95%;
}

.products .item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  border: 2px solid rgba(0, 0, 0, 0);
  padding: 0px;
}

.card-header {
  padding: 20px;
  background: linear-gradient(
    135deg,
    var(--primary-color-light),
    var(--primary-color)
  );
}

.item-header {
  grid-area: title;
  font-weight: 800;
  color: #fff;
  text-align: center;
  background-color: unset !important;
  font-size: 20px;
}

.item-header-description {
  margin-top: -2px;
  grid-area: title;
  font-weight: 500;
  color: #fff;
  opacity: 0.9;
  font-size: 14px;
}

.products .item .item-img {
  max-width: 200px;
  margin: 20px auto;
  position: relative;
  overflow: visible;
}

.products .item .item-img img {
  transition: transform 0.3s ease;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.products .item:hover .item-img img,
.products .productsGrid > a:hover .item .item-img img {
  transform: scale(1.1);
}

.products .item .wrapper {
  padding: 0px 0px 20px;
}

.products .item .item-img .guarantee-badge {
  position: absolute;
  top: 0;
  right: -40px;
  width: 72px;
  height: auto;
  display: block;
  pointer-events: none;
  animation: bounce 2s infinite;
}

.products .item .item-info .price sup {
  font-size: 24px;
  font-weight: 600;
  margin-top: 8px;
  color: var(--primary-color);
}

.products .item .item-info .price b {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--primary-color);
}

.price {
  margin-bottom: 15px !important;
}

.price span {
  font-size: 13px;
  margin-top: 12px;
  line-height: 1.2;
  color: var(--gray-600);
  font-weight: 300 !important;
  text-align: center;
}

.products .item .item-info .savings > div:first-child {
  background: #ffc300;
  color: #632804;
  padding: 6px 16px !important;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  border: none;
}

.products .item .item-info .savings span {
  gap: unset;
  line-height: 1.4;
}

.products .item .item-info .savings span::before {
  display: none;
}

.products .item .item-info .guarantee {
  font-weight: 600;
  color: var(--gray-600);
  font-size: 14px;
  border: none;
}

.products .item .item-info .savings > div {
  border: none;
  padding: 16px !important;
}

.products .item .item-buy .button span::before {
  display: none;
}

.button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 36px !important;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  width: 100%;
  max-width: 260px;
  margin: 0 auto 15px !important;
  position: relative;
  overflow: hidden;
  background: #fbbf24;
  color: #000;
  box-shadow: 0 4px 15px rgba(252, 211, 77, 0.3);

  &:hover {
    background-image: unset !important;
    box-shadow: none !important;
  }

  &::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 90%;
    background: hsla(0, 0%, 100%, 0.2);
    transform: translate(-50%, -50%);
    transition:
      width 0.6s,
      height 0.6s;
  }

  &:hover::before {
    width: 300px;
    height: 300px;
  }
}

.products .item .item-buy .button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.products .item .item-buy .button .button-text-aux {
  display: block;
  font-size: 0.85em;
  font-weight: 600;
}

.products .item .item-buy .button .button-text-aux::before {
  display: none;
}

.products .item .item-buy .button .button-text-aux:empty {
  display: none;
}

.products .item .item-buy .card-flags {
  max-width: 200px;
}

.products .item .item-totals .totals s.full-price {
  text-decoration-color: var(--gray-600);
  text-decoration-thickness: 1px;
  font-weight: 500 !important;
}

.products .item .item-totals .totals b.total-price {
  font-size: 20px;
  font-weight: 700 !important;
  color: var(--gray-800);
}

.products .item .item-totals .shipping {
  color: #ef4444;
  font-weight: 600;
  font-size: 14px;
}

.products .item .item-totals .shipping span {
  color: #ef4444;
}

/* ITEM PROMO */
.products .item.promo {
  border-color: var(--primary-color-dark);
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(107, 70, 193, 0.2);
  text-shadow: none !important;
}

.products .item.promo .wrapper {
  background-image: none !important;
  padding: 0px 0px 60px;
}

.products .item.promo .item-header {
  grid-area: header;
  background-color: white;
  color: var(--primary-color);
  text-shadow: none;
  text-transform: uppercase;
  padding: 8px 20px;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  background-color: #f59e0b !important;
  width: max-content;
  margin: -20px auto 8px;
  border-radius: 0px 0px 12px 12px;
}

.products .item.promo .item-img {
  max-width: 300px;
  margin: 20px auto;
  overflow: visible;
}

.products .item.promo .item-img .guarantee-badge {
  width: 72px;
  right: 0px;
  animation: bounce 2s infinite;
}
.products .item.promo .item-info .savings > div {
  color: #000;
  border: none;
}

.products .item.promo .item-info .savings > div:first-child {
  color: #000;
  border-top: 1px dashed rgba(255, 255, 255, 0.4196078431);
}

.products .item.promo .item-info .savings > div:nth-child(2) {
  background: #078d63;
  color: #fff;
  padding: 6px 16px !important;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  display: inline-block;
  border: none;
}

.products .item.promo .item-info .savings > div.guarantee {
  font-weight: 600;
  color: var(--gray-600);
  font-size: 14px;
}

.products .item.promo .item-buy .button {
  background: linear-gradient(135deg, #f59e0b, #ef4444) !important;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.products .item.promo .item-totals .totals s.full-price {
  text-decoration-color: #000;
  text-decoration-thickness: 1px;
  font-weight: 500 !important;
  color: var(--gray-600);
}

.products .item.promo .item-totals .totals b.total-price {
  font-size: 20px;
  font-weight: 700 !important;
  color: #000;
}

.products .item.promo .item-totals .shipping {
  color: #10b981;
  font-weight: 600;
  font-size: 14px;
}

.products .item.promo .item-totals .shipping span {
  color: #10b981;
}

.products .item.promo .item-info .price {
  text-transform: uppercase;
}

.products .item .item-totals .shipping.free {
  color: #10b981;
  font-weight: 600;
  font-size: 14px;
}

.products .item .item-totals .shipping.free span {
  color: #10b981;
}

.stock-message {
  font-size: 20px;
  font-weight: 600;
  color: #10b981;
  animation: fadeIn 1s ease;
  margin-bottom: 0px;

  span {
    font-size: 28px;
    font-weight: 700;
  }
}

.stock-message-shipping {
  font-size: 16px;
  color: #000;
  text-align: center;
  padding: 20px 0 0px;
}

.content {
  max-width: 800px;
  margin: 0 auto;

  p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--gray-600);

    &.small {
      font-size: 16px;
      margin-bottom: 35px;
      color: var(--gray-800);
    }
  }
}

.title-aux {
  color: #000;
  margin-bottom: 1rem;

  .highlight-purple {
    background: linear-gradient(
      90deg,
      var(--primary-color),
      var(--primary-color-light)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background-clip: text;
  }
}

.cta-promo {
  h2 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
  }

  p {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
    color: white;

    &.text-yellow {
      color: #fcd34d;
      font-weight: 500;
      font-size: 18px;
    }
  }

  h4 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 35px;

    &.text-yellow {
      background: linear-gradient(90deg, var(--gold), #f59e0b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: rgba(0, 0, 0, 0);
      background-clip: text;
      font-size: 28px;
    }
  }

  h3 {
    font-size: 40px;
    padding: 10px 0;
  }

  .arrow-down-1 {
    width: 0;
    height: 0;
    border-left: 25px solid rgba(0, 0, 0, 0);
    border-right: 25px solid rgba(0, 0, 0, 0);
    border-top: 25px solid #e7a431;
    margin: 25px auto;
    animation: bounce 2s infinite;
  }

  .button {
    padding: 22px 36px !important;
    background-image: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);

    &:hover {
      background-image: linear-gradient(135deg, #f59e0b, #ef4444) !important;
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(245, 158, 11, 0.4);
    }
  }
}

.highlight-underline {
  text-decoration: underline;
  text-decoration-color: #0051ff;
  text-decoration-thickness: 2px;

  &.yellow {
    text-decoration-color: #fcd34d;
  }
}

#guarantee {
  background-image: none !important;
  background-color: white;

  h2 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-size: 40px !important;
    color: #000;

    span {
      &.text-green {
        color: #10b981 !important;
        font-size: 24px;
        margin-bottom: 25px !important;
      }
    }
  }

  h3 {
  }

  p {
    color: #000;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
    font-weight: 400;
  }

  img {
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    background-color: transparent !important;
  }

  .badges img {
    max-width: 70px;
    border-radius: 0;
    box-shadow: none;
    border: none;

    &:hover {
      transform: rotate(5deg) scale(1.1);
    }
  }
}

.guarantee-content {
  max-width: 930px;
  margin: 0 auto;
}

.benefits-section {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--gray-50), var(--white));
}

.benefits-section h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #000;
  font-weight: 700;

  span {
    &.highlight-purple {
      background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--primary-color-light)
      );
      -webkit-background-clip: text;
      -webkit-text-fill-color: rgba(0, 0, 0, 0);
      background-clip: text;
    }
  }
}

.subtitle {
  text-align: center;
  font-size: 16px;
  margin-bottom: 40px;
  color: var(--gray-600);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.benefit-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color-light);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    rgba(107, 70, 193, 0.1),
    rgba(159, 122, 234, 0.1)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.benefit-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--gray-800);
}

.benefit-card p {
  color: var(--gray-600);
  line-height: 1.5;
  font-size: 14px;
}

.ingredients-section {
  padding: 60px 0;
  background: #fff;
}

.ingredients-section h2 {
  text-align: center;
  margin-bottom: 15px;
  color: var(--gray-800);
  font-weight: 600;
  margin-bottom: 25px !important;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.ingredient-card {
  text-align: center;
  padding: 25px;
  background: var(--gray-50);
  border-radius: 12px;
  transition: var(--transition);
  border: 2px solid rgba(0, 0, 0, 0);

  h3 {
    color: #000 !important;
  }
}

.ingredient-card:hover {
  background: linear-gradient(
    135deg,
    var(--primary-color-light),
    var(--primary-color-dark)
  );
  transform: translateY(-3px);
  border-color: var(--primary-color);

  h3 {
    color: #fff !important;
  }
}

.ingredient-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.ingredient-card p {
  font-size: 13px;
  line-height: 1.4;
}

.ingredient-card:hover p {
  color: #fff;
}

.cta-headline {
  background-color: transparent;

  h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #000;
    font-size: 40px;
  }

  h4 {
    color: #000;

    &.text-yellow {
      background: linear-gradient(90deg, var(--gold), #f59e0b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: rgba(0, 0, 0, 0);
      background-clip: text;
      font-size: 28px;
    }
  }

  .arrow-down {
    width: 0;
    height: 0;
    border-left: 25px solid rgba(0, 0, 0, 0);
    border-right: 25px solid rgba(0, 0, 0, 0);
    border-top: 25px solid var(--primary-color);
    margin: 25px auto 0;
    animation: bounce 2s infinite;
  }
}

#faq {
  background-image: linear-gradient(180deg, var(--gray-50), var(--white));
  color: #000;

  .container {
    max-width: 820px;
  }

  h2 {
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    font-size: 42px;
  }

  .accordion-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
  }

  .accordion-item:has(.accordion-collapse.show) {
    border-radius: 10px 10px 0 0;
  }

  .accordion-item .accordion-button:not(.collapsed) {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .accordion-item .accordion-collapse.show .accordion-body {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .accordion-item .accordion-button {
    width: 100%;
    padding: 20px 25px;
    background: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    color: var(--gray-800);
    position: relative;
    font-family: "Inter", sans-serif;

    &::after {
      content: "+";
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      margin-left: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      font-weight: 700;
      line-height: 1;
      background-image: none !important;
      transition: var(--transition);
      color: var(--primary-color);
    }

    &:not(.collapsed)::after {
      content: "×";
      font-size: 26px;
      color: var(--primary-color);
      font-weight: 600;
    }

    &:hover {
      background: var(--gray-50);
    }

    &:focus {
      outline: 2px solid var(--primary-color);
      outline-offset: 2px;
      box-shadow: none;
    }
  }

  .accordion-body {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 14px;
  }
}

footer {
  background: var(--gray-800) !important;
  color: #fff;
  padding: 45px 0;

  .statements {
    font-size: 12px;
    p {
      max-width: 900px;
      margin: 0 auto 15px;
      text-align: center;
      font-size: 12px;
      color: #9ca3af;
      line-height: 1.5;

      &:last-child {
        margin-bottom: 30px;
      }
    }
  }

  .text-footer {
    border-top: 1px solid var(--gray-600);
    padding-top: 22px;
    color: #d8dfeb;
    margin-bottom: 15px;
    font-weight: 600;
  }

  .container {
    max-width: 820px;
    padding: 0;
  }

  .small {
    font-size: 13px;
  }

  a.link-light:hover {
    color: var(--primary-color-light) !important;
  }
  a.link-light:focus {
    outline: 2px solid var(--primary-color-light) !important;
    outline-offset: 2px;
  }
}

.products .item .item-mobile-title {
  display: none;
}

.products .item .totals-label-mobile {
  display: none;
}

@media (max-width: 599px) {
  body {
    p {
      font-size: 14px;
    }
  }

  .container {
    padding: 0 10px;
  }

  .steps .step {
    padding: 4px 10px;
    font-size: 11px;
  }

  #headline {
    padding: 30px 0 20px;

    .title {
      font-size: 18px;
      margin-bottom: 15px;
    }
  }

  .rating {
    padding: 6px 15px;
    font-size: 14px;
  }

  .products {
    padding: 15px 0px 0px 0px;

    .productsGrid {
      gap: 40px;
    }
  }

  .products .item.promo {
    border: 3px solid var(--fourth-color);
    border-radius: 22px;
    overflow: hidden;
    padding: 0;
  }

  .products .item.promo .wrapper {
    display: grid;
    grid-template-areas:
      "banner banner"
      "desc price"
      "savings savings"
      "img img"
      "totals totals"
      "footer footer";
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    padding: 0 0 0px;
    text-align: center;
  }

  .products .item.promo .card-header {
    display: contents;
  }

  .products .item.promo .card-header .item-header {
    grid-area: banner;
    width: 100%;
    margin: 0;
    padding: 8px 20px;
    border-radius: 0;
    background: linear-gradient(135deg, #fcd34d, #f59e0b);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    box-sizing: border-box;
  }

  .products .item.promo .card-header .item-header-description {
    display: none;
  }

  .products .item.promo .item-mobile-title {
    display: block;
    grid-area: desc;
    text-align: left;
    padding-left: 16px;
    padding-right: 0;
  }

  .products .item.promo .item-mobile-title .line1 {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.2;
  }

  .products .item.promo .item-mobile-title .line2 {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    margin-top: 2px;
  }

  .products .item.promo .item-info {
    display: contents;
  }

  .products .item.promo .item-info .price {
    grid-area: price;
    margin: 0;
    padding-left: 0;
    padding-right: 16px;
    width: 100%;
    box-sizing: border-box;
    justify-content: flex-end;
    text-align: right;
    align-self: start;
  }

  .products .item.promo .item-info .price b {
    font-size: 32px;
  }

  .products .item.promo .item-info .price sup {
    font-size: 20px;
    margin-top: 3px;
    color: var(--gray-800);
    font-weight: 600;
    top: 0;
    right: 4px;
  }

  .products .item.promo .item-info .price span {
    font-size: 9px;
    text-transform: uppercase;
    color: var(--gray-600);
    display: block;
    margin-top: 2px;
    text-align: left;
    font-weight: 600 !important;
  }

  .products .item.promo .item-info .savings {
    grid-area: savings;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 16px 12px 16px;
  }

  .products .item.promo .item-info .savings > div {
    width: 100%;
    max-width: 280px;
    text-align: left;
    border-radius: 0;
    font-size: 11px;
    background: transparent !important;
    border: none !important;
    padding: 0px !important;
  }

  .products .item.promo .item-info .savings > div.guarantee {
    padding: 0px !important;
    font-size: 11px !important;
  }

  .products .item.promo .item-info .savings > div:first-child span {
    color: #dc2626;
  }

  .products .item.promo .item-info .savings > div:nth-child(2) span {
    color: #078d63;
    font-size: 11px !important;
  }

  .products .item.promo .item-info .savings > div.guarantee span {
    color: #000;
  }

  .products .item.promo .item-info .savings span::before {
    display: inline-block;
    content: "✓";
    margin-right: 8px;
    color: #078d63;
    font-weight: 700;
  }

  .products .item.promo .item-img {
    grid-area: img;
    max-width: 100%;
    margin: 0px auto;
    padding: 0 16px;
  }

  .products .item.promo .item-img img {
    max-height: 150px;
    width: auto;
    margin: 0 auto;
    display: block;
  }

  .products .item .item-img .guarantee-badge {
    width: 60px !important;
  }

  .products .item.promo .item-img .guarantee-badge {
    display: none;
  }

  .products .item.promo .item-totals {
    grid-area: totals;
    text-align: center;
    padding: 0px 16px;
  }

  .products .item .totals-label-mobile {
    display: inline;
    color: var(--gray-600) !important;
    font-size: 12px !important;
  }

  .products .item.promo .item-totals .totals {
    font-size: 15px;
    color: var(--gray-800);
  }

  .products .item.promo .item-totals .totals .total-price {
    color: var(--gray-800);
    font-size: 16px !important;
    font-weight: 700;
  }

  .products .item.promo .item-totals .totals .full-price {
    color: var(--gray-600);
    font-size: 12px !important;
    font-weight: 600 !important;
  }

  .products .item.promo .item-totals .shipping {
    text-align: center;
    margin-top: 4px;
    font-size: 10px !important;
  }

  .products .item.promo .item-buy {
    grid-area: footer;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
  }

  .products .item.promo .item-buy .button {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 14px !important;
    font-size: 16px;
    background: linear-gradient(135deg, #fb923c, #ea580c);
  }

  .products .item.promo .item-buy .button .button-text {
    font-size: 16px;
  }

  .products .item.promo .item-buy .button .button-text-aux {
    font-size: 12px;
  }

  .products .item.promo .item-buy .card-flags {
    margin-top: 8px;
  }

  .products .item:not(.promo) {
    padding: 0;
  }

  .products .item:not(.promo) .wrapper {
    display: grid;
    grid-template-areas:
      "desc price"
      "savings savings"
      "img img"
      "totals totals"
      "footer footer";
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    padding: 16px 0 20px;
    text-align: center;
  }

  .products .item:not(.promo) .card-header {
    display: contents;
  }

  .products .item:not(.promo) .card-header .item-header,
  .products .item:not(.promo) .card-header .item-header-description {
    display: none;
  }

  .products .item:not(.promo) .item-mobile-title {
    display: block;
    grid-area: desc;
    text-align: left;
    padding-left: 16px;
    padding-right: 0;
  }

  .products .item:not(.promo) .item-mobile-title .line1 {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.2;
  }

  .products .item:not(.promo) .item-mobile-title .line2 {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    margin-top: 2px;
  }

  .products .item:not(.promo) .item-info {
    display: contents;
  }

  .products .item:not(.promo) .item-info .price {
    grid-area: price;
    margin: 0;
    padding-left: 0;
    padding-right: 16px;
    width: 100%;
    box-sizing: border-box;
    justify-content: flex-end;
    text-align: right;
    align-self: start;
  }

  .products .item:not(.promo) .item-info .price b {
    font-size: 32px;
  }

  .products .item:not(.promo) .item-info .price sup {
    top: 0;
    margin-right: 4px;
  }

  .products .item:not(.promo) .item-info .price span {
    text-align: left;
    font-size: 9px;
    text-transform: uppercase;
    color: var(--gray-600);
    display: block;
    margin-top: 2px;
  }

  .products .item:not(.promo) .item-info .savings {
    grid-area: savings;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0px 16px;
  }

  .products .item:not(.promo) .item-info .savings > div {
    width: 100%;
    max-width: 280px;
    text-align: left;
    padding: 0 !important;
    border-radius: 0;
    font-size: 11px;
    background: transparent !important;
    border: none !important;
  }

  .products .item:not(.promo) .item-info .savings > div:nth-child(2) {
    display: none;
  }

  .products .item:not(.promo) .item-info .savings > div:first-child span {
    color: var(--gray-800);
  }

  .products .item:not(.promo) .item-info .savings > div.guarantee span {
    color: var(--gray-800);
  }

  .products .item:not(.promo) .item-info .savings span::before {
    display: inline-block;
    content: "✓";
    margin-right: 8px;
    color: #078d63;
    font-weight: 700;
  }

  .products .item:not(.promo) .item-img {
    grid-area: img;
    max-width: 100%;
    margin: 10px auto;
    padding: 0 16px;
  }

  .products .item:not(.promo) .item-img img {
    max-height: 150px;
    width: auto;
    margin: 0 auto;
    display: block;
  }

  .products .item:not(.promo) .item-totals {
    grid-area: totals;
    text-align: center;
    padding: 8px 16px;
  }

  .products .item:not(.promo) .item-totals .totals {
    font-size: 15px;
    color: var(--gray-800);
  }

  .products .item:not(.promo) .item-totals .totals .total-price {
    color: var(--gray-800);
    font-size: 16px !important;
  }

  .products .item:not(.promo) .item-totals .totals .full-price {
    color: var(--gray-600);
    font-size: 12px !important;
  }

  .products .item:not(.promo) .item-totals .shipping {
    text-align: center;
    margin-top: 4px;
    font-size: 10px !important;
  }

  .products .item:not(.promo) .item-buy {
    grid-area: footer;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
  }

  .products .item:not(.promo) .item-buy .button {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 16px 20px !important;
  }

  .products .item:not(.promo) .item-buy .button .button-text {
    font-size: 15px;
  }

  .products .item:not(.promo) .item-buy .button .button-text-aux {
    font-size: 10px;
    font-weight: 600 !important;
  }

  .products .item:not(.promo) .item-buy .card-flags {
    margin-top: 8px;
  }

  .stock-message {
    margin: 50px 0px 0px 0px;
    font-size: 16px !important;
    span {
      font-size: 22px;
    }
  }

  .title-aux {
    font-size: 18px;
  }

  .text-aux-content {
    font-size: 18px !important;
  }

  .text-aux-content.small {
    font-size: 14px !important;
  }

  .cta-promo {
    h2 {
      font-size: 18px !important;
    }

    h4 {
      font-size: 28px !important;
    }

    p {
      font-size: 14px !important;

      &.text-yellow {
        font-size: 18px !important;
        font-weight: 600 !important;
      }
    }

    h3 {
      margin: 0 0 10px;
      font-size: 18px !important;
    }

    img {
      max-width: 380px !important;
    }
  }

  #guarantee {
    h2 {
      font-size: 18px !important;
      margin-bottom: 0px !important;
      gap: 20px !important;
      display: flex;
      flex-direction: column;
    }

    h3 {
      font-size: 18px !important;
    }

    p {
      font-size: 14px !important;
      font-weight: normal !important;
    }

    .badges {
      img {
        max-width: 65px;
      }
    }
  }

  .benefits-section h2,
  .ingredients-section h2 {
    font-size: 18px !important;
  }

  .benefit-card {
    padding: 20px;

    p {
      margin-bottom: 0px !important;
    }
  }

  .ingredient-card {
    p {
      margin-bottom: 0px !important;
    }
  }

  .cta-headline {
    h3 {
      font-size: 18px !important;
    }

    h4 {
      font-size: 28px !important;
    }
  }

  .bg-gray-light {
    padding: 20px 0px 0px 0px;
  }

  #faq {
    h2 {
      font-size: 18px !important;
    }

    .accordion-button {
      font-size: 14px !important;
    }

    .accordion-item {
      font-size: 16px !important;

      & .accordion-button {
        &:focus {
          box-shadow: 0 0 0 2px var(--primary-color);
          border-radius: 10px;
        }
      }
    }

    .accordion-body {
      font-size: 14px !important;
    }
  }

  footer {
    padding: 50px 10px;
    .small {
      font-size: 14px;
    }

    .list-inline {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
  }
}

@media (min-width: 600px) and (max-width: 767px) {
  .container {
    padding: 0 20px;
    width: 100% !important;
  }

  .steps .step {
    padding: 4px 10px;
    font-size: 11px;
  }

  #headline {
    padding: 40px 0 30px;

    .title {
      font-size: 22px;
      margin-bottom: 15px;
    }
  }

  .rating {
    padding: 6px 15px;
    font-size: 16px;
  }

  .products {
    padding: 15px 0px 0px 0px;

    .productsGrid {
      gap: 40px;
    }
  }

  .products .item.promo {
    border: 3px solid var(--fourth-color);
    border-radius: 22px;
    overflow: hidden;
    padding: 0;
  }

  .products .item.promo .wrapper {
    display: grid;
    grid-template-areas:
      "banner banner"
      "desc price"
      "savings savings"
      "img img"
      "totals totals"
      "footer footer";
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    padding: 0 0 0px;
    text-align: center;
  }

  .products .item.promo .card-header {
    display: contents;
  }

  .products .item.promo .card-header .item-header {
    grid-area: banner;
    width: 100%;
    margin: 0;
    padding: 8px 20px;
    border-radius: 0;
    background: linear-gradient(135deg, #fcd34d, #f59e0b);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    box-sizing: border-box;
  }

  .products .item.promo .card-header .item-header-description {
    display: none;
  }

  .products .item.promo .item-mobile-title {
    display: block;
    grid-area: desc;
    text-align: left;
    padding-left: 16px;
    padding-right: 0;
  }

  .products .item.promo .item-mobile-title .line1 {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.2;
  }

  .products .item.promo .item-mobile-title .line2 {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    margin-top: 2px;
  }

  .products .item.promo .item-info {
    display: contents;
  }

  .products .item.promo .item-info .price {
    grid-area: price;
    margin: 0;
    padding-left: 0;
    padding-right: 16px;
    width: 100%;
    box-sizing: border-box;
    justify-content: flex-end;
    text-align: right;
    align-self: start;
  }

  .products .item.promo .item-info .price b {
    font-size: 32px;
  }

  .products .item.promo .item-info .price sup {
    font-size: 20px;
    margin-top: 3px;
    color: var(--gray-800);
    font-weight: 600;
    top: 0;
    right: 4px;
  }

  .products .item.promo .item-info .price span {
    font-size: 9px;
    text-transform: uppercase;
    color: var(--gray-600);
    display: block;
    margin-top: 2px;
    text-align: left;
    font-weight: 600 !important;
  }

  .products .item.promo .item-info .savings {
    grid-area: savings;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 16px 12px 16px;
  }

  .products .item.promo .item-info .savings > div {
    width: 100%;
    max-width: 280px;
    text-align: left;
    border-radius: 0;
    font-size: 11px;
    background: transparent !important;
    border: none !important;
    padding: 0px !important;
  }

  .products .item.promo .item-info .savings > div.guarantee {
    padding: 0px !important;
    font-size: 11px !important;
  }

  .products .item.promo .item-info .savings > div:first-child span {
    color: #dc2626;
  }

  .products .item.promo .item-info .savings > div:nth-child(2) span {
    color: #078d63;
    font-size: 11px !important;
  }

  .products .item.promo .item-info .savings > div.guarantee span {
    color: #000;
  }

  .products .item.promo .item-info .savings span::before {
    display: inline-block;
    content: "✓";
    margin-right: 8px;
    color: #078d63;
    font-weight: 700;
  }

  .products .item.promo .item-img {
    grid-area: img;
    max-width: 100%;
    margin: 0px auto;
    padding: 0 16px;
  }

  .products .item.promo .item-img img {
    max-height: 150px;
    width: auto;
    margin: 0 auto;
    display: block;
  }

  .products .item .item-img .guarantee-badge {
    width: 60px !important;
  }

  .products .item.promo .item-img .guarantee-badge {
    display: none;
  }

  .products .item.promo .item-totals {
    grid-area: totals;
    text-align: center;
    padding: 0px 16px;
  }

  .products .item .totals-label-mobile {
    display: inline;
    color: var(--gray-600) !important;
    font-size: 12px !important;
  }

  .products .item.promo .item-totals .totals {
    font-size: 15px;
    color: var(--gray-800);
  }

  .products .item.promo .item-totals .totals .total-price {
    color: var(--gray-800);
    font-size: 16px !important;
    font-weight: 700;
  }

  .products .item.promo .item-totals .totals .full-price {
    color: var(--gray-600);
    font-size: 12px !important;
    font-weight: 600 !important;
  }

  .products .item.promo .item-totals .shipping {
    text-align: center;
    margin-top: 4px;
    font-size: 10px !important;
  }

  .products .item.promo .item-buy {
    grid-area: footer;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
  }

  .products .item.promo .item-buy .button {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 14px !important;
    font-size: 16px;
    background: linear-gradient(135deg, #fb923c, #ea580c);
  }

  .products .item.promo .item-buy .button .button-text {
    font-size: 16px;
  }

  .products .item.promo .item-buy .button .button-text-aux {
    font-size: 12px;
  }

  .products .item.promo .item-buy .card-flags {
    margin-top: 8px;
  }

  .products .item:not(.promo) {
    padding: 0;
  }

  .products .item:not(.promo) .wrapper {
    display: grid;
    grid-template-areas:
      "desc price"
      "savings savings"
      "img img"
      "totals totals"
      "footer footer";
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    padding: 16px 0 20px;
    text-align: center;
  }

  .products .item:not(.promo) .card-header {
    display: contents;
  }

  .products .item:not(.promo) .card-header .item-header,
  .products .item:not(.promo) .card-header .item-header-description {
    display: none;
  }

  .products .item:not(.promo) .item-mobile-title {
    display: block;
    grid-area: desc;
    text-align: left;
    padding-left: 16px;
    padding-right: 0;
  }

  .products .item:not(.promo) .item-mobile-title .line1 {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.2;
  }

  .products .item:not(.promo) .item-mobile-title .line2 {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    margin-top: 2px;
  }

  .products .item:not(.promo) .item-info {
    display: contents;
  }

  .products .item:not(.promo) .item-info .price {
    grid-area: price;
    margin: 0;
    padding-left: 0;
    padding-right: 16px;
    width: 100%;
    box-sizing: border-box;
    justify-content: flex-end;
    text-align: right;
    align-self: start;
  }

  .products .item:not(.promo) .item-info .price b {
    font-size: 32px;
  }

  .products .item:not(.promo) .item-info .price sup {
    top: 0;
    margin-right: 4px;
  }

  .products .item:not(.promo) .item-info .price span {
    text-align: left;
    font-size: 9px;
    text-transform: uppercase;
    color: var(--gray-600);
    display: block;
    margin-top: 2px;
  }

  .products .item:not(.promo) .item-info .savings {
    grid-area: savings;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0px 16px;
  }

  .products .item:not(.promo) .item-info .savings > div {
    width: 100%;
    max-width: 280px;
    text-align: left;
    padding: 0 !important;
    border-radius: 0;
    font-size: 11px;
    background: transparent !important;
    border: none !important;
  }

  .products .item:not(.promo) .item-info .savings > div:nth-child(2) {
    display: none;
  }

  .products .item:not(.promo) .item-info .savings > div:first-child span {
    color: var(--gray-800);
  }

  .products .item:not(.promo) .item-info .savings > div.guarantee span {
    color: var(--gray-800);
  }

  .products .item:not(.promo) .item-info .savings span::before {
    display: inline-block;
    content: "✓";
    margin-right: 8px;
    color: #078d63;
    font-weight: 700;
  }

  .products .item:not(.promo) .item-img {
    grid-area: img;
    max-width: 100%;
    margin: 10px auto;
    padding: 0 16px;
  }

  .products .item:not(.promo) .item-img img {
    max-height: 150px;
    width: auto;
    margin: 0 auto;
    display: block;
  }

  .products .item:not(.promo) .item-totals {
    grid-area: totals;
    text-align: center;
    padding: 8px 16px;
  }

  .products .item:not(.promo) .item-totals .totals {
    font-size: 15px;
    color: var(--gray-800);
  }

  .products .item:not(.promo) .item-totals .totals .total-price {
    color: var(--gray-800);
    font-size: 16px !important;
  }

  .products .item:not(.promo) .item-totals .totals .full-price {
    color: var(--gray-600);
    font-size: 12px !important;
  }

  .products .item:not(.promo) .item-totals .shipping {
    text-align: center;
    margin-top: 4px;
    font-size: 10px !important;
  }

  .products .item:not(.promo) .item-buy {
    grid-area: footer;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
  }

  .products .item:not(.promo) .item-buy .button {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 16px 20px !important;
  }

  .products .item:not(.promo) .item-buy .button .button-text {
    font-size: 15px;
  }

  .products .item:not(.promo) .item-buy .button .button-text-aux {
    font-size: 10px;
    font-weight: 600 !important;
  }

  .products .item:not(.promo) .item-buy .card-flags {
    margin-top: 8px;
  }

  .title-aux {
    font-size: 28px !important;
    margin-top: 70px !important;
  }

  .cta-promo {
    h2 {
      font-size: 28px !important;
    }

    h3 {
      font-size: 28px !important;
    }

    h4 {
      font-size: 28px !important;
    }

    img {
      max-width: 350px !important;
    }
  }

  #guarantee {
    h2 {
      font-size: 28px !important;
    }

    h3 {
      font-size: 28px !important;
    }
  }

  .benefits-section h2,
  .ingredients-section h2 {
    font-size: 28px !important;
  }

  .benefit-card {
    padding: 25px !important;

    p {
      margin-bottom: 0px !important;
    }
  }

  .ingredient-card {
    h3 {
      font-weight: 700 !important;
    }

    p {
      margin-bottom: 0px !important;
    }
  }

  .ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
  }

  .cta-headline {
    h3 {
      font-size: 28px !important;
    }

    h4 {
      font-size: 28px !important;
    }
  }

  #faq {
    h2 {
      font-size: 28px !important;
    }
  }

  footer {
    padding-bottom: 60px;

    .container {
      max-width: 1200px;
      padding: 0 20px;
    }

    .small {
      font-size: 14px !important;
      text-align: center !important;
    }

    .list-inline {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .products .productsGrid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .products .productsGrid > a {
    max-width: 520px;
    width: 100%;
  }

  .products .productsGrid [data-offer="promo"] {
    order: 1;
  }
  .products .productsGrid [data-offer="mid"] {
    order: 2;
  }
  .products .productsGrid [data-offer="basic"] {
    order: 3;
  }
}

#purchase-notifications.purchases-disclaimer {
  position: fixed;
  bottom: 80px;
  left: -800px;
  right: auto;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  font-style: normal;
  transition: left 0.6s ease;
  z-index: 9999;
}

.purchases-box {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 280px;
  max-width: 360px;
}

.purchases-box .purchased-bottle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.purchases-box img {
  max-width: 64px;
  height: auto;
  display: block;
}

.purchase-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.purchase-info-line1 {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
}
.purchase-info-line2 {
  font-size: 13px;
  font-weight: 500;
  color: #666;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .purchases-disclaimer {
    max-width: 350px;
    bottom: 100px !important;

    .purchases-box {
      width: 100%;
      padding: 12px 16px;
    }
  }

  .purchases-box img {
    max-width: 100px;
  }

  .purchase-info-line1 {
    font-size: 15px;
  }
  .purchase-info-line2 {
    font-size: 14px;
  }
}

.cartpanda.banner-hidden .cpd-default {
  display: block !important;
}
.cartpanda#vsl .cpd-default {
  display: block !important;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
