.celeste-product-offers__container {
  padding: 4.875rem 0 4.375rem 0;
  text-align: center;
  background: linear-gradient(180deg, rgba(32, 34, 62, 1) 20%, rgba(15, 29, 159, 1) 50%);
}

.celeste-product-offers__subtitle {
  position: relative;
  z-index: 2;
  color: white;
  font-size: var(--ds-text-base);
  font-weight: 300;
  text-transform: uppercase;
}

.celeste-product-offers__title {
  z-index: 1;
  position: relative;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  margin-bottom: 4.375rem;
  color: white;
  font-weight: bold;
  display: flex;
  justify-content: center;
}

.celeste-product-offers__title::after {
  position: absolute;
  content: "";
  top: -5rem;
  display: block;
  width: 10.625rem;
  height: 10.625rem;
  border-radius: 50%;
  rotate: -45deg;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(18, 62, 206, 1) 0%,
    rgba(19, 55, 166, 1) 10%,
    rgba(19, 46, 129, 1) 30%,
    rgba(22, 40, 109, 1) 60%,
    rgba(28, 34, 85, 1) 100%
  );
}

.celeste-product-offers__grid {
  display: grid;
  gap: 1rem;
  position: relative;
  z-index: 3;
}

.celeste-product-offers__grid.cols-1 {
  grid-template-columns: 1fr;
}

.celeste-product-offers__grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.celeste-product-offers__grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.celeste-product-offers__grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Swiper styles for more than 4 items */
.celeste-product-offers__slider {
  position: relative;
  padding-bottom: 3rem;
}

.celeste-product-offers__slider .swiper-slide {
  flex: none;
}

.celeste-product-offers__slider .celeste-product-offers__item {
  width: 100%;
}

.celeste-product-offers__slider .swiper-pagination {
  position: relative !important;
  margin-top: 20px;
  padding: 30px 0 0 5px;
}

.celeste-product-offers__slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: all 0.3s ease;
}

.celeste-product-offers__slider .swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.2);
}

.celeste-product-offers__item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(218, 220, 222, 1) 100%);
  border-radius: 1.25rem;
  padding: 1.875rem 1.25rem 1.25rem;
  color: var(--ds-text-primary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dark .celeste-product-offers__item {
  background: linear-gradient(180deg, rgba(39, 43, 81, 1) 0%, rgba(1, 3, 30, 1) 100%);
}

.celeste-product-offers__item h3 {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.1em;
  color: var(--ds-text-primary);
}

.dark .celeste-product-offers__item h3 {
  color: var(--ds-color-tertiary);
}

.celeste-product-offers__desc {
  list-style: none;
  font-size: var(--ds-text-base);
  padding: 0;
  margin: 1.25rem 0;
  text-align: left;
  display: flex;
  justify-content: center;
  color: var(--ds-text-primary);
}

.celeste-product-offers__desc li {
  display: flex;
  align-items: center;
}

.celeste-product-offers__desc li::before {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.324' height='14.508' viewBox='0 0 17.324 14.508'%3E%3Cpath d='M161.791,6968.55l5.3,6.2,9.212-11.533' transform='translate(-160.381 -6961.812)' fill='none' stroke='%2300e2d5' stroke-linecap='round' stroke-width='2'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.celeste-product-offers__price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ds-color-primary);
  margin: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dark .celeste-product-offers__price {
  color: var(--ds-color-tertiary);
}

.celeste-product-offers__price .unit {
  font-size: 0.625rem;
  font-weight: 400;
  color: var(--ds-text-primary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 0.375rem;
}

.celeste-product-offers__price .unit__text {
  margin-left: 0.313rem;
}

.celeste-product-offers__price .unit__label {
  font-size: 10px;
}

.celeste-product-offers__btns form {
  margin: auto;
}

.celeste-product-offers__btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.celeste-product-offers__btns .btn {
  width: 11.875rem;
}

.celeste-product-offers__btns .btn-link {
  text-decoration: underline;
  font-weight: 600;
  font-size: var(--ds-text-base);
  color: var(--ds-text-primary);
}

.dark .celeste-product-offers__btns .btn-link {
  color: var(--ds-color-tertiary);
}

/* Responsive */
@media (max-width: 1200px) {
  .celeste-product-offers__grid.cols-1,
  .celeste-product-offers__grid.cols-2,
  .celeste-product-offers__grid.cols-3,
  .celeste-product-offers__grid.cols-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .celeste-product-offers__container {
    margin-top: 6rem;
    padding: 6.875rem 0 4.375rem 0;
  }
  .celeste-product-offers__title {
    margin-bottom: 6.375rem;
  }
  .celeste-product-offers__grid.cols-1,
  .celeste-product-offers__grid.cols-2,
  .celeste-product-offers__grid.cols-3,
  .celeste-product-offers__grid.cols-4 {
    grid-template-columns: 1fr;
  }
  .celeste-product-offers__grid.is-carousel {
    display: grid;
    grid-template-columns: 1fr;
    overflow-x: unset;
    scroll-snap-type: none;
  }

  .celeste-product-offers__grid.is-carousel > .celeste-product-offers__item {
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: none;
  }

  .celeste-product-offers__container {
    padding: 6.875rem 1.75rem 4.375rem 1.75rem;
  }
}
