.lbc-strip {
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  background: var(--lbc-bg);
  color: var(--lbc-text);
  font-family: inherit;
  font-size: 14px;
  line-height: 1.25;
}

/*
 * Keep every theme navigation dropdown above the promotional strip.
 * The strip is injected immediately after the menu, so its stacking level
 * must stay low while the navigation wrapper owns the foreground layer.
 */
#header .pdmenu-wrap,
#header #_desktop_top_menu,
#header .top-menu {
  position: relative;
  z-index: 1100;
}

.lbc-strip[hidden],
.lbc-strip [hidden] {
  display: none !important;
}

.lbc-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 8px 18px;
  box-sizing: border-box;
  text-align: center;
}

.lbc-strip-head {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
}

.lbc-strip-title {
  flex: 0 0 auto;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}

.lbc-strip-offers {
  display: grid;
  justify-items: center;
  gap: 2px;
  width: 100%;
}

.lbc-strip-offer {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  max-width: 100%;
  text-align: center;
}

.lbc-strip-offer > span,
.lbc-strip-text {
  opacity: .9;
}

.lbc-strip-countdown {
  display: flex;
  align-items: baseline;
  flex: 0 0 auto;
  gap: 5px;
  color: var(--lbc-count);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.lbc-strip-countdown-label {
  color: var(--lbc-text);
  font-size: 12px;
  font-weight: 400;
}

.lbc-strip-countdown .lbc-time-unit:not(:last-child)::after {
  margin-left: 2px;
}

.lbc-strip-expired {
  padding: 9px 18px;
  text-align: center;
}

@media (max-width: 767px) {
  .lbc-strip {
    font-size: 11px;
  }

  .lbc-strip-inner {
    gap: 3px;
    padding: 7px 8px;
  }

  .lbc-strip-head {
    flex-wrap: wrap;
    gap: 3px 8px;
  }

  .lbc-strip-title {
    font-size: 11px;
  }

  .lbc-strip-offers {
    gap: 2px;
  }

  .lbc-strip-offer {
    justify-content: center;
    flex-wrap: wrap;
    gap: 3px;
    font-size: 10px;
    line-height: 1.2;
  }

  .lbc-strip-countdown {
    gap: 3px;
    font-size: 11px;
  }

  .lbc-strip-countdown-label {
    font-size: 10px;
  }
}
