.bmfs-container {
  position: relative;
  width: 100%;
  max-width: 260px;
  margin: 20px auto;
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 16px 0;
}

.bmfs-carousel {
  display: flex;
  position: relative;
  width: 100%;
}

.bmfs-viewport {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.bmfs-viewport:active {
  cursor: grabbing;
}

.bmfs-track-wrapper {
  width: 100%;
}

.bmfs-track {
  direction: ltr;
  justify-content: flex-start;
  transition: transform 0.5s ease;
  will-change: transform;
  display: flex;
  user-select: none;
  touch-action: pan-y;
}

.bmfs-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  box-sizing: border-box;
  padding: 12px 16px 0;
  text-align: center;
}

.bmfs-product-link {
  display: block;
  color: inherit;
  text-decoration: none;
  text-align: center;
  direction: rtl;
}

.bmfs-product-image {
  position: relative;
  max-width: 260px;
  margin: 0 auto;
}

.bmfs-product-image img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  margin: 0 auto;
  border-radius: 6px;
}

.bmfs-slide--no-quantity .bmfs-product-image img {
  filter: grayscale(100%);
}

.bmfs-image-overlay {
  position: absolute;
  inset: 0;
  background: #00000033;
  border-radius: 6px;
  pointer-events: none;
  z-index: 1;
}

.bmfs-sold-out-badge {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 8px;
  margin: 0 auto;
  width: fit-content;
  max-width: calc(100% - 16px);
  padding: 6px 12px;
  background: #000;
  color: #fff;
  font-size: 0.85rem;
  line-height: 1.3;
  text-align: center;
  border-radius: 4px;
  direction: rtl;
  z-index: 2;
}

.bmfs-product-title {
  margin: 12px 0 8px;
  font-size: 0.85rem;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  direction: rtl;
}

.bmfs-product-price {
  font-size: 1rem;
  text-align: center;
  font-weight: 600;
  direction: rtl;
  color: #e93942;
  font-weight: 900;
  text-align: center;
  margin-bottom: 8px;
}

.bmfs-hr {
  height: 0px;
  border-bottom: 1px solid #ccc;
  width: 60%;
  padding: 2px 0;
  margin: 8px auto;
}

.bmfs-product-base-price {
  font-size: 0.8rem;
  text-align: center;
  font-weight: 400;
  direction: rtl;
  color: #96949a;
  text-decoration: line-through;
  margin-top: 8px !important;
}

.bmfs-countdown-item {
  text-align: center;
}

.bmfs-flashsales-title {
  text-align: center;
  color: #298f53;
  font-size: 1.2rem;
  font-weight: 900;
}

.bmfs-countdown-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 8px 0;
  direction: ltr;
}

.bmfs-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 24px 0 4px;
  direction: ltr;
}

.bmfs-countdown-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #e93942;
  color: #fff;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.bmfs-countdown-value {
  line-height: 1;
}

.bmfs-product-button {
  display: inline-block;
  margin-top: 12px;
  padding: 9px 18px;
  border-radius: 4px;
  background-image: linear-gradient(268deg, #19b16a, #2b8c51);
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  min-width: 190px;
}

.bmfs-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  padding: 0;
}

.bmfs-prev {
  right: auto;
  left: 10px;
}

.bmfs-next {
  left: auto;
  right: 10px;
}

.bmfs-skeleton {
  padding: 12px 16px;
}

.bmfs-skeleton-image,
.bmfs-skeleton-title,
.bmfs-skeleton-price {
  background: #e5e5e5;
  border-radius: 6px;
  animation: bmfs-pulse 1.4s ease-in-out infinite;
}

.bmfs-skeleton-image {
  width: 100%;
  max-width: 260px;
  height: 280px;
  margin: 0 auto 12px;
}

.bmfs-skeleton-title {
  width: 80%;
  height: 18px;
  margin: 0 0 8px auto;
}

.bmfs-skeleton-price {
  width: 40%;
  height: 18px;
  margin: 0 0 0 auto;
}

.bmfs-message,
.bmfs-empty {
  padding: 16px;
  text-align: center;
  color: #666;
}

@keyframes bmfs-pulse {

  0%,
  100% {
    opacity: 0.55;
  }

  50% {
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .bmfs-viewport {
    overflow: hidden;
  }

  .bmfs-slide {
    flex: 0 0 100%;
  }

  .bmfs-nav {
    display: none !important;
  }
}