.flashsale-strip {
  --flashsale-strip-bg: none;
  background-image: var(--flashsale-strip-bg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 10px;
  min-height: 120px;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.flashsale-strip__inner {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
}

.flashsale-strip__logo img {
  height: 140px;
  width: auto;
  display: block;
  margin-top: -26px;
}

.flashsale-strip__timer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  color: #000;
}

.flashsale-strip__schedule {
  font-family: "Almarai", sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.2;
}

.flashsale-strip__message {
  font-family: "Almarai", sans-serif;
  font-size: 15px;
  color: #000;
}

.flashsale-strip__timer {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 8px;
}

.flashsale-strip__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.flashsale-strip__label {
  font-family: "Almarai", sans-serif;
  font-size: 13px;
  color: #000;
}

.flashsale-strip__value {
  width: 56px;
  height: 48px;
  border-radius: 4px;
  background: #000;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flashsale-strip__separator {
  font-family: "Open Sans", sans-serif;
  font-size: 40px;
  color: #000;
  line-height: 1;
}

.flashsale-strip__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Almarai", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #EE3A54;
  text-decoration: none;
}

.flashsale-strip__cta:hover {
  opacity: 0.85;
}

.flashsale-strip__cta svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 1024px) {
  .flashsale-strip {
    min-height: 110px;
  }

  .flashsale-strip__inner {
    padding: 0 16px;
    gap: 16px;
  }

  .flashsale-strip__schedule {
    font-size: 28px;
  }

  .flashsale-strip__value {
    width: 48px;
    height: 42px;
    font-size: 26px;
  }

  .flashsale-strip__separator {
    font-size: 32px;
  }

  .flashsale-strip__logo img {
    height: 110px;
    margin-top: -16px;
  }
}

@media (max-width: 768px) {
  .flashsale-strip {
    min-height: 140px;
  }

  .flashsale-strip__inner {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .flashsale-strip__logo img {
    height: 90px;
    margin-top: -12px;
  }

  .flashsale-strip__schedule {
    font-size: 22px;
  }

  .flashsale-strip__message {
    font-size: 13px;
  }

  .flashsale-strip__value {
    width: 44px;
    height: 38px;
    font-size: 22px;
  }

  .flashsale-strip__separator {
    font-size: 28px;
  }

  .flashsale-strip__cta {
    font-size: 18px;
  }
}
