<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.product-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem;
  direction: rtl;
}

.product-card {
  background: #e30048;
  color: #fff;
  border-radius: 15px;
  width: 100%;
  max-width: 500px;
  padding: 1rem;
  flex-shrink: 0;
  position: relative;
  text-align: right;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row-reverse;
}

.product-card-left {
  flex: 1;
  padding-left: 15px;
}

.product-card-right {
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  /* Ø§Ø±ØªÙØ§Ø¹ Ø«Ø§Ø¨Øª Ø¨Ø±Ø§ÛŒ Ø¨Ø§Ú©Ø³ ØªØµÙˆÛŒØ± */
  flex-shrink: 0;
  /* Ù…Ø§Ù†Ø¹ Ø§Ø² Ú©ÙˆÚ†Ú©â€ŒØ´Ø¯Ù† Ø¯Ø± ÙØ´Ø§Ø± flex */
  margin-bottom: 15px;
}

.product-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  display: block;
}

.product-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #fff;
  padding: 0 5px;
}

.product-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  flex-direction: row-reverse;
  padding: 0 5px;
}

.sale-price {
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
}

.discounted_price {
  text-decoration: line-through;
  opacity: 0.7;
  font-size: 0.9rem;
}

.discount {
  background: #fff;
  color: #e30048;
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: bold;
}

.progress {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin: 0.8rem 0;
  flex-direction: row-reverse;
  padding: 0 5px;
}

.countdown {
  font-size: 0.9rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  gap: 10px;
  direction: rtl;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-unit span:first-child {
  font-weight: bold;
  font-size: 1rem;
}

.time-unit span:last-child {
  font-size: 0.7rem;
  opacity: 0.8;
}

/* Ù†Ù…Ø§ÛŒØ´ Ù†ÙˆØ§Ø± Ù¾ÛŒØ´Ø±ÙØª ÙØ±ÙˆØ´ */
.progress-bar-container {
  width: 100%;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  margin-top: 5px;
  overflow: hidden;
  position: relative;
  /* Ø§Ø¶Ø§ÙÙ‡ Ú©Ø±Ø¯Ù† position: relative */
}

.progress-bar {
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
  position: absolute;
  /* Ø§Ø³ØªÙØ§Ø¯Ù‡ Ø§Ø² position: absolute Ø¨Ù‡ Ø¬Ø§ÛŒ float */
  left: 0;
  top: 0;
}

/* Ø§Ø³ØªØ§ÛŒÙ„â€ŒÙ‡Ø§ÛŒ Ø§Ø³Ù„Ø§ÛŒØ¯Ø± Ù…Ø­ØµÙˆÙ„ */
.product-cards-slider {
  position: relative;
  margin-bottom: 30px;
  direction: rtl;
  max-width: 520px;
  margin: 0 auto 30px;
}

.product-card-slide {
  padding: 10px;
  outline: none;
}

/* Ø³ÙØ§Ø±Ø´ÛŒâ€ŒØ³Ø§Ø²ÛŒ Ø¯Ú©Ù…Ù‡â€ŒÙ‡Ø§ÛŒ Ø§Ø³Ù„Ø§ÛŒØ¯Ø± */
.product-cards-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-size: 0;
  /* Ø­Ø°Ù Ù…ØªÙ† */
  line-height: 0;
  /* Ø­Ø°Ù Ù…ØªÙ† */
  color: transparent;
  /* Ø­Ø°Ù Ù…ØªÙ† */
  cursor: pointer;
  border: none;
  outline: none;
}

.product-cards-slider .slick-arrow:hover {
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product-cards-slider .slick-prev {
  left: -20px;
}

.product-cards-slider .slick-next {
  right: -20px;
}

/* Ø§Ø³ØªÙØ§Ø¯Ù‡ Ø§Ø² Ø¢ÛŒÚ©ÙˆÙ† Ø¨Ù‡ Ø¬Ø§ÛŒ Ù…ØªÙ† */
.product-cards-slider .slick-prev:before,
.product-cards-slider .slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: #e30048;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.product-cards-slider .slick-prev:before {
  content: 'â†';
}

.product-cards-slider .slick-next:before {
  content: 'â†’';
}

/* Ø³ÙØ§Ø±Ø´ÛŒâ€ŒØ³Ø§Ø²ÛŒ Ù†Ù‚Ø·Ù‡â€ŒÙ‡Ø§ÛŒ Ø§Ø³Ù„Ø§ÛŒØ¯Ø± */
.product-cards-slider .slick-dots {
  bottom: -25px;
}

.product-cards-slider .slick-dots li button:before {
  font-size: 12px;
}

/* ØªÙ†Ø¸ÛŒÙ…Ø§Øª Ø¨Ø±Ø§ÛŒ Ù†Ù…Ø§ÛŒØ´ Ù…ÙˆØ¨Ø§ÛŒÙ„ */
@media (max-width: 768px) {

  .product-cards-slider .slick-prev,
  .product-cards-slider .slick-next {
    display: none !important;
  }

  .product-card {
    flex-direction: column;
  }

  .product-card-right {
    width: 100%;

  }

  .product-card-left {
    padding-left: 0;
  }
}

/* Ø§Ø³ØªØ§ÛŒÙ„â€ŒÙ‡Ø§ÛŒ Ù…Ø®ØµÙˆØµ Ø§Ø³Ù„Ø§ÛŒØ¯Ø± Ø¹Ù…ÙˆØ¯ÛŒ */
.product-cards-slider {
  height: 400px;
  /* Ø§Ø±ØªÙØ§Ø¹ Ø§Ø³Ù„Ø§ÛŒØ¯Ø± - Ù…Ù‚Ø¯Ø§Ø± Ø±Ø§ Ù…ØªÙ†Ø§Ø³Ø¨ Ø¨Ø§ Ù†ÛŒØ§Ø² Ø®ÙˆØ¯ ØªÙ†Ø¸ÛŒÙ… Ú©Ù†ÛŒØ¯ */
  overflow: hidden;
  max-width: 520px;
  margin: 0 auto 30px;
  direction: rtl;
}

.product-cards-slider .swiper-slide {
  height: auto;
  /* Ø§Ø¬Ø§Ø²Ù‡ Ù…ÛŒâ€ŒØ¯Ù‡Ø¯ Ø§Ø³Ù„Ø§ÛŒØ¯Ù‡Ø§ Ø¨Ø± Ø§Ø³Ø§Ø³ Ù…Ø­ØªÙˆØ§ Ø§Ù†Ø¯Ø§Ø²Ù‡â€ŒÚ¯ÛŒØ±ÛŒ Ø´ÙˆÙ†Ø¯ */
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
  color: #e30048 !important;
  background-color: rgba(255, 255, 255, 0.8);
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transform: rotate(90deg);
  /* Ú†Ø±Ø®Ø´ Ø¯Ú©Ù…Ù‡â€ŒÙ‡Ø§ Ø¨Ø±Ø§ÛŒ Ø§Ø³Ù„Ø§ÛŒØ¯Ø± Ø¹Ù…ÙˆØ¯ÛŒ */
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px !important;
}

.swiper-pagination-bullet-active {
  background-color: #e30048 !important;
}

/* ØªÙ†Ø¸ÛŒÙ… Ù…ÙˆÙ‚Ø¹ÛŒØª Ø¯Ú©Ù…Ù‡â€ŒÙ‡Ø§ÛŒ Ù†Ø§ÙˆØ¨Ø±ÛŒ Ø¨Ø±Ø§ÛŒ Ø§Ø³Ù„Ø§ÛŒØ¯Ø± Ø¹Ù…ÙˆØ¯ÛŒ */
.swiper-button-next {
  left: 50%;
  bottom: 10px;
  top: auto;
  transform: translateX(-50%) rotate(90deg);
}

.swiper-button-prev {
  left: 50%;
  top: 10px;
  transform: translateX(-50%) rotate(90deg);
}

/* ØªÙ†Ø¸ÛŒÙ… Ù…ÙˆÙ‚Ø¹ÛŒØª pagination Ø¨Ø±Ø§ÛŒ Ø§Ø³Ù„Ø§ÛŒØ¯Ø± Ø¹Ù…ÙˆØ¯ÛŒ */
.swiper-pagination-vertical {
  right: 10px;
}

/* Ø­Ø°Ù Ø§Ø³ØªØ§ÛŒÙ„â€ŒÙ‡Ø§ÛŒ Ø§Ø¶Ø§ÙÛŒ Slick */
.product-cards-slider .slick-arrow,
.product-cards-slider .slick-prev,
.product-cards-slider .slick-next,
.product-cards-slider .slick-prev:before,
.product-cards-slider .slick-next:before,
.product-cards-slider .slick-dots {
  display: none !important;
}

/* ØªÙ†Ø¸ÛŒÙ…Ø§Øª Ø¨Ø±Ø§ÛŒ Ù†Ù…Ø§ÛŒØ´ Ù…ÙˆØ¨Ø§ÛŒÙ„ */
@media (max-width: 768px) {
  .product-cards-slider {
    height: 350px;
    /* Ø§Ø±ØªÙØ§Ø¹ Ú©Ù…ØªØ± Ø¨Ø±Ø§ÛŒ Ù…ÙˆØ¨Ø§ÛŒÙ„ */
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}

.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
  color: #e30048 !important;
  background-color: rgba(255, 255, 255, 0.8);
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px !important;
}

.swiper-pagination-bullet-active {
  background-color: #e30048 !important;
}

/* Ø­Ø°Ù Ø§Ø³ØªØ§ÛŒÙ„â€ŒÙ‡Ø§ÛŒ Ø§Ø¶Ø§ÙÛŒ Slick */
.product-cards-slider .slick-arrow,
.product-cards-slider .slick-prev,
.product-cards-slider .slick-next,
.product-cards-slider .slick-prev:before,
.product-cards-slider .slick-next:before,
.product-cards-slider .slick-dots {
  display: none !important;
}</pre></body></html>