/* ===== CONTAINER ===== */
.mppl-catalog-wrap {
  max-width: 1280px;
  margin: auto;
  padding: 20px;
}

/* ===== FILTER BAR ===== */
.mppl-toolbar {
  position: sticky;
  top: 90px;
  z-index: 10;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  margin-bottom: 25px;
}

.mppl-toolbar input,
.mppl-toolbar select {
  height: 45px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 14px;
}

/* ===== GRID ===== */
.mppl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

/* ===== CARD ===== */
.mppl-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.mppl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* ===== IMAGE ===== */
.mppl-img {
  height: 220px;
  background: #f4f2ee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mppl-img img {
  max-width: 90%;
  max-height: 180px;
  object-fit: contain;
}

/* ===== BODY ===== */
.mppl-body {
  padding: 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

/* ===== BRAND ===== */
.mppl-brand {
  font-size: 12px;
  color: #777;
  margin-bottom: 6px;
  display: block;
}

/* ===== TITLE ===== */
.mppl-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0d2b4d;
  line-height: 1.3;
  margin-bottom: 12px;
}

/* ===== BUTTON ===== */
.mppl-wa {
  margin-top: auto;
  background: linear-gradient(135deg, #2c81c5, #1f5d91);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.mppl-wa:hover {
  background: #1f5d91;
}

/* ===== LOAD MORE ===== */
#mpplLoadMore {
  margin-top: 30px;
  padding: 12px 20px;
  background: #111;
  color: #fff;
  border-radius: 30px;
  border: none;
  cursor: pointer;
}

/* ===== EMPTY STATE ===== */
.mppl-empty {
  text-align: center;
  padding: 40px;
  color: #777;
}

/* ===== STICKY WHATSAPP ===== */
.mppl-sticky-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25D366;
  color: white;
  padding: 14px 18px;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 999;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .mppl-toolbar {
    grid-template-columns: 1fr;
    top: 0;
  }

  .mppl-body h3 {
    font-size: 16px;
  }
}