/**
 * FlatSale Hùng Vũ frontend styles.
 * Every selector is anchored to the unique component root to prevent leakage
 * into Flatsome, WooCommerce, WordPress core, or third-party plugins.
 */
body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
  margin: 0 0 24px;
  color: inherit;
  font-family: inherit !important;
  font-size: inherit;
  line-height: inherit;
  overflow: visible;
  --hvfs68-gap: 14px;
  --hvfs68-arrow-width: 32px;
  --hvfs68-arrow-height: 32px;
  --hvfs68-arrow-gutter: 38px;
  --hvfs68-frame-pad: 0px;
  --hvfs68-outside-space: 48px;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell,
body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell * {
  box-sizing: border-box;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell.hvfs68-has-frame-color {
  --hvfs68-frame-pad: 14px;
  padding: var(--hvfs68-frame-pad);
  border-radius: 18px;
  background: var(--hvfs68-frame);
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell.hvfs68-has-frame-color .hvfs68-header {
  border-radius: 12px;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell.hvfs68-has-frame-color .hvfs68-products-wrap {
  margin-top: 12px;
}

/*
 * Outside controls reserve their own horizontal area and are positioned beyond
 * the outer shell boundary. This keeps the buttons completely off product cards
 * and, when a frame color is enabled, completely outside the colored frame.
 */
body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell.hvfs68-arrows-outside.hvfs68-is-slider.hvfs68-has-overflow {
  width: calc(100% - 96px);
  margin-right: auto;
  margin-left: auto;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--hvfs68-bg);
  color: var(--hvfs68-text);
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-heading-wrap,
body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-timer-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-heading {
  margin: 0 !important;
  color: inherit !important;
  font-family: inherit !important;
  font-size: clamp(18px, 2.2vw, 26px) !important;
  font-weight: 800 !important;
  font-style: italic;
  line-height: 1.15 !important;
  letter-spacing: -.02em;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-bolt {
  flex: 0 0 auto;
  width: 14px;
  height: 26px;
  background: currentColor;
  clip-path: polygon(52% 0, 100% 0, 67% 41%, 100% 41%, 31% 100%, 43% 57%, 8% 57%);
  opacity: .32;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-timer-label {
  font-size: .9em;
  font-weight: 600;
  white-space: nowrap;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-countdown {
  display: flex;
  align-items: center;
  gap: 4px;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-countdown > span {
  display: grid;
  place-items: center;
  min-width: 32px;
  height: 32px;
  padding: 0 5px;
  border-radius: 7px;
  background: #171717;
  color: #fff;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-countdown > b {
  color: inherit;
  font-weight: 800;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  color: inherit !important;
  font-family: inherit !important;
  font-size: .9em;
  font-weight: 650;
  text-decoration: none !important;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-more:hover {
  text-decoration: underline !important;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-products-wrap {
  position: relative;
  min-width: 0;
  margin-top: 14px;
  overflow: visible;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-products {
  display: grid;
  grid-template-columns: repeat(var(--hvfs68-cols), minmax(0, 1fr));
  gap: var(--hvfs68-gap);
  min-width: 0;
  margin: 0;
  padding: 2px;
  list-style: none;
}

/* Slider uses CSS Grid instead of flex so one or two rows can scroll together. */
body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-is-slider .hvfs68-products {
  display: grid;
  grid-template-columns: none;
  grid-template-rows: repeat(var(--hvfs68-slider-rows), minmax(0, auto));
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--hvfs68-cols) - 1) * var(--hvfs68-gap)) / var(--hvfs68-cols));
  align-items: stretch;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-is-slider .hvfs68-products::-webkit-scrollbar {
  display: none;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-is-slider .hvfs68-product-card {
  width: auto;
  min-width: 0;
  height: 100%;
  scroll-snap-align: start;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .07);
  border-radius: var(--hvfs68-radius);
  background: #fff;
  color: inherit;
  box-shadow: 0 5px 18px rgba(15, 23, 42, .055);
  transition: transform .2s ease, box-shadow .2s ease;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(15, 23, 42, .1);
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-product-image {
  position: relative;
  display: block;
  aspect-ratio: var(--hvfs68-image-ratio);
  overflow: hidden;
  background: #f8f8f8;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-product-image > img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 8px;
  object-fit: contain;
  transition: transform .25s ease;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-product-card:hover .hvfs68-product-image > img {
  transform: scale(1.025);
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-product-body {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  flex-direction: column;
  padding: 12px;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-product-title {
  display: -webkit-box;
  min-height: 2.9em;
  margin: 0 0 9px !important;
  overflow: hidden;
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: 650 !important;
  line-height: 1.45 !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-product-title > a {
  color: inherit !important;
  font-family: inherit !important;
  text-decoration: none !important;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-product-price {
  margin-top: auto;
  color: inherit;
  font-family: inherit !important;
  font-weight: 800;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-product-price del {
  margin-left: 6px;
  opacity: .52;
  font-weight: 500;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-product-price ins {
  text-decoration: none;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-upcoming-price {
  color: inherit;
  font-weight: 700;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-stock {
  margin-top: 10px;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-stock-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: color-mix(in srgb, var(--hvfs68-bg) 18%, #ffffff);
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-stock-bar > .hvfs68-stock-fill {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 0;
  display: block;
  min-width: 8px;
  height: 100%;
  border-radius: inherit;
  background: var(--hvfs68-bg);
  opacity: .92;
  transition: width .35s ease;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-stock-bar > .hvfs68-sold-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  max-width: calc(100% - 10px);
  min-height: 18px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  color: #27272a;
  font-family: inherit !important;
  font-size: .74em;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(15, 23, 42, .08);
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-stock-bar > .hvfs68-sold-badge svg {
  display: block;
  flex: 0 0 auto;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-stock > small {
  display: block;
  margin-top: 4px;
  color: #52525b;
  font-family: inherit !important;
  font-size: .75em;
  text-align: center;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-product-action {
  margin-top: 10px;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-product-action > .button,
body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-product-action > a.button,
body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-product-action > button.button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 36px !important;
  margin: 0 !important;
  padding: 9px 12px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: #171717 !important;
  color: #fff !important;
  font-family: inherit !important;
  font-size: .82em !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-transform: none !important;
  box-shadow: none !important;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-product-action > .button:hover,
body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-product-action > .button:focus-visible {
  background: #000 !important;
  color: #fff !important;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-product-action .added_to_cart,
body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-product-action a.added_to_cart.wc-forward {
  display: none !important;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: var(--hvfs68-arrow-width);
  height: var(--hvfs68-arrow-height);
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, .09);
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  color: #4b5563;
  box-shadow: 0 5px 18px rgba(15, 23, 42, .1);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color .18s ease, box-shadow .18s ease, opacity .18s ease;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-arrow:hover,
body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-arrow:focus-visible {
  background: #fff;
  color: #111;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .15);
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-arrow[disabled] {
  opacity: .36;
  cursor: default;
  pointer-events: none;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-arrow > span {
  display: block;
  color: inherit;
  font-size: 30px;
  line-height: 1;
}

/* Inside: controls overlap the slider edge. */
body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-arrows-inside .hvfs68-arrow-prev {
  left: 8px;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-arrows-inside .hvfs68-arrow-next {
  right: 8px;
}

/* Outside: buttons sit beyond the shell/frame rather than inside product space. */
body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-arrows-outside .hvfs68-products-wrap {
  margin-right: 0;
  margin-left: 0;
  overflow: visible;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-arrows-outside .hvfs68-arrow-prev {
  left: calc(0px - var(--hvfs68-frame-pad) - var(--hvfs68-arrow-width) - 10px);
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-arrows-outside .hvfs68-arrow-next {
  right: calc(0px - var(--hvfs68-frame-pad) - var(--hvfs68-arrow-width) - 10px);
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-arrow:focus-visible,
body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-more:focus-visible,
body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-product-title > a:focus-visible,
body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-product-image:focus-visible,
body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-products:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--hvfs68-bg), transparent 55%);
  outline-offset: 2px;
}

body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-live-status {
  margin-top: 8px;
  color: #52525b;
  font-size: .85em;
}

body .hvfs68-plugin-message.hvfs68-empty,
body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-empty {
  padding: 18px;
  border: 1px dashed #d4d4d8;
  border-radius: 10px;
  color: #71717a;
  font-family: inherit !important;
  text-align: center;
}

@media (max-width: 1024px) {
  body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-products {
    grid-template-columns: repeat(var(--hvfs68-cols-tablet), minmax(0, 1fr));
  }

  body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-is-slider .hvfs68-products {
    grid-template-columns: none;
    grid-auto-columns: calc((100% - (var(--hvfs68-cols-tablet) - 1) * var(--hvfs68-gap)) / var(--hvfs68-cols-tablet));
  }
}

@media (max-width: 767px) {
  body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell {
    --hvfs68-gap: 10px;
    --hvfs68-arrow-width: 30px;
    --hvfs68-arrow-height: 30px;
    --hvfs68-arrow-gutter: 34px;
    --hvfs68-outside-space: 52px;
  }

  body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell.hvfs68-has-frame-color {
    --hvfs68-frame-pad: 10px;
    padding: var(--hvfs68-frame-pad);
    border-radius: 14px;
  }

  body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell.hvfs68-arrows-outside.hvfs68-is-slider.hvfs68-has-overflow {
    width: calc(100% - 104px);
  }

  body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-arrows-outside .hvfs68-arrow-prev {
    left: calc(0px - var(--hvfs68-frame-pad) - var(--hvfs68-arrow-width) - 8px);
  }

  body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-arrows-outside .hvfs68-arrow-next {
    right: calc(0px - var(--hvfs68-frame-pad) - var(--hvfs68-arrow-width) - 8px);
  }

  body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-header {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    padding: 13px;
  }

  body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-timer-wrap {
    width: 100%;
    flex-wrap: wrap;
  }

  body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-timer-label {
    margin-right: auto;
  }

  body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-more {
    margin-left: auto;
  }

  body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-products {
    grid-template-columns: repeat(var(--hvfs68-cols-mobile), minmax(0, 1fr));
  }

  body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-is-slider .hvfs68-products {
    grid-template-columns: none;
    grid-auto-columns: calc((100% - (var(--hvfs68-cols-mobile) - 1) * var(--hvfs68-gap)) / var(--hvfs68-cols-mobile));
  }

  body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-product-body {
    padding: 10px;
  }

  body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-product-title {
    font-size: .9em !important;
  }
}

@media (max-width: 420px) {
  body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-countdown > span {
    min-width: 29px;
    height: 30px;
    font-size: .88em;
  }

  body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-timer-wrap {
    gap: 6px;
  }

  body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-heading {
    font-size: 18px !important;
  }

  body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-product-action > .button {
    padding-right: 6px !important;
    padding-left: 6px !important;
  }
}


@supports not (background: color-mix(in srgb, #000 10%, #fff)) {
  body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] .hvfs68-stock-bar {
    background: #ececec;
  }
}

@media (prefers-reduced-motion: reduce) {
  body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] *,
  body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] *::before,
  body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"] *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* ========================================================================
 * v1.0.8 – Marketplace-style Flash Sale card.
 * Intentionally uses a higher-specificity root than Flatsome/WooCommerce.
 * ====================================================================== */
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-product-card {
  border: 1px solid rgba(15, 23, 42, .08) !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: inherit !important;
  box-shadow: 0 3px 12px rgba(15, 23, 42, .055) !important;
}

html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-product-image {
  aspect-ratio: 1 / 1 !important;
  border-radius: 0 !important;
  background: #fff !important;
}

html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-product-image > img,
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-product-image img.attachment-woocommerce_thumbnail,
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-product-image img.wp-post-image {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
}

html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-product-body {
  padding: 10px 12px 12px !important;
}

html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-product-title {
  min-height: 2.85em !important;
  margin: 0 0 5px !important;
  color: inherit !important;
  font-family: inherit !important;
  font-size: .96em !important;
  font-weight: 500 !important;
  line-height: 1.42 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-product-title > a {
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-product-rating {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  min-height: 18px !important;
  margin: 0 0 3px !important;
  color: #ff9d00 !important;
  font-family: inherit !important;
  font-size: .78em !important;
  line-height: 1 !important;
}

html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-rating-stars {
  position: relative !important;
  display: inline-block !important;
  overflow: hidden !important;
  width: 5.45em !important;
  height: 1.15em !important;
  white-space: nowrap !important;
  letter-spacing: .08em !important;
}

html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-rating-stars-base,
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-rating-stars-fill {
  position: absolute !important;
  inset: 0 auto auto 0 !important;
  display: block !important;
  height: 100% !important;
  overflow: hidden !important;
  color: #d8d8d8 !important;
  font-family: Arial, sans-serif !important;
  font-size: 1em !important;
  font-weight: 400 !important;
  line-height: 1.05 !important;
  white-space: nowrap !important;
}

html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-rating-stars-fill {
  z-index: 1 !important;
  color: #ff9d00 !important;
}

html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-rating-count {
  color: #4b5563 !important;
  font-family: inherit !important;
  font-size: .95em !important;
  font-weight: 500 !important;
  line-height: 1 !important;
}

html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-price-meta {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 5px !important;
  min-height: 18px !important;
  margin: 0 0 1px !important;
  font-family: inherit !important;
  font-size: .78em !important;
  line-height: 1.15 !important;
}

html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-regular-price {
  color: #9a9a9a !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: 400 !important;
  text-decoration: line-through !important;
  text-decoration-thickness: 1px !important;
}

html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-regular-price .woocommerce-Price-amount,
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-regular-price .amount {
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
}

html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-discount-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 2px !important;
  min-height: 18px !important;
  padding: 1px 5px !important;
  border-radius: 3px !important;
  background: #ffe36c !important;
  color: #f0442c !important;
  font-family: inherit !important;
  font-size: .92em !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-discount-badge > svg {
  display: block !important;
  flex: 0 0 auto !important;
}

html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-product-price {
  margin: 0 0 7px !important;
  color: var(--hvfs68-bg) !important;
  font-family: inherit !important;
  font-size: 1.38em !important;
  font-weight: 500 !important;
  line-height: 1.1 !important;
}

html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-product-price .woocommerce-Price-amount,
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-product-price .amount,
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-product-price .woocommerce-Price-currencySymbol {
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
}

html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 10px !important;
  margin-top: auto !important;
  min-width: 0 !important;
}

html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-stock {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  margin: 0 !important;
}

html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-stock-bar {
  min-height: 18px !important;
  border-radius: 999px !important;
  background: color-mix(in srgb, var(--hvfs68-bg) 28%, #ffffff) !important;
}

html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-stock-fill {
  min-width: 7px !important;
  background: var(--hvfs68-bg) !important;
  opacity: 1 !important;
}

html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-sold-badge {
  max-width: calc(100% - 6px) !important;
  min-height: 16px !important;
  padding: 1px 5px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #fff !important;
  font-family: inherit !important;
  font-size: .67em !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .14) !important;
}

html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-stock > small {
  margin-top: 3px !important;
  color: #6b7280 !important;
  font-family: inherit !important;
  font-size: .68em !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  text-align: left !important;
  white-space: nowrap !important;
}

html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-product-action {
  flex: 0 0 auto !important;
  margin: 0 !important;
}

html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-product-action > .button,
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-product-action > a.button,
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-product-action > button.button {
  width: auto !important;
  min-width: 88px !important;
  min-height: 34px !important;
  padding: 8px 14px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--hvfs68-bg) !important;
  color: var(--hvfs68-text) !important;
  font-family: inherit !important;
  font-size: .78em !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  box-shadow: none !important;
}

html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-product-action > .button:hover,
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-product-action > .button:focus-visible {
  filter: brightness(.93) !important;
  background: var(--hvfs68-bg) !important;
  color: var(--hvfs68-text) !important;
}

@media (max-width: 767px) {
  html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-product-body {
    padding: 8px 9px 10px !important;
  }

  html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-product-title {
    min-height: 2.75em !important;
    font-size: .88em !important;
  }

  html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-product-price {
    font-size: 1.22em !important;
  }

  html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer {
    gap: 7px !important;
  }

  html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-product-action > .button {
    min-width: 78px !important;
    min-height: 32px !important;
    padding: 7px 10px !important;
    font-size: .73em !important;
  }

  html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-stock > small {
    max-width: 105px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}

@supports not (background: color-mix(in srgb, #000 10%, #fff)) {
  html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-stock-bar {
    background: #ffc7bd !important;
  }
}


/* v1.0.9 icon/image refresh */
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-header {
  min-height: 68px !important;
  padding: 14px 18px !important;
  gap: 18px !important;
}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-heading-wrap {
  gap: 12px !important;
}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-heading-image {
  display: block !important;
  width: auto !important;
  max-width: min(280px, 48vw) !important;
  height: 34px !important;
  object-fit: contain !important;
  object-position: left center !important;
}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-timer-wrap {
  gap: 9px !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-countdown {
  gap: 5px !important;
}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-countdown > span {
  min-width: 36px !important;
  height: 34px !important;
  padding: 0 7px !important;
  border-radius: 8px !important;
}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-product-body {
  gap: 2px !important;
}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer {
  align-items: center !important;
  gap: 12px !important;
}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-stock-bar {
  min-height: 22px !important;
}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-sold-badge {
  gap: 4px !important;
  align-items: center !important;
}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-flame-icon {
  display: block !important;
  width: 14px !important;
  height: 14px !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-product-action > .button,
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-product-action > a.button,
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-product-action > button.button {
  display: inline-grid !important;
  place-items: center !important;
  width: 42px !important;
  min-width: 42px !important;
  height: 42px !important;
  min-height: 42px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  font-size: 0 !important;
  line-height: 0 !important;
}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-product-action > .button.hvfs68-cart-only-button::before,
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-product-action > a.button.hvfs68-cart-only-button::before,
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-product-action > button.button.hvfs68-cart-only-button::before {
  content: none !important;
}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-cart-button-inner {
  display: inline-grid !important;
  place-items: center !important;
  width: 100% !important;
  height: 100% !important;
}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-cart-button-icon,
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-cart-button-icon > img {
  display: block !important;
}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-cart-button-icon > img {
  width: 22px !important;
  height: 22px !important;
  object-fit: contain !important;
}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .added_to_cart {
  display: none !important;
}
@media (max-width: 767px) {
  html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-header {
    padding: 12px 12px !important;
    gap: 12px !important;
  }
  html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-heading-image {
    max-width: min(190px, 44vw) !important;
    height: 28px !important;
  }
  html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-timer-label {
    font-size: .82em !important;
  }
  html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-product-action > .button,
  html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-product-action > a.button,
  html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-product-action > button.button {
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
  }
  html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-cart-button-icon > img {
    width: 20px !important;
    height: 20px !important;
  }
}

/* v1.0.10 card polish */
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-product-body{padding:9px 12px 11px!important}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-product-title{display:-webkit-box!important;min-height:2.72em!important;max-height:2.72em!important;margin:0 0 3px!important;overflow:hidden!important;line-height:1.36!important;-webkit-box-orient:vertical!important;-webkit-line-clamp:2!important}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-product-rating{margin:0 0 1px!important}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-price-meta{margin:0!important}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-product-price{margin:0 0 6px!important}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer{align-items:flex-end!important}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-stock{position:relative!important;padding-top:10px!important}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-stock-bar{min-height:19px!important;overflow:visible!important;border-radius:999px!important;background:#ffb7b3!important;box-shadow:inset 0 0 0 1px rgba(255,255,255,.35)!important}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-stock-fill{overflow:hidden!important;border-radius:999px!important;background:#ff3427!important}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-sold-badge{width:100%!important;min-height:19px!important;justify-content:center!important;padding:1px 6px!important;color:#fff!important}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-flame-icon{position:absolute!important;z-index:4!important;left:3px!important;top:-11px!important;width:25px!important;height:25px!important;object-fit:contain!important;filter:drop-shadow(0 2px 2px rgba(0,0,0,.12))!important}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-stock>small{display:block!important;width:100%!important;margin:4px 0 0!important;padding:0 2px!important;color:#737373!important;text-align:center!important;white-space:nowrap!important}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-product-action>.button,html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-product-action>a.button,html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-product-action>button.button{background:var(--hvfs68-cart-button,#ef101c)!important;border-color:var(--hvfs68-cart-button,#ef101c)!important}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-product-action>.button:hover,html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-product-action>.button:focus-visible{background:var(--hvfs68-cart-button,#ef101c)!important}
@media(max-width:767px){html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-product-body{padding:8px 9px 9px!important}html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-product-title{min-height:2.65em!important;max-height:2.65em!important;margin-bottom:2px!important}html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-flame-icon{width:23px!important;height:23px!important;top:-10px!important}html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-card-footer .hvfs68-stock>small{max-width:none!important;overflow:visible!important;text-overflow:clip!important}}


/* v1.0.12 Flash Sale header layout: logo + countdown + far-right CTA. */
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-header {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  align-items: center !important;
  column-gap: 18px !important;
  row-gap: 8px !important;
  min-height: 64px !important;
  padding: 10px 16px !important;
}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-heading-wrap {
  grid-column: 1 !important;
  grid-row: 1 !important;
  min-width: 0 !important;
  flex: 0 0 auto !important;
}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-heading-image {
  max-width: min(210px, 28vw) !important;
  height: 30px !important;
}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-timer-wrap {
  grid-column: 2 !important;
  grid-row: 1 !important;
  width: auto !important;
  min-width: 0 !important;
  justify-content: flex-start !important;
  flex-wrap: nowrap !important;
  gap: 9px !important;
}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-more {
  grid-column: 3 !important;
  grid-row: 1 !important;
  justify-self: end !important;
  margin: 0 !important;
  padding: 7px 2px 7px 10px !important;
  white-space: nowrap !important;
  font-weight: 600 !important;
}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-countdown > span {
  min-width: 30px !important;
  height: 30px !important;
  padding: 0 5px !important;
}
@media (max-width: 767px) {
  html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-header {
    grid-template-columns: minmax(0,1fr) auto !important;
    grid-template-rows: auto auto !important;
    align-items: center !important;
    padding: 10px 11px !important;
    column-gap: 10px !important;
    row-gap: 9px !important;
  }
  html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-heading-wrap {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }
  html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-heading-image {
    width: auto !important;
    max-width: min(175px, 50vw) !important;
    height: 27px !important;
  }
  html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-more {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    padding: 6px 0 6px 8px !important;
    font-size: .82em !important;
  }
  html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-timer-wrap {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    justify-content: flex-end !important;
    gap: 7px !important;
    margin: 0 !important;
  }
  html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-timer-label {
    margin: 0 !important;
    white-space: nowrap !important;
  }
  html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-countdown > span {
    min-width: 28px !important;
    height: 28px !important;
    padding: 0 4px !important;
  }
}
@media (max-width: 420px) {
  html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-heading-image {
    max-width: 145px !important;
    height: 24px !important;
  }
  html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-timer-wrap {
    justify-content: space-between !important;
  }
  html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-countdown {
    gap: 3px !important;
  }
}


/* v1.0.13: compact slider navigation controls */
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-arrow {
  width: 32px !important;
  min-width: 32px !important;
  height: 32px !important;
  min-height: 32px !important;
  padding: 0 !important;
  border-radius: 999px !important;
}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-arrow > span {
  font-size: 20px !important;
  line-height: 1 !important;
}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell.hvfs68-arrows-outside.hvfs68-is-slider.hvfs68-has-overflow {
  width: calc(100% - 96px) !important;
}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell.hvfs68-arrows-outside .hvfs68-arrow-prev {
  left: calc(0px - var(--hvfs68-frame-pad) - 42px) !important;
}
html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell.hvfs68-arrows-outside .hvfs68-arrow-next {
  right: calc(0px - var(--hvfs68-frame-pad) - 42px) !important;
}
@media (max-width: 767px) {
  html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-arrow {
    width: 30px !important;
    min-width: 30px !important;
    height: 30px !important;
    min-height: 30px !important;
  }
  html body .hvfs68-plugin-root[data-hvfs68-component="flash-sale"].hvfs68-shell .hvfs68-arrow > span {
    font-size: 18px !important;
  }
}
