/* Static clone overrides: remove unsupported account/order UI after DOM extraction. */
[data-clone-hidden="true"] {
  display: none !important;
}

.clone-removed-gap {
  gap: 0 !important;
}

img,
video {
  max-width: 100%;
}

.bm-nav {
  margin-bottom: 10px;
}

.bm-products-wrapper {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.bm-product-card {
  width: auto !important;
  min-height: 220px;
  padding: 16px !important;
  text-align: left !important;
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.bm-product-card .bm-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #3688fc, #42d29d);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.4px;
}

.bm-product-card .flex {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bm-product-card .bm-name {
  min-height: auto !important;
  margin-bottom: 10px !important;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.bm-product-card .bm-meta,
.bm-product-card .bm-note {
  margin: 0 0 8px;
  color: #4b5563;
  font-size: 12px;
  line-height: 1.45;
}

.bm-product-card .bm-meta span {
  color: #2563eb;
  font-weight: 700;
}

.bm-product-card .bm-price {
  margin-top: auto;
  padding-top: 10px;
  color: #fa5c7c;
  font-size: 18px;
  text-align: left;
}

@media (max-width: 576px) {
  .bm-products-wrapper {
    grid-template-columns: 1fr;
  }

  .bm-product-card {
    min-height: 0;
  }
}
