/*
Generated time: March 25, 2026 07:20
This file was created by the app developer. Feel free to contact the original developer with any questions. It was minified (compressed) by AVADA. AVADA do NOT own this script.
*/

.mb-collection-banner {
  background: linear-gradient(180deg, var(--bg-color) 0, rgba(255, 255, 255, 0) 100%);
  padding-top: var(--spacing-top);
  padding-bottom: var(--spacing-bottom);
}

.mb-collection-banner.for-new-products {
  padding: 25px 0 0 0;
}

.collection-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.collection-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.collection-info h1 {
  margin: 0;
  line-height: 100%;
  font-size: 24px;
}

.collection-info p {
  margin: 0;
  line-height: 100%;
}

.collection-banner.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
}

.mb-promo-timer {
  width: 100%;
  max-width: 590px;
  min-width: 440px;
  position: relative;
  overflow: hidden;
  margin-top: 14px;
  padding: 15px 18px 15px;
  border-radius: 24px;
  color: #d71920;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #fff9f9 0%, #fff2f2 100%);
  border: 1px solid rgba(215, 25, 32, 0.14);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.035),
    0 10px 28px rgba(215, 25, 32, 0.075),
    inset 0 1px rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
}

.mb-promo-timer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(215, 25, 32, 0),
    rgba(215, 25, 32, 0.62),
    rgba(215, 25, 32, 0)
  );
}

.mb-promo-timer::after {
  content: "";
  position: absolute;
  top: -42%;
  left: -18%;
  width: 38%;
  height: 190%;
  transform: rotate(18deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.42),
    rgba(255, 255, 255, 0)
  );
  opacity: 0.5;
  pointer-events: none;
  animation: mbPromoTimerSheen 7s ease-in-out infinite;
}

.mb-promo-timer__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 12px;
}

.mb-promo-timer__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.018em;
  line-height: 1.2;
  color: #d71920;
  text-align: center;
}

.mb-promo-timer__label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #d71920;
  box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.09);
}

.mb-promo-timer__time {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}

.mb-promo-timer__unit {
  flex: 1;
  min-width: 0;
  padding: 8px 10px;
  border-radius: 15px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.52));
  border: 1px solid rgba(215, 25, 32, 0.085);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.82),
    0 1px 2px rgba(215, 25, 32, 0.025);
  text-align: center;
}

.mb-promo-timer__unit span {
  display: block;
  font-size: 20px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.045em;
  color: #d71920;
  font-variant-numeric: tabular-nums;
}

.mb-promo-timer__unit small {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  color: rgba(215, 25, 32, 0.58);
}

.mb-promo-timer__separator {
  flex: 0 0 auto;
  margin-top: -13px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(215, 25, 32, 0.32);
}

@keyframes mbPromoTimerSheen {
  0% {
    transform: translateX(-20%) rotate(18deg);
    opacity: 0;
  }

  18% {
    opacity: 0.45;
  }

  42% {
    transform: translateX(360%) rotate(18deg);
    opacity: 0;
  }

  100% {
    transform: translateX(360%) rotate(18deg);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mb-promo-timer::after {
    animation: none;
    display: none;
  }
}

@media (max-width: 989px) {
  .mb-collection-banner {
    padding: var(--l) !important;
    margin: 0;
  }

  .collection-banner {
    flex-direction: column;
    align-items: baseline;
    gap: 15px;
  }

  .mb-collection-banner.for-new-products {
    align-items: start;
  }

  .collection-info h1 {
    font-size: 22px;
    margin-top: 10px;
    line-height: 120%;
  }

  .collection-info {
    gap: 12px;
  }

  .collection-info p {
    font-size: 12px;
    line-height: 120%;
  }

  .mb-promo-timer {
    width: 100%;
    max-width: none;
    min-width: 0;
    margin: 8px 0 8px 0;
    padding: 12px 11px 13px;
    border-radius: 18px;
  }

  .mb-promo-timer::before {
    left: 16px;
    right: 16px;
  }

  .mb-promo-timer__header {
    justify-content: center;
    margin-bottom: 10px;
  }

  .mb-promo-timer__label {
    font-size: 15px;
    gap: 7px;
  }

  .mb-promo-timer__label::before {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.09);
  }

  .mb-promo-timer__time {
    width: 100%;
    gap: 4px;
  }

  .mb-promo-timer__unit {
    flex: 1;
    min-width: 0;
    padding: 7px 4px;
    border-radius: 12px;
  }

  .mb-promo-timer__unit span {
    font-size: 17px;
  }

  .mb-promo-timer__unit small {
    font-size: 8.5px;
  }

  .mb-promo-timer__separator {
    font-size: 13px;
    margin-top: -12px;
  }
}