.adh-deals {
  --adh-accent: #e50068;
  box-sizing: border-box;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  width: min(1240px, calc(100% - 32px));
  margin: 28px auto 44px;
  padding: clamp(28px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 6px solid var(--adh-accent);
  border-radius: 28px;
  color: #ffffff;
  background: radial-gradient(circle at 85% 15%, rgba(229, 0, 104, 0.32), transparent 36%), linear-gradient(135deg, #202835 0%, #111722 100%);
  box-shadow: 0 24px 62px rgba(17, 23, 34, 0.28);
}
.adh-deals::after {
  content: "%";
  position: absolute;
  z-index: -1;
  right: 43%;
  top: 50%;
  color: rgba(255, 255, 255, 0.07);
  font-size: clamp(140px, 19vw, 260px);
  font-weight: 950;
  line-height: 1;
  transform: translate(50%, -50%) rotate(-9deg);
  pointer-events: none;
}
.adh-deals *,
.adh-deals *::before,
.adh-deals *::after {
  box-sizing: border-box;
}
.adh-deals--lcdj {
  --adh-accent: #d9773f;
  background: radial-gradient(circle at 88% 15%, rgba(217, 119, 63, 0.27), transparent 38%), linear-gradient(135deg, #21463b 0%, #132d26 100%);
  box-shadow: 0 24px 62px rgba(19, 45, 38, 0.32);
}
.adh-deals__content {
  position: relative;
  z-index: 2;
}
.adh-deals__eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
}
.adh-deals__eyebrow span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--adh-accent);
  box-shadow: 0 8px 20px rgba(19, 45, 38, 0.24);
  font-size: 17px;
  letter-spacing: 0;
}
.adh-deals h2 {
  max-width: 650px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(32px, 5vw, 59px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.adh-deals__intro {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.7vw, 19px);
  line-height: 1.55;
}
.adh-deals__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 14px 19px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  color: #ffffff !important;
  background: var(--adh-accent);
  box-shadow: 0 12px 26px rgba(19, 45, 38, 0.25);
  font-weight: 850;
  text-decoration: none !important;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.adh-deals__cta:hover,
.adh-deals__cta:focus-visible {
  color: #ffffff !important;
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.adh-deals__products {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.adh-deals__product {
  position: relative;
  display: grid;
  min-width: 0;
  height: 145px;
  place-items: center;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 17px;
  background: #ffffff;
  box-shadow: 0 13px 28px rgba(19, 45, 38, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.adh-deals__product:hover,
.adh-deals__product:focus-visible {
  box-shadow: 0 17px 34px rgba(19, 45, 38, 0.34);
  transform: translateY(-3px);
}
.adh-deals__product img {
  display: block;
  width: 100%;
  height: 120px;
  object-fit: contain;
}
.adh-deals__product span {
  position: absolute;
  top: 9px;
  left: 9px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--adh-accent);
  box-shadow: 0 7px 16px rgba(19, 45, 38, 0.24);
  font-size: 12px;
  font-weight: 950;
}
@media (max-width: 820px) {
  .adh-deals {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 29px 22px;
    border-radius: 22px;
  }
  .adh-deals::after {
    right: 8%;
    top: 28%;
    transform: translateY(-50%) rotate(-9deg);
  }
  .adh-deals__products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .adh-deals__product {
    height: 100px;
    padding: 8px;
  }
  .adh-deals__product img {
    height: 82px;
  }
}
@media (max-width: 560px) {
  .adh-deals {
    width: min(82%, 1240px);
    margin: 18px auto 34px;
    padding: 25px 18px;
  }
  .adh-deals__products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .adh-deals__product {
    height: 116px;
  }
  .adh-deals__product img {
    height: 94px;
  }
}
