/* =====================================================================
   Promo bar — match exact cu cel de pe inspiredesign.ro
   ===================================================================== */

.promo-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  background: #111;
  color: #fff;
  position: relative;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 200;
  z-index: 61;
}
.promo-bar * {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.promo-bar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.promo-bar-countdown {
  display: flex;
  align-items: center;
  gap: 2px;
}
.promo-bar-time-unit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 26px;
}
.promo-bar-time-num {
  color: #fff;
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  line-height: 1;
  font-weight: 500 !important;
}
.promo-bar-time-label {
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-top: 1px;
  font-size: 8px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
.promo-bar-time-sep {
  color: rgba(255, 255, 255, 0.4);
  align-self: flex-start;
  margin: 0 1px;
  font-size: 13px;
  line-height: 1;
  font-weight: 400;
}

.promo-bar-text {
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
  font-size: 12px;
  font-weight: 400;
}
.promo-bar-text strong {
  color: #fff;
  font-weight: 500 !important;
}

.promo-bar-cta {
  background: #fff;
  color: #111 !important;
  border: 0;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 500 !important;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity .15s;
}
.promo-bar-cta:hover { opacity: 0.85; }

.promo-bar-apply {
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  text-decoration: underline;
  white-space: nowrap;
  letter-spacing: 0.03em;
  transition: opacity .15s;
}
.promo-bar-apply:hover { opacity: 0.8; }

.promo-bar-close {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color .15s;
}
.promo-bar-close:hover { color: #fff; }

/* Hide old id-promo-bar (vechiul stil) ca să nu apară 2 bare */
.id-promo-bar { display: none !important; }

@media (max-width: 768px) {
  .promo-bar-countdown { display: none; }
  .promo-bar-text {
    font-size: 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    min-width: 0;
  }
  .promo-bar-inner { gap: 8px; }
  .promo-bar-close { right: 8px; padding: 2px; }
  .promo-bar-close svg { width: 12px; height: 12px; }
}
@media (max-width: 380px) {
  .promo-bar-text { font-size: 9px; }
  .promo-bar-cta { font-size: 10px; padding: 4px 10px; }
  .promo-bar-apply { display: none; }
}
