/* ثلاث نقاط + قائمة إزالة داخل بطاقات المفضلة */
.category-grid .category-card { position: relative; overflow: hidden; }

.card-menu{
  position: absolute; top: 8px; right: 8px; z-index: 5;
}
.card-menu-btn{
  width: 28px; height: 28px; border-radius: 50%;
  background: #fff; border: 0; cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; line-height: 1;
}

.card-menu-list{
  display: none;
  position: absolute;
  top: 35px;  /* المسافة من الأعلى */
  right: 8px; /* المسافة من اليمين */
  z-index: 10;
  background: rgba(255,255,255,0.95);
  border-radius: 8px;
  min-width: 100px;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

.card-menu-list.show{
  display: block;
}

.card-menu-list button{
  width: 100%;
  border: none;
  background: none;
  cursor: pointer;
  padding: 8px 12px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.card-menu-list button:hover{
  background: #f1f1f1;
}

