/* Storefront bridge for the live Page Builder preview. The builder does not
   alter theme spacing, colours or visibility; it only manages content and
   module order. */
.pb-module { position: relative; }

body.pb-preview [data-pb-element] {
  position: relative;
  outline: 1px solid transparent;
  outline-offset: -1px;
  transition: outline-color .15s ease, box-shadow .15s ease;
  cursor: pointer;
}

body.pb-preview [data-pb-element]:hover {
  outline: 2px solid #2563eb;
  outline-offset: -2px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.8);
}

body.pb-preview [data-pb-element].pb-selected {
  outline: 3px solid #2563eb !important;
  outline-offset: -3px !important;
  box-shadow: 0 0 0 4px rgba(37,99,235,.16) !important;
}

/* Disabled modules stay selectable inside the private preview only. The
   storefront model omits them completely for normal visitors. */
body.pb-preview .pb-module-disabled {
  display: block !important;
  min-height: 56px;
  opacity: .42;
  filter: grayscale(.7);
}

body.pb-preview .pb-module-disabled::before {
  content: "الموديول معطّل";
  position: absolute;
  z-index: 20;
  inset-inline-start: 10px;
  top: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font: 700 11px/1.4 system-ui, sans-serif;
  pointer-events: none;
}
