:root {
  --primary-color: #1c2120;
  --secondary-color: #dab866;
  --third-color: #75cefb;
  --fourth-color: #fcc961;
  --primary-color-light: #2e2e2e;
  --primary-color-dark: #030303;
  --secondary-color-light: #dac38d;
  --secondary-color-dark: #db9e0f;
  --contrast-color: #fcc961;
  --text-color: #231f20;
  --light-color: #f1f1f1;
  --white: #ffffff;
  --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);
}

.products {
  position: relative;
}

@media (max-width: 1399px) {
  .products > .container {
    max-width: 100%;
  }
}

.products .productsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2em;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1399px) {
  .products .productsGrid {
    gap: 1em;
  }
}

@media (max-width: 767px) {
  .products .productsGrid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .products .productsGrid [data-offer="promo"] {
    order: 2;
  }

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

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

.products .productsGrid > a {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.products .title {
  text-align: center;
  margin-bottom: 0.75em;
  font-size: 2.25em;
}

@media (max-width: 599px) {
  .products .title {
    font-size: 1.25em;
  }
}

.products a {
  text-decoration: none;
  color: var(--text-color);
}

.products .item {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 3px;
  color: var(--text-color);
  background-color: white;
  border-radius: 1em;
  overflow: hidden;
  border: 2px solid var(--secondary-color);
  box-shadow: var(--bs-box-shadow-sm);
}

.products .item:hover {
  scale: 1.025;
}

.products .item .wrapper {
  border-radius: 18px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .products .item .wrapper {
    display: grid;
    grid-template-areas: "header header" "title info" "img info" "img totals" "footer footer";
    grid-template-columns: 1fr 1fr;
    align-items: center;
    -moz-column-gap: 0.5em;
    column-gap: 0.5em;
    padding: 0.5em 0;
  }
}

.products .item .item-header {
  grid-area: title;
  padding: 0.25em 0.5em;
  background-color: var(--secondary-color);
  font-weight: 800;
}

@media (max-width: 767px) {
  .products .item .item-header {
    background-color: transparent;
    font-size: 0.9em;
    padding: 0;
  }
}

.products .item .item-img {
  grid-area: img;
}

.products .item .item-img .supply {
  padding: 1em 0.5em;
  text-align: center;
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .products .item .item-img .supply {
    font-size: 0.8em;
    padding: 0;
  }
}

.products .item .item-img .supply b {
  display: block;
  font-size: 1.75em;
}

@media (max-width: 767px) {
  .products .item .item-img .supply b {
    font-size: 1.25em;
  }
}

.products .item .item-img img {
  max-height: 200px;
}

.products .item .item-info {
  grid-area: info;
}

.products .item .item-info .price {
  display: flex;
  text-align: start;
  gap: 0.25em;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  align-items: center;
  line-height: 1;
}

.products .item .item-info .price b {
  font-size: 4em;
  text-align: center;
}

@media (max-width: 767px) {
  .products .item .item-info .price b {
    font-size: 2.8em;
    letter-spacing: -0.06em;
  }
}

.products .item .item-info .price sup {
  font-size: 0.45em;
  top: -0.5em;
}

.products .item .item-info .price span {
  font-weight: 800;
}

@media (max-width: 767px) {
  .products .item .item-info .price span {
    font-size: 0.65em;
  }
}

.products .item .item-info .savings {
  font-size: 0.7em;
  font-weight: 800;
}

@media (max-width: 767px) {
  .products .item .item-info .savings {
    font-size: 0.65em;
  }
}

.products .item .item-info .savings > div {
  padding: 0.5em;
  align-items: center;
  justify-content: center;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.4196078431);
}

.products .item .item-info .savings > div:first-child {
  border-top: 1px dashed rgba(0, 0, 0, 0.4196078431);
  color: var(--primary-color);
}

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

@media (max-width: 767px) {
  .products .item .item-info .savings > div {
    padding: 0.5em 0;
  }
}

.products .item .item-info .savings span {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
  line-height: 1;
}

@media (max-width: 767px) {
  .products .item .item-info .savings span {
    letter-spacing: -0.4px;
  }
}

.products .item .item-info .savings span::before {
  content: "\f270";
  font-family: "bootstrap-icons";
  font-size: 1.5em;
  font-weight: normal;
}

@media (max-width: 767px) {
  .products .item .item-info .savings span::before {
    font-size: 1em;
  }
}

.products .item .item-buy {
  grid-area: footer;
}

.products .item .item-buy .button {
  padding: 0.65em;
  margin: 0.5em 0.25em;
}

@media (max-width: 767px) {
  .products .item .item-buy .button {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.15em;
  }
}

.products .item .item-buy .button span {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
}

.products .item .item-buy .button span::before {
  content: "\f23e";
  font-family: "bootstrap-icons";
  font-weight: normal;
  margin-top: -0.1em;
}

.products .item .item-buy .card-flags {
  max-width: 220px;
  margin-bottom: 0.5em;
}

@media (max-width: 767px) {
  .products .item .item-buy .card-flags {
    display: none;
  }
}

.products .item .item-totals {
  grid-area: totals;
  font-size: 0.9em;
  padding-bottom: 1em;
}

@media (max-width: 767px) {
  .products .item .item-totals {
    font-size: 0.8em;
  }
}

.products .item .item-totals .totals s {
  text-decoration-color: red;
  text-decoration-thickness: 2px;
}

.products .item .item-totals .totals span {
  color: var(--contrast-color);
}

.products .item .item-totals .shipping {
  font-weight: 800;
  text-transform: uppercase;
}

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

.products .item.promo {
  color: white;
  background-color: white;
  text-shadow: 0px 2px rgba(0, 38, 121, 0.6392156863);
  border: 2px solid var(--primary-color);
}

.products .item.promo .wrapper {
  background-image: radial-gradient(
    var(--secondary-color-dark),
    var(--primary-color)
  );
}

@media (max-width: 767px) {
  .products .item.promo .wrapper {
    grid-template-areas: "header header" "img info" "img totals" "footer footer";
  }
}

.products .item.promo .item-header {
  grid-area: header;
  background-color: white;
  color: var(--primary-color);
  text-shadow: none;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .products .item.promo .item-header {
    margin: -0.55em 0 0.5em;
    padding: 0.25em;
  }
}

.products .item.promo .item-info .savings > div {
  color: white;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.4196078431);
}

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

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

.products .item.promo .item-buy .button {
  color: var(--text-color);
  background-image: linear-gradient(to top, #fccd15 50%, #ffd814 51%);
  text-shadow: none;
}

.products .item.promo .item-buy .button:hover {
  background-image: linear-gradient(to bottom, #fccd15 50%, #ffd814 51%);
}

.products .item.promo .item-totals .shipping span {
  color: var(--contrast-color);
}

.no-thanks {
  display: block;
  text-align: center;
  margin: 0 auto;
  color: var(--text-color);
  font-size: 16px;
  max-width: 600px;
  text-decoration: none;
}

.products .container {
  width: 80%;
}

.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-dark)
  );
}

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

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

.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: #3a0f00;
}

.products .item .item-info .price b {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: #3a0f00;
}

.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.promo .item-info .savings > div:first-child {
  background: linear-gradient(135deg, #fcd34d, #f59e0b);
}

.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: #fff;
  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 25px;
}

.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;
  display: flex;
  justify-content: center;
}

.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;
}

@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: 50px;
  }

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

  .products .item.promo .item-info .price span {
    font-size: 12px;
    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: 16px;
    background: transparent !important;
    border: none !important;
    padding: 0px !important;
  }

  .products .item.promo .item-info .savings > div.guarantee {
    padding: 0px !important;
    font-size: 16px !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: 16px !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: 16px !important;
  }

  .products .item.promo .item-totals .totals {
    font-size: 16px;
    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: 16px !important;
    font-weight: 600 !important;
  }

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

  .products .item.promo .item-buy {
    grid-area: footer;
    display: flex;
    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: 50px;
  }

  .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: 12px;
    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: 16px;
    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: 16px !important;
  }

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

  .products .item:not(.promo) .item-buy {
    grid-area: footer;
    display: flex;
    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;
    }
  }
}

@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;
    }
  }
}

@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;
  }
}
