.wcpe-cart-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.wcpe-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f8f8f8;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: all 0.2s ease;
}

.wcpe-btn:hover {
  background: #ddd;
}

.wcpe-qty-display {
  min-width: 30px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

.wcpe-remove-item {
  width: auto;
  height: 32px;
  border: none;
  border-radius: 6px;
  background: #e63946;
  color: #fff;
  padding: 4px 8px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wcpe-remove-item:hover {
  background: #c62828;
}

/* موبایل */
@media (max-width: 768px) {
  .wcpe-cart-controls {
    flex-wrap: unset;
    justify-content: flex-start;
    gap: 6px;
  }

  .wcpe-btn, .wcpe-remove-item {
    font-size: 18px !important;
    min-width: 36px !important;
    min-height: 36px !important;
  }

  .wcpe-qty-display {
    font-size: 17px;
  }

  .wcpe-remove-item {
    border-radius: 4px !important;
  }
}
