.ml-wrap {
  width: 100%;
  padding: 16px 0 8px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  box-sizing: border-box;
}

.ml-wrap__title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 14px;
  color: #333;
}

.ml-swiper {
  width: 100%;
  overflow: hidden;
}

/* Card é uma tag <a> — reset de link */
.ml-card {
  text-decoration: none !important;
  color: inherit;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .1);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}

.ml-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
}

.ml-card__img {
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 170px;
  padding: 10px;
  flex-shrink: 0;
}

.ml-card__img img {
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.ml-card__body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.ml-card__title {
  font-size: .85rem;
  font-weight: 700;
  color: #222;
  line-height: 1.45;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ml-card__price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #333;
  margin: 0;
  text-align: center;
}

.ml-card__price span {
  font-size: .75rem;
  font-weight: 400;
  color: #888;
  vertical-align: middle;
  margin-right: 2px;
}

.ml-card__btn {
  display: block;
  background: var(--ml-btn-bg, #009ee3);
  color: var(--ml-btn-color, #fff) !important;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  font-size: .88rem;
  font-weight: 700;
  margin-top: auto;
  transition: filter .2s;
  border: none;
}

.ml-card:hover .ml-card__btn {
  filter: brightness(0.9);
}
