/* promotion-hero component */

/* Enhanced flash-sale visual hierarchy */
.campaign-slider,
.flash-sale-panel {
  min-height: 360px;
}

.flash-sale-panel {
  border: 1px solid #f0cdd1;
  box-shadow: 0 14px 34px rgb(61 0 8 / 12%);
}

.flash-panel-heading {
  position: relative;
  min-height: 82px;
  overflow: hidden;
  gap: 10px;
  padding: 10px 13px;
  background: linear-gradient(115deg, #c90015 0%, #f0001b 55%, #b90014 100%);
}

.flash-panel-heading::after {
  position: absolute;
  top: -70%;
  left: -35%;
  width: 32%;
  height: 240%;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 20%), transparent);
  content: "";
  pointer-events: none;
  transform: rotate(20deg);
  animation: flash-header-shine 4.8s ease-in-out infinite;
}

.flash-bolt {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 42%);
  border-radius: 11px;
  background: rgb(255 255 255 / 13%);
  box-shadow: inset 0 0 15px rgb(255 255 255 / 10%);
}

.flash-bolt img {
  width: 27px;
  filter: brightness(0) invert(1);
}

.flash-title {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 112px;
  flex-direction: column;
}

.flash-live {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 3px;
  color: #fff4a8;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.flash-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff4a8;
  box-shadow: 0 0 0 4px rgb(255 244 168 / 17%);
  animation: flash-live-pulse 1.2s ease-in-out infinite;
}

.flash-title h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1;
  text-transform: uppercase;
}

.flash-title .flash-panel-subtitle {
  margin-top: 4px;
  color: rgb(255 255 255 / 78%);
  font-size: 9px;
}

.flash-countdown {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
}

.flash-countdown > span {
  display: flex;
  width: 38px;
  height: 48px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 34%);
  border-radius: 7px;
  background: rgb(72 0 8 / 28%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 16%);
}

.flash-countdown b {
  font-size: 16px;
  line-height: 1;
}

.flash-countdown small {
  margin-top: 4px;
  color: rgb(255 255 255 / 72%);
  font-size: 6px;
  text-transform: uppercase;
}

.flash-countdown > i {
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
}

.vintage-clock {
  padding: 5px 6px;
  border: 1px solid rgb(255 255 255 / 38%);
  border-radius: 10px;
  background: rgb(122 0 14 / 20%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 12%), 0 5px 14px rgb(70 0 8 / 18%);
  perspective: 500px;
}

.flash-countdown.vintage-clock > .clock-unit {
  position: relative;
  width: 40px;
  height: 42px;
  overflow: hidden;
  border: 1px solid #f0dadd;
  border-radius: 6px;
  background: linear-gradient(#fff 0 49%, #f9f9f9 50% 100%);
  box-shadow: inset 0 -7px 12px rgb(120 0 14 / 3%), 0 2px 6px rgb(72 0 9 / 17%);
}

.flash-countdown.vintage-clock > .clock-unit::before {
  display: none;
}

.flash-countdown.vintage-clock > .clock-unit::after {
  display: none;
}

.vintage-clock .clock-unit b {
  color: var(--brand-red);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 21px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
  line-height: 1;
  text-shadow: 0 1px 0 #fff;
  transform-origin: center bottom;
}

.vintage-clock .clock-unit small {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 3px;
  left: 0;
  margin: 0;
  color: #9b777c;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 5px;
  letter-spacing: .7px;
}

.vintage-clock > i {
  color: #fff;
  text-shadow: none;
  animation: vintage-separator 1s steps(1, end) infinite;
}

.vintage-clock .clock-unit.is-flipping b {
  animation: vintage-flip .5s cubic-bezier(.35, .08, .32, 1.25);
}

@keyframes vintage-flip {
  0% { opacity: .3; transform: rotateX(-90deg) translateY(-3px); }
  55% { opacity: 1; transform: rotateX(12deg) translateY(0); }
  100% { transform: rotateX(0); }
}

@keyframes vintage-separator {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: .35; }
}

.flash-product-render {
  background: radial-gradient(circle at 14% 50%, #fff 0, #fff 35%, #fff8f8 100%);
}

.flash-product-card::before {
  position: absolute;
  z-index: -1;
  right: -45px;
  bottom: -65px;
  width: 170px;
  height: 170px;
  border: 25px solid rgb(237 0 23 / 4%);
  border-radius: 50%;
  content: "";
}

.flash-product-badge {
  border: 3px solid #fff;
  box-shadow: 0 5px 15px rgb(237 0 23 / 28%);
}

.flash-product-controls {
  min-height: 40px;
  justify-content: flex-start;
  gap: 7px;
  padding: 5px 12px 8px;
  border-top: 1px solid #f4e2e4;
  background: linear-gradient(90deg, #fff7f8, #fff);
}

.flash-product-controls > span,
.flash-product-controls > a {
  color: #9a6b70;
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
}

.flash-product-controls > a {
  margin-left: auto;
  color: var(--brand-red);
}

.flash-product-controls > button {
  width: 24px;
  height: 24px;
  background: var(--brand-red);
}

.flash-product-dots button {
  background: #e4c8cb;
}

@keyframes flash-header-shine {
  0%, 62%, 100% { transform: translateX(-30px) rotate(20deg); }
  82% { transform: translateX(520px) rotate(20deg); }
}

@keyframes flash-live-pulse {
  0%, 100% { opacity: .65; transform: scale(.85); }
  50% { opacity: 1; transform: scale(1.15); }
}

@media (prefers-reduced-motion: reduce) {
  .flash-panel-heading::after,
  .flash-live i,
  .vintage-clock > i,
  .vintage-clock .clock-unit.is-flipping b {
    animation: none;
  }
}

.home-promotion-hero {
  display: grid;
  margin-top: 18px;
  grid-template-columns: minmax(0, 2.05fr) minmax(310px, 1fr);
  gap: 16px;
}

.campaign-hero-card,
.flash-sale-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border-radius: 13px;
}

.campaign-background,
.flash-background {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  inset: 0;
}

.campaign-hero-card::after {
  position: absolute;
  background: linear-gradient(90deg, rgb(0 0 0 / 36%), transparent 56%);
  content: "";
  inset: 0;
  pointer-events: none;
}

.campaign-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: 48%;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 0 34px 42px;
  color: #fff;
}

.campaign-hero-content > span {
  color: #ddd;
  font-size: 13px;
}

.campaign-hero-content h2 {
  margin: 8px 0 6px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: .98;
}

.campaign-hero-content h2 b {
  color: #f5bd50;
}

.campaign-hero-content p {
  max-width: 330px;
  margin: 5px 0 16px;
  color: #ddd;
  font-size: 12px;
}

.campaign-hero-content > a,
.flash-buy-button {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 20px;
  border-radius: 7px;
  background: var(--brand-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.campaign-hero-content > a img,
.flash-buy-button img {
  width: 16px;
  filter: brightness(0) invert(1);
}

.campaign-discount {
  position: absolute;
  z-index: 3;
  top: 25px;
  left: 46%;
  display: flex;
  width: 90px;
  height: 90px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid #d9a941;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe5a4, #e8b84f);
  box-shadow: 0 5px 15px rgb(0 0 0 / 25%);
  color: #251d11;
  font-size: 10px;
  transform: rotate(-5deg);
}

.campaign-discount strong {
  font-size: 23px;
}

.campaign-slider-dots {
  position: absolute;
  z-index: 4;
  bottom: 15px;
  left: 50%;
  display: flex;
  gap: 5px;
  transform: translateX(-50%);
}

.campaign-slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid var(--brand-red);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.campaign-slider-dots button.active {
  width: 22px;
  border-radius: 8px;
  background: var(--brand-red);
}

.flash-sale-card {
  border: 4px solid var(--brand-red);
  background: #fff;
}

.flash-background {
  z-index: 0;
}

.flash-sale-heading {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-transform: uppercase;
}

.flash-sale-heading > img {
  width: 36px;
  filter: brightness(0) invert(1);
}

.flash-sale-heading h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1;
}

.flash-sale-heading span {
  font-size: 11px;
  font-weight: 600;
}

.flash-product-info {
  position: absolute;
  z-index: 2;
  top: 100px;
  right: 72px;
  display: flex;
  width: 40%;
  flex-direction: column;
  align-items: flex-start;
}

.flash-product-info strong {
  font-size: 13px;
}

.flash-product-info > span,
.flash-product-info del {
  margin-top: 3px;
  color: #666;
  font-size: 11px;
}

.flash-product-info del {
  margin-top: 12px;
}

.flash-product-info > b {
  margin-top: 3px;
  color: var(--brand-red);
  font-size: 24px;
}

.flash-discount {
  position: absolute;
  z-index: 3;
  top: 95px;
  right: 12px;
  display: flex;
  width: 62px;
  height: 62px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-red);
  color: #fff;
  font-size: 9px;
  text-transform: uppercase;
}

.flash-discount b {
  font-size: 20px;
}

.flash-buy-button {
  position: absolute;
  z-index: 3;
  right: 10px;
  bottom: 9px;
  left: 10px;
  min-height: 36px;
  border-radius: 6px;
  font-size: 15px;
}

/* Data-driven campaign slider and flash-sale renderer */
.campaign-slider,
.flash-sale-panel {
  position: relative;
  min-height: 338px;
  overflow: hidden;
  border-radius: 13px;
}

.campaign-slider {
  background: #111;
}

.campaign-slides,
.campaign-slide {
  position: absolute;
  inset: 0;
}

.campaign-slide {
  visibility: hidden;
  opacity: 0;
  transform: translateX(3%);
  transition: opacity .55s ease, transform .55s ease, visibility .55s;
}

.campaign-slide.is-active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.campaign-slide::after {
  position: absolute;
  background: linear-gradient(90deg, rgb(0 0 0 / 45%), transparent 60%);
  content: "";
  inset: 0;
}

.campaign-slide[data-theme="warm"]::after {
  background: linear-gradient(90deg, rgb(57 25 7 / 46%), transparent 60%);
}

.campaign-slide[data-theme="sage"]::after {
  background: linear-gradient(90deg, rgb(20 27 15 / 40%), transparent 60%);
}

.campaign-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-slide-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 42px;
  width: 44%;
  color: #fff;
  transform: translateY(-50%);
}

.campaign-slide-content > span {
  color: rgb(255 255 255 / 78%);
  font-size: 13px;
}

.campaign-slide-content h2 {
  margin: 8px 0;
  font-size: clamp(31px, 3vw, 46px);
  line-height: .98;
}

.campaign-slide-content h2 b {
  color: #f5bd50;
}

.campaign-slide[data-theme="warm"] .campaign-slide-content h2 b {
  color: #ffd29f;
}

.campaign-slide[data-theme="sage"] .campaign-slide-content h2 b {
  color: #dce9bc;
}

.campaign-slide-content p {
  max-width: 330px;
  margin: 0 0 16px;
  color: rgb(255 255 255 / 80%);
  font-size: 12px;
}

.campaign-slide-content a {
  display: inline-flex;
  min-height: 37px;
  align-items: center;
  gap: 5px;
  padding: 0 18px;
  border-radius: 7px;
  background: var(--brand-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.campaign-slide-content a img,
.campaign-arrow img,
.flash-product-controls img {
  width: 16px;
  filter: brightness(0) invert(1);
}

.campaign-slide .campaign-discount.blue {
  border-color: #65b9ff;
  background: linear-gradient(145deg, #cfeaff, #4aa6f4);
}

.campaign-slide .campaign-discount.warm {
  border-color: #c58c50;
  background: linear-gradient(145deg, #ffe2bd, #d89a59);
}

.campaign-slide .campaign-discount.sage {
  border-color: #94a66c;
  background: linear-gradient(145deg, #e9f2d1, #a9bd78);
}

.campaign-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 34px;
  height: 34px;
  visibility: hidden;
  place-items: center;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 35%);
  border-radius: 50%;
  background: rgb(0 0 0 / 35%);
  opacity: 0;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity .18s ease, visibility .18s;
}

.campaign-prev { left: 12px; }
.campaign-next { right: 12px; }

.campaign-prev img,
.flash-prev img {
  transform: rotate(180deg);
}

.campaign-slider:hover .campaign-arrow,
.campaign-slider:focus-within .campaign-arrow {
  visibility: visible;
  opacity: 1;
}

.flash-sale-panel {
  display: flex;
  flex-direction: column;
  border: 1px solid #ececec;
  background: #fff;
  box-shadow: 0 8px 24px rgb(0 0 0 / 7%);
}

.flash-panel-heading {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background: linear-gradient(110deg, #f00018, #d50016);
  color: #fff;
}

.flash-panel-heading > img {
  width: 32px;
  filter: brightness(0) invert(1);
}

.flash-panel-heading h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.flash-panel-heading div span {
  font-size: 10px;
}

.flash-timer {
  margin-left: auto;
  padding: 6px 8px;
  border: 1px solid rgb(255 255 255 / 35%);
  border-radius: 5px;
  background: rgb(0 0 0 / 12%);
  font-size: 11px;
  font-weight: 700;
}

.flash-timer.is-hidden {
  visibility: hidden;
}

.flash-product-render {
  min-height: 240px;
  flex: 1;
}

.flash-product-card {
  position: relative;
  display: grid;
  height: 100%;
  min-height: 240px;
  grid-template-columns: 43% 57%;
  align-items: center;
  padding: 10px 14px 8px;
  animation: flash-card-in .35s ease both;
}

.flash-product-image {
  width: 100%;
  height: 205px;
  object-fit: contain;
}

.flash-product-data {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 5px 0 12px;
}

.flash-product-data strong {
  font-size: 14px;
}

.flash-product-data > span {
  margin-top: 3px;
  color: #666;
  font-size: 11px;
}

.flash-product-data del {
  margin-top: 13px;
  color: #888;
  font-size: 11px;
}

.flash-product-data > b {
  margin-top: 2px;
  color: var(--brand-red);
  font-size: 23px;
}

.flash-product-data a {
  display: flex;
  width: 100%;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-top: 9px;
  border-radius: 6px;
  background: var(--brand-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.flash-saving {
  margin-top: 4px;
  color: #16964b;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}

.flash-type-highlight {
  background: radial-gradient(circle at 88% 20%, #ffe5e8, transparent 38%), #fff;
}

.flash-type-highlight .flash-product-badge {
  width: 58px;
  height: 58px;
  background: linear-gradient(145deg, #ff2940, #c90015);
  font-size: 16px;
  animation: highlight-discount 1.8s ease-in-out infinite;
}

.flash-type-highlight .flash-product-data > b {
  padding: 3px 7px;
  border-radius: 5px;
  background: #fff0f2;
}

.flash-bundle-images {
  display: grid;
  grid-template-columns: 1fr 25px 1fr;
  align-items: center;
}

.flash-bundle-images img {
  width: 100%;
  height: 135px;
  object-fit: contain;
}

.flash-bundle-images span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #222;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.flash-type-bundle {
  grid-template-columns: 52% 48%;
  background: linear-gradient(135deg, #fff, #fff9ed);
}

.flash-bundle-data {
  padding-left: 4px;
}

.flash-bundle-data > b {
  font-size: 20px;
}

.flash-type-stock {
  padding-bottom: 40px;
}

.flash-stock {
  position: absolute;
  right: 16px;
  bottom: 7px;
  left: 16px;
}

.flash-stock > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  color: #d60017;
  font-size: 9px;
}

.flash-stock i {
  display: block;
  height: 6px;
  overflow: hidden;
  border-radius: 5px;
  background: #eee;
}

.flash-stock i span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff7a00, var(--brand-red));
}

.flash-type-coupon {
  padding-bottom: 52px;
  background: linear-gradient(140deg, #fff 60%, #fff2e8);
}

.flash-type-coupon .flash-product-data a {
  display: none;
}

.flash-coupon {
  position: absolute;
  right: 14px;
  bottom: 9px;
  left: 14px;
  display: grid;
  min-height: 39px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px dashed var(--brand-red);
  border-radius: 6px;
  background: #fff5f6;
  color: #333;
  cursor: pointer;
}

.flash-coupon span,
.flash-coupon i {
  font-size: 9px;
  font-style: normal;
}

.flash-coupon b {
  color: var(--brand-red);
  font-size: 13px;
  letter-spacing: .7px;
}

.flash-coupon i {
  padding: 4px 6px;
  border-radius: 4px;
  background: var(--brand-red);
  color: #fff;
}

.flash-coupon.is-copied {
  border-style: solid;
  background: #edfff3;
}

@keyframes highlight-discount {
  0%, 100% { box-shadow: 0 4px 12px rgb(237 0 23 / 25%); transform: scale(1); }
  50% { box-shadow: 0 0 0 6px rgb(237 0 23 / 8%), 0 8px 18px rgb(237 0 23 / 22%); transform: scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .flash-type-highlight .flash-product-badge,
  .flash-product-card {
    animation: none;
  }
}

.flash-product-badge {
  position: absolute;
  top: 14px;
  right: 12px;
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 4px 12px rgb(237 0 23 / 25%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.flash-product-controls {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-bottom: 7px;
}

.flash-product-controls > button {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #222;
  cursor: pointer;
}

.flash-product-dots {
  display: flex;
  gap: 5px;
}

.flash-product-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ddd;
}

.flash-product-dots button.is-active {
  width: 18px;
  border-radius: 5px;
  background: var(--brand-red);
}

@keyframes flash-card-in {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Keep the enhanced flash layout above legacy promotion-card declarations. */
.home-promotion-hero .campaign-slider,
.home-promotion-hero .flash-sale-panel {
  min-height: 360px;
}

.home-promotion-hero .flash-sale-panel {
  border: 1px solid #f0cdd1;
  background: #fff;
  box-shadow: 0 14px 34px rgb(61 0 8 / 12%);
}

.home-promotion-hero .flash-panel-heading {
  min-height: 82px;
  gap: 10px;
  padding: 10px 13px;
  background: linear-gradient(115deg, #c90015 0%, #f0001b 55%, #b90014 100%);
}

.home-promotion-hero .flash-product-render {
  min-height: 240px;
  background: radial-gradient(circle at 14% 50%, #fff 0, #fff 35%, #fff8f8 100%);
}

.home-promotion-hero .flash-product-controls {
  min-height: 40px;
  justify-content: flex-start;
  gap: 7px;
  padding: 5px 12px 8px;
  border-top: 1px solid #f4e2e4;
  background: linear-gradient(90deg, #fff7f8, #fff);
}

.home-promotion-hero .flash-product-controls > button {
  width: 24px;
  height: 24px;
  background: var(--brand-red);
}

.home-promotion-hero .flash-product-badge {
  border: 3px solid #fff;
  box-shadow: 0 5px 15px rgb(237 0 23 / 28%);
}

@media (max-width: 575.98px) {
  .home-promotion-hero .flash-panel-heading {
    gap: 6px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .flash-bolt {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .flash-bolt img {
    width: 23px;
  }

  .flash-title {
    min-width: 88px;
  }

  .flash-title h2 {
    font-size: 13px;
  }

  .flash-title .flash-panel-subtitle {
    display: none;
  }

  .flash-countdown {
    gap: 2px;
  }

  .flash-countdown > span {
    width: 30px;
    height: 43px;
  }

  .home-promotion-hero .flash-countdown.vintage-clock > .clock-unit {
    width: 30px;
    height: 43px;
  }

  .vintage-clock .clock-unit b {
    font-size: 17px;
  }

  .flash-countdown b {
    font-size: 14px;
  }

  .home-promotion-hero .flash-product-controls > span {
    display: none;
  }
}

@media (max-width: 991.98px) {

  .home-promotion-hero {
    grid-template-columns: 1fr;
  }

  .flash-sale-card {
    min-height: 300px;
  }

  .campaign-slider,
  .flash-sale-panel {
    min-height: 300px;
  }

  .flash-product-info {
    right: 100px;
    width: 36%;
  }

  .flash-discount {
    right: 28px;
  }
}

@media (max-width: 575.98px) {

  .campaign-hero-card,
  .flash-sale-card {
    min-height: 300px;
  }

  .campaign-slider {
    min-height: 330px;
  }

  .campaign-slide > img {
    object-position: 58% center;
  }

  .campaign-slide-content {
    left: 22px;
    width: 68%;
  }

  .campaign-slide-content h2 {
    font-size: 29px;
  }

  .campaign-slide-content p {
    font-size: 11px;
  }

  .campaign-arrow {
    display: none;
  }

  .flash-panel-heading {
    padding-right: 10px;
    padding-left: 10px;
  }

  .flash-panel-heading h2 {
    font-size: 15px;
  }

  .flash-timer {
    padding: 5px;
    font-size: 10px;
  }

  .flash-product-card {
    grid-template-columns: 42% 58%;
    padding-right: 8px;
    padding-left: 8px;
  }

  .flash-product-image {
    height: 160px;
  }

  .flash-product-data {
    padding-left: 7px;
  }

  .flash-product-data > b {
    font-size: 20px;
  }

  .flash-product-badge {
    top: 9px;
    right: 7px;
    width: 42px;
    height: 42px;
    font-size: 11px;
  }

  .campaign-background {
    object-position: 58% center;
  }

  .campaign-hero-content {
    width: 72%;
    padding-left: 22px;
  }

  .campaign-hero-content h2 {
    font-size: 30px;
  }

  .campaign-discount {
    top: 18px;
    right: 15px;
    left: auto;
    width: 70px;
    height: 70px;
  }

  .campaign-discount strong {
    font-size: 18px;
  }

  .flash-background {
    object-position: 42% center;
  }

  .flash-sale-heading h2 {
    font-size: 17px;
  }

  .flash-product-info {
    top: 105px;
    right: 60px;
    width: 41%;
  }

  .flash-product-info > b {
    font-size: 20px;
  }

  .flash-discount {
    right: 7px;
    width: 52px;
    height: 52px;
  }

  .flash-discount b {
    font-size: 17px;
  }
}
