/* unmissable-deals component */

.unmissable-deals {
  position: relative;
  margin: 18px 0;
  padding: 24px 42px 20px;
  overflow: hidden;
  border: 1px solid #f2e3e4;
  border-radius: 20px;
  background: #fff8f8 url("../../../img/home/unmissable-deals/deals-background.png") center / cover no-repeat;
  box-shadow: 0 8px 28px rgb(65 0 5 / 6%);
}

.deal-head {
  display: flex;
  min-height: 150px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.deal-heading-group { display: flex; align-items: flex-start; gap: 18px; }

.deal-bolt {
  display: grid;
  width: 70px;
  height: 86px;
  place-items: center;
  margin: -24px 0 0 -42px;
  border-radius: 0 0 34px;
  background: linear-gradient(145deg, #ff293c, #d90018);
  box-shadow: 0 8px 22px rgb(237 0 23 / 22%);
  transform: skewY(-8deg);
}

.deal-bolt img { width: 38px; height: 38px; filter: brightness(0) invert(1); transform: skewY(8deg); }

.deal-heading-group h2 {
  margin: 8px 0 9px;
  color: #18181b;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1;
}

.deal-heading-group h2 b { color: #e5001a; }
.deal-subtitle-row { display: flex; align-items: center; gap: 18px; }
.deal-subtitle-row p { margin: 0; color: #3f3f46; font-size: 14px; }

.deal-subtitle-row a {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #e00019;
  font-size: 12px;
  font-weight: 700;
}

.deal-subtitle-row a img { width: 15px; height: 15px; }

.deal-live-interest {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 17px;
  color: #52525b;
  font-size: 12px;
}

.deal-live-interest > span > b { color: #ed0017; }
.deal-viewer-stack { display: flex; padding-left: 8px; }

.deal-viewer-stack i {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  margin-left: -8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #1f2937;
  color: #fff;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}

.deal-viewer-stack i:nth-child(2) { background: #9a3412; }
.deal-viewer-stack i:nth-child(3) { background: #155e75; }
.deal-viewer-stack i:nth-child(4) { background: #57534e; }

.deal-countdown {
  min-width: 335px;
  padding: 13px 18px 16px;
  border-radius: 17px;
  background: linear-gradient(135deg, #ff1429, #d60017);
  box-shadow: 0 12px 28px rgb(220 0 22 / 22%);
  color: #fff;
  text-align: center;
}

.deal-countdown > span { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 800; }
.deal-countdown > span img { width: 15px; filter: brightness(0) invert(1); }

.deal-clock {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  margin-top: 8px;
}

.deal-clock strong {
  display: grid;
  min-width: 84px;
  height: 72px;
  place-items: center;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 7px 15px rgb(108 0 11 / 14%);
  color: #d40017;
  font-size: 41px;
  line-height: 1;
}

.deal-clock i { padding: 0 5px; color: #fff; font-size: 25px; font-style: normal; font-weight: 800; }
.deal-products-shell { position: relative; }

.deal-products {
  display: grid;
  grid-auto-columns: minmax(205px, 1fr);
  grid-auto-flow: column;
  gap: 10px;
  padding: 8px 2px 13px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.deal-products::-webkit-scrollbar { display: none; }

.deal-product-card {
  position: relative;
  display: flex;
  min-height: 405px;
  padding: 12px;
  flex-direction: column;
  border: 1px solid #e8e8eb;
  border-radius: 16px;
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 8px 20px rgb(63 12 17 / 7%);
  scroll-snap-align: start;
  transition: box-shadow .2s ease, transform .2s ease;
}

.deal-product-card:hover { box-shadow: 0 13px 28px rgb(157 0 15 / 13%); transform: translateY(-4px); }

.deal-favorite {
  position: absolute;
  z-index: 2;
  top: 13px;
  right: 13px;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 88%);
  cursor: pointer;
}

.deal-favorite img { width: 21px; height: 21px; }
.deal-favorite.is-active img { filter: invert(15%) sepia(99%) saturate(6000%) hue-rotate(350deg); }

.deal-product-image {
  display: grid;
  height: 184px;
  place-items: center;
  overflow: hidden;
  border-radius: 11px 11px 5px 5px;
  background: #fafafa;
}

.deal-product-image img { width: 92%; height: 92%; object-fit: contain; }

.deal-shipping {
  display: flex;
  min-height: 21px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 5px 0 8px;
  border-radius: 4px;
  background: #1d1d1f;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
}

.deal-shipping img { width: 12px; filter: invert(73%) sepia(70%) saturate(398%) hue-rotate(69deg); }
.deal-product-title { min-height: 36px; color: #27272a; font-size: 12px; font-weight: 500; line-height: 1.45; }
.deal-rating { display: flex; align-items: center; gap: 5px; margin: 7px 0; }
.deal-rating b { color: #ffb000; font-size: 11px; letter-spacing: 1px; }
.deal-rating span { color: #71717a; font-size: 9px; }

.deal-promo,
.deal-lowest {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  margin-bottom: 6px;
  padding: 4px 7px;
  border-radius: 5px;
  font-size: 9px;
  font-weight: 700;
}

.deal-promo { background: #ffeaec; color: #df0019; }
.deal-promo img { width: 12px; margin-right: 3px; filter: invert(14%) sepia(99%) saturate(6000%) hue-rotate(350deg); }
.deal-lowest { background: #eaf8ec; color: #248331; }

.deal-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid #f0f0f1;
}

.deal-price del { color: #a1a1aa; font-size: 11px; }
.deal-price strong { color: #ed0017; font-size: 17px; }

.deal-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #efeff0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgb(24 24 27 / 14%);
  cursor: pointer;
  transform: translateY(-50%);
}

.deal-arrow img { width: 20px; height: 20px; }
.deal-prev { left: -25px; }
.deal-prev img { transform: rotate(180deg); }
.deal-next { right: -25px; }
.deal-dots { display: flex; justify-content: center; gap: 8px; margin-top: 5px; }
.deal-dots i { width: 9px; height: 9px; border-radius: 50%; background: #d4d4d8; }
.deal-dots i.is-active { background: #ed0017; }

@media (min-width: 1200px) {
  .deal-products { grid-auto-columns: calc((100% - 40px) / 5); }
}

@media (max-width: 991px) {
  .unmissable-deals { padding: 22px 28px 20px; }
  .deal-bolt { margin-left: -28px; }
  .deal-head { min-height: 145px; }
  .deal-countdown { min-width: 270px; }
  .deal-clock strong { min-width: 65px; height: 61px; font-size: 33px; }
  .deal-prev { left: -19px; }
  .deal-next { right: -19px; }
}

@media (max-width: 767px) {
  .unmissable-deals { padding: 18px 14px 17px; border-radius: 15px; }
  .deal-head { min-height: 0; flex-direction: column; gap: 17px; margin-bottom: 15px; }
  .deal-heading-group { gap: 12px; }
  .deal-bolt { width: 48px; height: 66px; margin: -18px 0 0 -14px; }
  .deal-bolt img { width: 28px; height: 28px; }
  .deal-heading-group h2 { margin-top: 3px; font-size: 27px; }
  .deal-subtitle-row { align-items: start; flex-direction: column; gap: 6px; }
  .deal-live-interest { margin-top: 11px; }
  .deal-countdown { width: 100%; min-width: 0; padding: 10px 12px 12px; }
  .deal-clock { max-width: 310px; margin-right: auto; margin-left: auto; }
  .deal-clock strong { min-width: 0; height: 55px; font-size: 31px; }
  .deal-products { grid-auto-columns: minmax(185px, 78%); padding-top: 7px; }
  .deal-product-card { min-height: 390px; }
  .deal-product-image { height: 170px; }
  .deal-arrow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .deal-products { scroll-behavior: auto; }
  .deal-product-card { transition: none; }
}
