.ad-product-bulk-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 14px 0;
  padding: 14px 16px;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  background: linear-gradient(135deg, #eff6ff, #fff7ed);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}
.ad-product-bulk-summary,
.ad-product-bulk-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ad-product-bulk-summary i { color: #2563eb; font-size: 20px; }
.ad-product-bulk-summary strong { color: #0f172a; font-size: 15px; }
.ad-product-bulk-summary span { color: #64748b; font-size: 13px; }
.ad-product-bulk-actions .ad-btn { min-height: 40px; }
.ad-bulk-select-head,
.ad-bulk-select-cell {
  width: 52px;
  min-width: 52px;
  max-width: 52px;
  text-align: center !important;
  background: #fff;
}
.ad-sticky-bulk-left {
  position: sticky;
  left: 0;
  z-index: 8;
  box-shadow: 1px 0 0 #e5e7eb;
}
thead .ad-sticky-bulk-left { z-index: 12; }
.ad-products-grid .ad-sticky-left { left: 52px !important; }
.ad-bulk-checkbox-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0;
}
.ad-bulk-checkbox-label input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.ad-bulk-checkbox-label span {
  width: 20px;
  height: 20px;
  border: 2px solid #94a3b8;
  border-radius: 6px;
  background: #fff;
  display: grid;
  place-items: center;
  transition: .16s ease;
}
.ad-bulk-checkbox-label input:checked + span {
  border-color: #2563eb;
  background: #2563eb;
}
.ad-bulk-checkbox-label input:checked + span::after {
  content: "";
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}
.ad-bulk-checkbox-label input:indeterminate + span {
  border-color: #2563eb;
  background: #2563eb;
}
.ad-bulk-checkbox-label input:indeterminate + span::after {
  content: "";
  width: 9px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.ad-products-grid tbody tr.is-bulk-selected td {
  background-color: #eff6ff !important;
}
.ad-products-grid tbody tr.is-bulk-selected td.ad-sticky-right,
.ad-products-grid tbody tr.is-bulk-selected td.ad-sticky-left,
.ad-products-grid tbody tr.is-bulk-selected td.ad-bulk-select-cell {
  background-color: #dbeafe !important;
}
@media (max-width: 760px) {
  .ad-product-bulk-toolbar { align-items: stretch; flex-direction: column; }
  .ad-product-bulk-actions { width: 100%; }
  .ad-product-bulk-actions .ad-btn { flex: 1 1 auto; justify-content: center; }
}
