.lobify-promos-menu-dot {
  width: .55em;
  height: .55em;
  min-width: .55em;
  border-radius: 999px;
  display: inline-block;
  margin-left: .42em;
  vertical-align: .12em;
  background: var(--lp-dot-empty, #e3a0a0);
  box-shadow: 0 0 0 2px rgba(255,255,255,.5);
}
.lobify-promos-menu-dot.is-active {
  background: var(--lp-dot-active, #9bcfa6);
  animation: lobify-promos-pulse 1.9s ease-out infinite;
}
@keyframes lobify-promos-pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--lp-dot-active, #9bcfa6) 55%, transparent); }
  70% { box-shadow: 0 0 0 .45em transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
@media (prefers-reduced-motion: reduce) {
  .lobify-promos-menu-dot.is-active { animation: none; }
}
body.lobify-promos-open { overflow: hidden !important; }
.lobify-promos-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483638;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  background: var(--lp-overlay, rgba(23,34,30,.82));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}
.lobify-promos-overlay.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.lobify-promos-overlay, .lobify-promos-overlay * { box-sizing: border-box; }
.lobify-promos-dialog {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--lp-modal-bg, #f7f8f5);
  color: var(--lp-text-color, #4e5c61);
}
.lobify-promos-header {
  flex: 0 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: max(16px, env(safe-area-inset-top)) clamp(20px,4vw,58px) 16px;
  border-bottom: 1px solid rgba(20,40,34,.1);
  background: color-mix(in srgb, var(--lp-modal-bg, #f7f8f5) 92%, transparent);
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 3;
}
.lobify-promos-header h2 {
  margin: 0 !important;
  color: var(--lp-title-color, #2e7581) !important;
  font-size: clamp(24px,3vw,38px) !important;
  line-height: 1.1 !important;
}
.lobify-promos-overlay .lobify-promos-close {
  appearance: none !important;
  border: 0 !important;
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 0 4px !important;
  background: #b64234 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-family: Arial, sans-serif !important;
  font-size: 32px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  cursor: pointer;
  box-shadow: 0 5px 18px rgba(0,0,0,.18);
}
.lobify-promos-overlay .lobify-promos-close:hover,
.lobify-promos-overlay .lobify-promos-close:focus-visible {
  background: #b64234 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  filter: brightness(.94);
}
.lobify-promos-scroll { flex: 1 1 auto; min-height: 0; overflow-y: auto; overscroll-behavior: contain; }
.lobify-promos-content { width: min(var(--lp-max-width, 1180px), calc(100% - 40px)); margin: 0 auto; padding: clamp(28px,4vw,56px) 0 max(48px, env(safe-area-inset-bottom)); }
.lobify-promos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: clamp(22px,3vw,36px);
  align-items: start;
}
.lobify-promos-grid--single {
  grid-template-columns: minmax(0, 680px);
  justify-content: center;
}
.lobify-promo-card {
  min-width: 0;
  background: var(--lp-card-bg, #fff);
  border-radius: var(--lp-radius, 22px);
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(24,40,34,.08);
}
.lobify-promo-image {
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative !important;
  z-index: 0;
  overflow: hidden;
  border-radius: var(--lp-image-radius, 18px);
  background: transparent;
}
.lobify-promo-image img {
  display: block !important;
  position: static !important;
  inset: auto !important;
  transform: none !important;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: min(var(--lp-image-max-h-desktop, 52vh), 620px) !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: inherit !important;
}
.lobify-promo-body {
  position: relative !important;
  z-index: 1;
  padding: 24px 26px 26px;
  background: var(--lp-card-bg, #fff);
}
.lobify-promo-card h3 {
  color: var(--lp-item-title, var(--lp-title-color, #2e7581)) !important;
  position: static !important;
  transform: none !important;
  margin: 0 0 8px !important;
  font-size: clamp(22px,2.2vw,32px) !important;
  line-height: 1.16 !important;
}
.lobify-promo-description {
  color: var(--lp-item-text, var(--lp-text-color, #4e5c61)) !important;
  position: static !important;
  transform: none !important;
  margin: 0 0 22px;
  font-size: clamp(15px,1.35vw,18px);
  line-height: 1.62;
}
.lobify-promo-description > * { color: inherit !important; }
.lobify-promo-description > :last-child { margin-bottom: 0; }
.lobify-promo-cta {
  display: inline-flex;
  position: static !important;
  transform: none;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin: 4px 0 0;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--lp-cta-bg, #2e7581) !important;
  color: var(--lp-cta-text, #fff) !important;
  -webkit-text-fill-color: var(--lp-cta-text, #fff) !important;
  font-weight: 750;
  text-decoration: none !important;
  line-height: 1.2;
  transition: transform .18s ease, opacity .18s ease;
}
.lobify-promo-cta:hover { color: var(--lp-cta-text, #fff) !important; transform: translateY(-1px); opacity: .92; }
.lobify-promos-empty { min-height: min(62vh,620px); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 48px 20px; max-width: 720px; margin: 0 auto; }
.lobify-promos-empty__mark { width: 74px; height: 74px; display: grid; place-items: center; border-radius: 999px; background: color-mix(in srgb, var(--lp-title-color,#2e7581) 10%, transparent); color: var(--lp-title-color,#2e7581); font-size: 32px; }
.lobify-promos-empty h3 { color: var(--lp-title-color,#2e7581) !important; margin: 22px 0 8px !important; font-size: clamp(24px,3vw,36px) !important; }
.lobify-promos-empty p { color: var(--lp-text-color,#4e5c61) !important; margin: 0 0 18px; font-size: clamp(16px,1.5vw,19px); }
.lobify-promos-inline-trigger { cursor: pointer; }
@media (max-width: 760px) {
  .lobify-promos-header { min-height: 66px; padding-left: 18px; padding-right: 18px; }
  .lobify-promos-content { width: calc(100% - 28px); padding-top: 22px; }
  .lobify-promos-grid,
  .lobify-promos-grid--single { grid-template-columns: 1fr; gap: 20px; }
  .lobify-promo-body { padding: 20px; }
  .lobify-promo-card h3 { margin: 0 0 7px !important; }
  .lobify-promo-image img { max-height: min(var(--lp-image-max-h-mobile, 42vh), 440px) !important; }
}

/* v1.1.2 · status dot inside Lobify Theme's custom mobile-menu label. */
.lobify-mobile-menu__menu-label .lobify-promos-menu-dot {
  margin-left: .5em;
  vertical-align: .08em;
}
