.flash-sale-header {
    background-color: var(--kt-link-color);
    color: white;
    border-radius: 10px 10px 0 0;
    padding: 20px 25px;
}

.flash-sale-time.active {
    background: linear-gradient(90deg, #ff9900, #ff5c00);
    color: #fff;
}
.flash-sale-time.ducapi { color: #999; }

.overlay-disabled {
    position: absolute;
    top: 0; left: 0;
    right: 0; bottom: 0;
    background-color: rgba(255,255,255,0.7);
    z-index: 10;
    cursor: not-allowed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    color: #333;
    border-radius: 0.5rem;
}

.flash-sale-times {
  display: flex;
  flex-wrap: wrap;
  gap: 6px; /* 3px mỗi bên */
  padding: 15px;
  background: #f9f9f9;
  justify-content: flex-start;
}
.price-wrapper {
    display: flex;
    align-items: center;
    gap: 2px;
    font-family: sans-serif;
    flex-wrap: wrap;         
    word-wrap: break-word;  
    overflow-wrap: break-word;
    white-space: normal;   
}

.old-price, .current-price {
    white-space: nowrap;   
}

.current-price {
    color: #0066ff;
    font-size: 18px;
    font-weight: bold;
}

.old-price {
    color: gray;
    text-decoration: line-through;
    font-size: 14px;
}

.vnd {
    font-size: 13px;
}
.flash-sale-time {
  background: white;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  flex: 1 0 calc(50% - 6px); 
  max-width: calc(50% - 6px);
}
@media (min-width: 600px) {
  .flash-sale-time {
    flex: 1 0 calc(25% - 6px);
    max-width: calc(25% - 6px);
  }
}
@media (min-width: 992px) {
  .flash-sale-time {
    flex: 1 0 calc(16.666% - 6px);
    max-width: calc(16.666% - 6px);
  }
}
.flash-sale-products {
    background: #f9fafe;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.flash-sale-products {
    background: #f9fafe;
    padding: 10px 20px 30px;
    overflow-x: hidden;
}
.swiper {
    width: 100%;
    box-sizing: border-box;
}
.swiper-wrapper {
    width: 100%;
    box-sizing: border-box;
}
.swiper-slide {
    box-sizing: border-box;
    min-width: 0;
}

.flash-sale-product-card {
    height: 100%;
}

.h-175px {
    height: 175px;
    object-fit: cover;
}

