.giftIdeas {
  width: 100%;
  max-width: min(1188px, 100dvw);
  box-sizing: border-box;
  padding: 28px 20px 44px;
}

.giftIdeas__title {
  text-align: center;
  color: #b40000;
  font-size: 24px;
  letter-spacing: .08em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.giftIdeas__grid {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.giftIdeas__grid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: #b40000;
  transform: translateX(-50%);
  opacity: .9;
}

.giftIdeas__item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-right: 60px;
}

.giftIdeas__imageLink {
  display: block;
  width: 360px;
  height: 360px;
  overflow: hidden;
  background: #eee;
}

.giftIdeas__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.giftIdeas__card {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  min-height: 260px;
  background: #fff;
  padding: 22px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.giftIdeas__discount {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #b40000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 4px;
}

.giftIdeas__name {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  color: #111;
  line-height: 1.15;
}

.giftIdeas__prices {
  margin: 0;
  font-weight: 700;
}

.giftIdeas__priceLabel {
  margin: -4px 0 0;
  color: #6d6d6d;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.giftIdeas__old {
  color: #111;
  text-decoration: line-through;
  margin-right: 8px;
}

.giftIdeas__new {
  color: #b40000;
}

.giftIdeas__promoList {
  width: 100%;
  margin: 2px 0 0;
  padding-top: 10px;
  border-top: 1px solid #eee3dd;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.giftIdeas__promoLine {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}

.giftIdeas__promoQty {
  color: #111;
  font-size: 13px;
}

.giftIdeas__promoPrice {
  color: #b40000;
  font-weight: 700;
}

.giftIdeas__cta {
  display: inline-block;
  background: #b40000;
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 6px;
}

.giftIdeas__cta:hover {
  opacity: .92;
}

@media (max-width: 980px) {
  .giftIdeas {
    padding: 24px 16px 38px;
  }

  .giftIdeas__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .giftIdeas__grid::before {
    display: none;
  }

  .giftIdeas__item {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding-right: 0;
    padding-bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
  }

  .giftIdeas__card {
    position: static;
    transform: none;
    margin-top: 0;
    width: min(320px, 100%);
    min-height: 240px;
    height: auto;
  }

  .giftIdeas__imageLink {
    width: min(360px, 100%);
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 420px) {
  .giftIdeas {
    padding: 20px 12px 30px;
  }

  .giftIdeas__title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .giftIdeas__imageLink {
    width: 100%;
    max-width: 320px;
  }

  .giftIdeas__card {
    width: 100%;
    max-width: 280px;
    min-height: 220px;
    padding: 18px 14px;
  }

  .giftIdeas__cta {
    padding: 10px 22px;
  }
}
