/* =========================================
   7. STICKERS MODELS
========================================= */



.card {
  border-radius: 14px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.model-container {
  width: 100%;
  height: 250px;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.model-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .6s ease;
}

/* تنظيم محتوى الكرت */
.card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

/* توحيد ارتفاع العنوان */
.card-title {
  min-height: 42px;
  font-size: 14px;
  font-weight: 600;
}

