/* Sale products section */
.ds-sale-products-section {
  width: 100%;
}

.ds-sale-products-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.ds-sale-card {
  /* position: relative; */
}

.ds-sale-card__top {
  position: relative;
  border-radius: 16px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  background: #f6f6f6;
}

.ds-sale-card--featured {
  grid-row: span 2;
  min-height: 680px;
}

.ds-sale-card--small {
  min-height: 280px;
}

.ds-sale-card:nth-child(n + 4) {
  min-height: 280px;
}

.ds-sale-products-section .ds-sale-card__image-link {
  display: block;
  min-height: 0;
  overflow: hidden;
}

.ds-sale-products-section .ds-sale-card__image-link:hover .ds-sale-card__image {
  transform: scale(1.12);
}

.ds-sale-products-section .ds-sale-card__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}
.ds-sale-products-section .ds-sale-card--featured .ds-sale-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ds-sale-card--featured .ds-sale-card__image-link {
  aspect-ratio: 588 / 684;
  overflow: hidden;
}
.ds-sale-card--small .ds-sale-card__image-link {
  aspect-ratio: 588 / 294;
  overflow: hidden;
}

.ds-sale-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 80px 32px 28px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  color: #fff;
  pointer-events: none;
}

.ds-sale-card__title {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}

.ds-sale-card--small .ds-sale-card__title {
  font-size: 22px;
}

.ds-sale-card__title a {
  color: inherit;
  text-decoration: none;
}

.ds-sale-card__excerpt {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.ds-sale-card__price {
  font-size: 16px;
  font-weight: normal;
  color: #fff;
}

.ds-sale-card__price del {
  margin-right: 8px;
  opacity: 0.72;
  font-size: 16px;
}

.ds-sale-card__price ins {
  text-decoration: none;
}

.ds-sale-card__bottom {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 14px 0 0;
  background: #fff;
}

/* Shared countdown */
.ds-sale-countdown {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.ds-sale-countdown__label {
  min-width: 120px;
  font-size: 15px;
  line-height: 1.4;
}

.ds-sale-countdown__label span,
.ds-sale-countdown__label small {
  display: block;
  letter-spacing: 1px;
}
.ds-sale-countdown__label span {
  color: #4b4b57;
  font-weight: 500;
}

.ds-sale-countdown__label small {
  margin-top: 2px;
  color: #7a7288;
  font-size: 14px;
  font-weight: normal;
}

.ds-sale-countdown__items {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ds-sale-countdown__box {
  width: 56px;
  padding: 10px 8px;
  border-radius: 8px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ds-sale-countdown__box strong {
  font-size: 20px;
  line-height: 1;
  font-weight: normal;
  color: #4b4b57;
}

.ds-sale-countdown__box span {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1;
  color: #7a7288;
}

/* Sale card countdown spacing */
.ds-sale-card__timer {
  width: auto;
}

/* Button */
.ds-sale-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 32px;
  border: 1px solid #eeeeee;
  border-radius: 50px;
  background: #fff;
  color: #6814c9;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  line-height: 180%;
  letter-spacing: 1px;
}

.ds-sale-card__button:hover {
  background: #eeeeee;
  border-color: #eeeeee;
  color: #6814c9;
}

.ds-sale-card__button-icon {
  display: inline-flex;
}

/* Single product timer */
.ds-product-sale-timer {
  margin: 16px 0;
}

/* Tablet */
@media (max-width: 1024px) {
  .ds-sale-products-grid {
    grid-template-columns: 1fr;
  }

  .ds-sale-card--featured,
  .ds-sale-card--small {
    grid-row: auto;
    min-height: 420px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .ds-sale-card--featured,
  .ds-sale-card--small {
    min-height: 460px;
  }

  .ds-sale-card--featured .ds-sale-card__image-link,
  .ds-sale-card--small .ds-sale-card__image-link {
    aspect-ratio: 4 / 3;
  }

  .ds-sale-card__overlay {
    padding: 72px 20px 22px;
  }

  .ds-sale-card__bottom {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 132px;
  }

  .ds-sale-card__title,
  .ds-sale-card--small .ds-sale-card__title {
    font-size: 20px;
  }

  .ds-sale-countdown {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .ds-sale-countdown__items {
    width: 100%;
    justify-content: start;
  }

  .ds-sale-countdown__box {
    width: 23%;
    max-width: 56px;
  }

  .ds-sale-card__button {
    width: 100%;
  }
}
