.bsn-notice-bar {
  --bsn-color-1: #F02369;
  --bsn-color-2: #FF7AA8;
  --bsn-text-color: #fff;
  width: 100%;
  direction: rtl;
  position: relative;
  z-index: 10;
  background: linear-gradient(135deg, var(--bsn-color-1) 0%, var(--bsn-color-2) 100%);
  color: var(--bsn-text-color);
  overflow: hidden;
  font-family: inherit;
  box-shadow: 0 8px 22px rgba(240, 35, 105, .16);
}

.bsn-notice-bar::before,
.bsn-notice-bar::after {
  content: "";
  position: absolute;
  inset-block: 0;
  width: 140px;
  pointer-events: none;
  opacity: .22;
  background: radial-gradient(circle at center, rgba(255,255,255,.58) 0 2px, transparent 3px);
  background-size: 20px 20px;
}

.bsn-notice-bar::before { right: 0; }
.bsn-notice-bar::after { left: 0; }

.bsn-inner {
  position: relative;
  z-index: 2;
  min-height: 38px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--bsn-text-color) !important;
  text-decoration: none !important;
  text-align: center;
  line-height: 1.7;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.15px;
}

.bsn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  color: var(--bsn-text-color);
  font-size: 13px;
  line-height: 1;
}

.bsn-message {
  display: inline-block;
  will-change: transform, opacity;
  transition: opacity .25s ease, transform .25s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(86vw, 920px);
}

.bsn-message.is-out {
  opacity: 0;
  transform: translateY(8px);
}

.bsn-message.is-in {
  opacity: 1;
  transform: translateY(0);
}

.bsn-spark {
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  box-shadow: 18px 0 0 rgba(255,255,255,.42), -18px 0 0 rgba(255,255,255,.42);
}

.bsn-hide-mobile { display: block; }
.bsn-hide-desktop { display: none; }

@media (max-width: 1024px) {
  .bsn-hide-desktop { display: block; }
  .bsn-hide-mobile { display: none !important; }

  .bsn-inner {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 12.5px;
    font-weight: 800;
    gap: 7px;
  }

  .bsn-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    font-size: 12px;
  }

  .bsn-message {
    max-width: 76vw;
  }

  .bsn-spark {
    display: none;
  }
}

@media (min-width: 1025px) {
  .bsn-hide-desktop { display: none !important; }
  .bsn-hide-mobile { display: block; }
}


/* Keep Woodmart mobile menu/off-canvas above the notice bar */
body .wd-side-hidden,
body .wd-close-side,
body .mobile-nav,
body .wd-nav-mobile {
  z-index: 9999;
}

body.wd-side-opened .bsn-notice-bar,
body.mobile-nav-opened .bsn-notice-bar,
body .wd-side-hidden.wd-opened ~ .bsn-notice-bar {
  z-index: 1 !important;
}
