.sa-promo-page {
  --sa-promo-ink: #10291d;
  --sa-promo-green: #17622b;
  --sa-promo-yellow: #fff200;
  --sa-promo-cream: #f2f7ec;
  --sa-promo-muted: #53645b;
  overflow: hidden;
  background: #fff;
  color: var(--sa-promo-ink);
}

.sa-promo-page .sa-container {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

#super-promo,
#altre-promo {
  scroll-margin-top: 32px;
}

.sa-promo-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  background-color: var(--sa-promo-ink);
  background-image:
    linear-gradient(90deg, rgb(8 31 23 / 96%) 0%, rgb(8 31 23 / 82%) 48%, rgb(8 31 23 / 34%) 100%),
    var(--sa-promo-hero-image, none);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.sa-promo-hero::after {
  position: absolute;
  z-index: -1;
  right: -90px;
  bottom: -190px;
  width: 440px;
  height: 440px;
  border: 82px solid rgb(255 242 0 / 14%);
  border-radius: 50%;
  content: "";
}

.sa-promo-hero__inner {
  padding-block: 86px 72px;
}

.sa-promo-eyebrow {
  margin: 0 0 10px;
  color: var(--sa-promo-green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.sa-promo-hero .sa-promo-eyebrow {
  color: var(--sa-promo-yellow);
}

.sa-promo-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 6vw, 72px);
  font-weight: 950;
  letter-spacing: -0.025em;
  line-height: 0.96;
  text-transform: uppercase;
}

.sa-promo-hero p:not(.sa-promo-eyebrow) {
  max-width: 670px;
  margin: 22px 0 0;
  color: rgb(255 255 255 / 88%);
  font-size: 19px;
  line-height: 1.55;
}

.sa-promo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  margin-top: 30px;
}

.sa-promo-hero__cta,
.sa-promo-page .sa-promo-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 21px;
  border: 2px solid var(--sa-promo-ink);
  border-radius: 6px;
  background: var(--sa-promo-yellow);
  color: var(--sa-promo-ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.sa-promo-hero__cta {
  border-color: var(--sa-promo-yellow);
}

.sa-promo-hero__cta:hover,
.sa-promo-hero__cta:focus-visible,
.sa-promo-page .sa-promo-button:hover,
.sa-promo-page .sa-promo-button:focus-visible {
  background: var(--sa-promo-ink);
  color: #fff;
  transform: translateY(-2px);
}

.sa-promo-hero__link {
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: var(--sa-promo-yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.sa-promo-super {
  padding-block: 76px 84px;
  background: var(--sa-promo-cream);
}

.sa-promo-super__card {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  overflow: hidden;
  border: 2px solid var(--sa-promo-ink);
  border-radius: 10px;
  background: #fff;
  box-shadow: 12px 12px 0 var(--sa-promo-yellow);
}

.sa-promo-super__image {
  position: relative;
  min-width: 0;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-right: 2px solid var(--sa-promo-ink);
  background: #f7f7f1;
}

.sa-promo-super__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform 220ms ease;
}

.sa-promo-super__card:hover .sa-promo-super__image img {
  transform: scale(1.025);
}

.sa-promo-super__discount {
  position: absolute;
  top: 24px;
  left: 24px;
  min-width: 102px;
  min-height: 102px;
  display: grid;
  place-items: center;
  border: 3px solid var(--sa-promo-ink);
  border-radius: 50%;
  background: var(--sa-promo-yellow);
  color: var(--sa-promo-ink);
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
  transform: rotate(-7deg);
}

.sa-promo-super__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(34px, 5vw, 68px);
}

.sa-promo-super__copy h2,
.sa-promo-products__heading h2,
.sa-promo-support h2 {
  margin: 0;
  color: var(--sa-promo-ink);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-transform: uppercase;
}

.sa-promo-super__lead {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--sa-promo-muted);
  font-size: 18px;
  line-height: 1.55;
}

.sa-promo-super__lead strong {
  color: var(--sa-promo-ink);
}

.sa-promo-super__details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.sa-promo-super__details li {
  padding: 7px 11px;
  border: 1px solid #b9c7bd;
  border-radius: 999px;
  background: var(--sa-promo-cream);
  color: var(--sa-promo-ink);
  font-size: 13px;
  font-weight: 800;
}

.sa-promo-super__price {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: baseline;
  margin: 26px 0;
  padding: 18px 20px;
  border-left: 5px solid var(--sa-promo-yellow);
  background: var(--sa-promo-ink);
  color: #fff;
}

.sa-promo-super__price span {
  width: 100%;
  color: rgb(255 255 255 / 72%);
  font-size: 13px;
  font-weight: 750;
}

.sa-promo-super__price del {
  color: rgb(255 255 255 / 62%);
  font-size: 18px;
}

.sa-promo-super__price strong {
  color: var(--sa-promo-yellow);
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
}

.sa-promo-media-fallback {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: radial-gradient(circle at 50% 50%, #fff 0 34%, var(--sa-promo-yellow) 35% 52%, var(--sa-promo-ink) 53% 100%);
  color: #fff;
  text-align: center;
}

.sa-promo-media-fallback small {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.sa-promo-media-fallback strong {
  font-size: 36px;
  font-weight: 950;
  line-height: 1;
}

.sa-promo-products {
  padding-block: 86px;
  background: #fff;
}

.sa-promo-products__heading {
  max-width: 810px;
  margin-bottom: 40px;
}

.sa-promo-products__heading > p:not(.sa-promo-eyebrow) {
  margin: 17px 0 0;
  color: var(--sa-promo-muted);
  font-size: 17px;
  line-height: 1.55;
}

.sa-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.sa-promo-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #cfd8d1;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgb(16 41 29 / 6%);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.sa-promo-card:hover {
  border-color: #91a598;
  box-shadow: 0 14px 34px rgb(16 41 29 / 11%);
  transform: translateY(-3px);
}

.sa-promo-card__image {
  position: relative;
  display: flex;
  aspect-ratio: 4 / 3;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid #dce3dd;
  background: #f6f7f2;
}

.sa-promo-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform 200ms ease;
}

.sa-promo-card:hover .sa-promo-card__image img {
  transform: scale(1.035);
}

.sa-promo-card__discount {
  position: absolute;
  top: 14px;
  left: 14px;
  min-width: 62px;
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 7px 11px;
  border: 2px solid var(--sa-promo-ink);
  border-radius: 5px;
  background: var(--sa-promo-yellow);
  color: var(--sa-promo-ink);
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
}

.sa-promo-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}

.sa-promo-card__meta {
  margin: 0 0 8px !important;
  color: var(--sa-promo-green) !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.05em;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.sa-promo-card h3 {
  margin: 0;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 1.12;
}

.sa-promo-card h3 a {
  color: var(--sa-promo-ink);
  text-decoration: none;
}

.sa-promo-card__configuration {
  width: 100%;
  margin: 18px 0 0;
  padding: 13px 14px;
  border-left: 4px solid var(--sa-promo-green);
  background: var(--sa-promo-cream);
}

.sa-promo-card__configuration strong,
.sa-promo-card__configuration span {
  display: block;
}

.sa-promo-card__configuration strong {
  margin-bottom: 3px;
  color: var(--sa-promo-green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sa-promo-card__configuration span {
  color: var(--sa-promo-ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.sa-promo-card__quantities {
  margin: 14px 0 0;
  color: var(--sa-promo-muted);
  font-size: 13px;
  line-height: 1.45;
}

.sa-promo-card__quantities strong {
  color: var(--sa-promo-ink);
}

.sa-promo-card__price {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 10px;
  align-items: baseline;
  margin: 18px 0 20px;
  padding-top: 16px;
  border-top: 1px solid #dce3dd;
}

.sa-promo-card__price span {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--sa-promo-muted);
  font-size: 12px;
  font-weight: 750;
}

.sa-promo-card__price del {
  color: #77857d;
  font-size: 13px;
  text-align: right;
}

.sa-promo-card__price strong {
  color: var(--sa-promo-green);
  font-size: 23px;
  font-weight: 950;
  line-height: 1;
  text-align: right;
}

.sa-promo-card__cta {
  margin-top: auto;
  color: #1f7a3d;
  font-size: 15px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.sa-promo-card__cta:hover,
.sa-promo-card__cta:focus-visible {
  color: var(--sa-promo-ink);
}

.sa-promo-support {
  padding-block: 60px;
  background: var(--sa-promo-ink);
  color: #fff;
}

.sa-promo-support__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.sa-promo-support .sa-promo-eyebrow {
  color: var(--sa-promo-yellow);
}

.sa-promo-support h2 {
  color: #fff;
  font-size: 32px;
}

.sa-promo-support p:not(.sa-promo-eyebrow) {
  margin: 10px 0 0;
  color: rgb(255 255 255 / 76%);
  font-size: 16px;
}

.sa-promo-page .sa-promo-button--light {
  flex: 0 0 auto;
}

@media (max-width: 1000px) {
  .sa-promo-super__card {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  }

  .sa-promo-super__image {
    min-height: 430px;
  }

  .sa-promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .sa-promo-page .sa-container {
    width: min(100% - 30px, 1180px);
  }

  .sa-promo-hero {
    min-height: 470px;
    background-image:
      linear-gradient(0deg, rgb(8 31 23 / 97%) 0%, rgb(8 31 23 / 72%) 67%, rgb(8 31 23 / 38%) 100%),
      var(--sa-promo-hero-image, none);
  }

  .sa-promo-hero::after {
    right: -150px;
    bottom: -180px;
  }

  .sa-promo-hero__inner {
    padding-block: 64px 48px;
  }

  .sa-promo-hero h1 {
    font-size: clamp(40px, 13vw, 54px);
  }

  .sa-promo-hero p:not(.sa-promo-eyebrow) {
    margin-top: 17px;
    font-size: 16px;
  }

  .sa-promo-hero__actions {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 24px;
  }

  .sa-promo-super,
  .sa-promo-products {
    padding-block: 54px;
  }

  .sa-promo-super__card {
    grid-template-columns: 1fr;
    box-shadow: 7px 7px 0 var(--sa-promo-yellow);
  }

  .sa-promo-super__image {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-right: 0;
    border-bottom: 2px solid var(--sa-promo-ink);
  }

  .sa-promo-super__discount {
    top: 16px;
    left: 16px;
    min-width: 80px;
    min-height: 80px;
    font-size: 22px;
  }

  .sa-promo-super__copy {
    padding: 30px 24px 32px;
  }

  .sa-promo-super__copy h2,
  .sa-promo-products__heading h2,
  .sa-promo-support h2 {
    font-size: 30px;
  }

  .sa-promo-super__lead,
  .sa-promo-products__heading > p:not(.sa-promo-eyebrow) {
    font-size: 16px;
  }

  .sa-promo-super__price strong {
    font-size: 27px;
  }

  .sa-promo-page .sa-promo-button {
    width: 100%;
  }

  .sa-promo-products__heading {
    margin-bottom: 30px;
  }

  .sa-promo-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sa-promo-card__image {
    aspect-ratio: 16 / 10;
  }

  .sa-promo-card__body {
    padding: 22px 20px;
  }

  .sa-promo-support__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sa-promo-hero__cta,
  .sa-promo-page .sa-promo-button,
  .sa-promo-card,
  .sa-promo-card__image img,
  .sa-promo-super__image img {
    transition: none;
  }
}
