.menu-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  padding-right: 10px;
}

/* Common styles for all menu buttons */
.menu-buttons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  overflow: hidden;
}

.menu-buttons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(140, 203, 203, 0.4);
  border: 2px solid #8ccbcb;
}

.menu-buttons a:active {
  transform: translateY(0);
}

.menu-buttons img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Add button specific styles */
.menu-add-btn {
  background-color: #fff;
}

.menu-add-btn:hover {
  background-color: #f0f9f9;
}

/* Cart button specific styles */
.menu-cart-btn {
  position: relative;
  background-color: #fff;
}

.menu-cart-btn:hover {
  background-color: #f0f9f9;
}

.menu-cart-btn[data-count]:after {
  content: attr(data-count);
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #17a2b8;
  color: white;
  font-size: 11px;
  font-weight: bold;
}

/* Lock button specific styles */
.menu-lock-btn {
  background-color: #fff;
}

.menu-lock-btn:hover {
  background-color: #f0f9f9;
}