/* Admin-added products on shop grid */
.dp-dynamic-shop-card {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  text-decoration: none !important;
  background: #fafafa !important;
  border: 1px solid #ececf0 !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 1px 3px rgba(41, 46, 76, 0.06) !important;
}

.dp-dynamic-shop-card .dp-shop-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 10px 14px;
  gap: 8px;
}

.dp-dynamic-shop-card .dp-shop-cas {
  margin: 0;
  font-size: 10px;
  color: rgba(41, 46, 76, 0.55);
  text-align: center;
}

.dp-dynamic-shop-card .dp-shop-name {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #292e4c;
  text-align: center;
  line-height: 1.25;
}

.dp-dynamic-shop-card .dp-shop-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  max-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
}

.dp-dynamic-shop-card .dp-shop-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dp-dynamic-shop-card .dp-shop-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: #017eff;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 743.98px) {
  .dp-dynamic-shop-card .dp-shop-name {
    font-size: 13px;
  }

  .dp-dynamic-shop-card .dp-shop-img-wrap {
    max-height: 110px;
  }

  .dp-dynamic-shop-card .dp-shop-cta {
    padding: 7px 14px;
    font-size: 11px;
  }
}
